Monday 31 December 2018

Happy New year-tccicomputercoaching.com

TCCI-Tririd Computer Coaching Institute is focused on providing Quality education with practical sessions. Satisfaction of our student is our priority. We pride ourselves for providing proficient IT solutions.



We have a highly qualificated and expereinced faculties, who, not only handle teaching, but also aspire to provide the best possible solution through their technical expertise.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

What is use of pointer in C? tccicomputercoaching.com

What is pointer?

Pointer is a variable used to store address of another variable in programming language .

What is the use of Pointer?

The importance of pointers comes with the use of functions. For an example think you code a function to add two values and assign it to the first value. I'll show you how to do it with and without pointers.



Without pointer
int adder(int a, int b){
return a+b;
}
void main()
{
int c = 5;
int d = 6;
c = adder(a,b);
}

So here no use of pointers and this method of using functions is called as call by value. Here value of c 5 and value of d 6 is passed to function adder as a and b and return the value.

So, you should use pointers any place where you need to obtain and pass around the address to a specific spot in memory.

Coding a data structure such as linked list. Without the use of pointers, this becomes an impossible task with C.

Pointer is used to allocate dynamic memory.

Pointers allow you to refer to the same space in memory from multiple locations. This means that you can update memory in one location and the change can be seen from another location in your program.

To learn more about pointer or any concepts of C Programming Language

Visit us @ http://tccicomputercoaching.com/

Call us @ 9825618292

What are user defined data types in c++? tccicomputercoaching.com

Data type should be used in variable declaration to restrict type to store data in memory.

There are 2 types of data type:

1. Primitive data type

2. User defined data type.



1. Primitive data type means predefined type for example integer, float , character etc.
These data type are standard type defined by C++ language .

2. User defined data type means this type is defined by user using keyword like enum or typedef etc.
A user-defined type can be a:


  • class ( a data structure with its own constructor, destructor, and functions )
  • enumeration (a distinct type whose value is restricted to a range of integer values)
  • structure (record) (structs and classes are nearly the same except: default permissions are ublic in structs)
  • typedef (an alias for a (perhaps complex) type name)
  • Type alias ( a name that refers to a previously defined type )
  • Pointer-to-type
    A pointer is associated with a type (of the value it points to), which is specified during declaration. A pointer can only hold an address of the declared type; it cannot hold an address of a different type.
TCCI Computer coaching teach Programming Language like C ,C++, Data Structure, Java , DBMS etc. to school - college students , any person. Our Institute is located in Bopal and Satellite in Ahmedabad. We conduct Online and Offline lectures as per student time-flexibility.

For more information about Computer courses, school computer courses, Engineering courses at TCCI.

Visit us @ http://tccicomputercoaching.com/computer-course/

Call us @ 9825618292

Navigation Bar in CSS-tccicomputercoaching.com

In simple word we can say that navigation bar is list of links in HTML. Using CSS in navigation Bar we can implement any additional styling properties and create an attractive menu bar in webpage.



A navigation bar (or navigation system) is a section of a graphical user interface intended to aid visitors in accessing information. Navigation bars are implemented in file browsers, web browsers and as a design element of some web sites.

Having easy-to-use navigation is important for any web site.

With CSS you can transform boring HTML menus into good-looking navigation bars.

There are horizonatal and verical menubar in webpage.

1. Horizontal navigation
2. Vertical navigation

TCCI teach you many such interesting concepts in HTML and CSS. Any non-IT person can learn HTML, CSS, Bootstrap , Java script etc. You can Join Web Design course in Bopal and satellite in Ahmedabad.

For more information about courses at TCCI.

Visit us @ http://tccicomputercoaching.com/course/

Call us @ 9825618292

Sunday 30 December 2018

User Defined Function in C-Tccicomputercoaching.com


Data Types Tccicomputercoaching.com


Where C++ is used today? tccicomputercoaching.com


What is the use of Digital Electronics? tccicomputercoaching.com


What is JavaScript and its features? tccicomputercoaching.com


How many rows and colums in Excelsheet? tccicomputercoaching.com


Computer engineering coaching tccicomputercoaching.com


Coaching for Engineering Branch tccicomputercoaching.com


How we can prevent memory leak in C Programming?


Saturday 29 December 2018

User Defined Function in C-Tccicomputercoaching.com

What is User Defined Function?

A User Defined Function is a block of code developed by user to perform specific task.

Using user Defined Function we can divide a complex problem into smaller modules. So we can decrease complexity and lengthy.

C allows programmer to define functions according to their need. These functions are known as user-defined functions. For example:

Suppose, a program which includes addition, subtraction, division and multiplication of two numbers in same program. You can create user defined functions for each operation individually to solve this problem:



For example,

#include <stdio.h>
#include <conio.h>

Void add(int, int); // function prototype
Void sub (int, int); // function prototype
Void mul (int, int); // function prototype
Void div (int, int); // function prototype

void main ()
{
inta,b;
printf(“enter the value of a and b);
scanf(“%d %d”,&a,&b);
clrscr ();
add (a,b);
sub (a,b);
mul (a,b);
div (a,b);
}

Void add (int x,int y)
{
Int c;
C=x+y;
printf(“%d”,c)
}

void sub ()
{
Int c;
C=x-y;
printf (“sub=%d”,c)
}

Void mul ()
{
int c;
C=x *y;
printf (“%d”, c)
}

Void div ()
{
int c;
C=x/y;
Printf(“div=%d”,c)
}

User Defined Function has 3 sections:
Function Prototype
Function Call
Function Definition

Function prototype:

Syntax of function prototype :
returnTypefunctionName(type1 argument1, type2 argument2,...);

A function prototype is simply the declaration of a function that specifies function's name, parameters and return type. It doesn't contain function body. Parameters names are optional.

Function Call:

Syntax of Function Call:
Function name (argument1, argument2);
We can use only value also. i. e. add (5, 6);

Compiler starts compilation from main () function, so to jump control from main to user defined function, have to use function call. When this function call executes, control jumps from main to that particular user defined function.

Function Definition:

Syntax of Function Definition:
returnTypefunctionName(type1 argument1, type2 argument2,...)
{
Body of function
}

When a function is called, the control of the program is transferred to the function definition. And, the compiler starts executing the codes inside the body of a function.

Passing arguments to a function:

In programming, argument refers to the variable passed to the function. In the above example, two variables a and b are passed during function call.

The parameters x and y accepts the passed arguments in the function definition. These arguments are called formal parameters of the function.

The type of arguments passed to a function and the formal parameters must match, otherwise the compiler throws error.

Return Statement:

The return statement terminates the execution of a function and returns a value to the calling function. The program control is transferred to the calling function after return statement.

TCCI-Tririd Computer Coaching Institute is focused on providing Quality education with practical sessions. At TCCI student can learn various programming languages like c , c++, Java, Data Structure, Python etc...

If you like this post then please share and like this post.

Call us @ 98256 18292.

Visit us @ tccicomputercoaching.com

Friday 28 December 2018

Data Types Tccicomputercoaching.com

A data type in a programming language is a set of data with values having predefined characteristics. Examples of data types are: integer, floating point unit number, character, string, and pointer. Usually, a limited number of such data types come built into a language.

When we write source code, compiler have to convert that source code into machine code. The data used in source code have to be differentiating as digit, real number or text (alphabetical) for compiler information. So, data are categorized as per their type. These data type have size, as per this size they have allocated memory.



In computer science and computer programming, a data type or simply type is a classification identifying one of various types of data, such as real, integer or Boolean, that determines the possible values for that type, the operations that can be done on values of that type, the meaning of the data, and the way values of that type can be stored.

Common data types include:

Integers
Booleans
Characters
Floating-point numbers
The type void

The type specifier void indicates that no value is available.

Primitive Types:

A basic type is a data type provided by a programming language as a basic building block. Most languages allow more complicated composite types to be recursively constructed starting from basic types.

A built-in type is a data type for which the programming language provides built-in support.

Type Storage size Value range
char 1 byte -128 to 127 or 0 to 255
unsigned char 1 byte 0 to 255
signed char 1 byte -128 to 127
int 2 or 4 bytes -32,768 to 32,767 or -2,147,483,648 to 2,147,483,647
unsigned int 2 or 4 bytes 0 to 65,535 or 0 to 4,294,967,295
short 2 bytes -32,768 to 32,767
unsigned short 2 bytes 0 to 65,535
long 4 bytes -2,147,483,648 to 2,147,483,647
unsigned long 4 bytes 0 to 4,294,967,295

Composite types

Composite types are derived from more than one primitive type. This can be done in a number of ways. The ways they are combined are called data structures. Composing a primitive type into a compound type generally results in a new type, e.g. array-of-integer is a different type to integer.

An array stores a number of elements of the same type in a specific order. They are accessed randomly using an integer to specify which element is required (although the elements may be of almost any type). Arrays may be fixed-length or expandable.

A list is similar to an array, but its contents are strung together by a series of references to the next element.

Record (also called tuple or struct) Records are among the simplest data structures. A record is a value that contains other values, typically in fixed number and sequence and typically indexed by names. The elements of records are usually called fields or members.

Union. A union type definition will specify which of a number of permitted primitive types may be stored in its instances, e.g. "float or long integer". Contrast with a record, which could be defined to contain a float and an integer; whereas, in a union, there is only one type allowed at a time.

A tagged union (also called a variant, variant record, discriminated union, or disjoint union) contains an additional field indicating its current type, for enhanced type safety.

A set is an abstract data structure that can store certain values, without any particular order, and no repeated values. Values themselves are not retrieved from sets, rather one tests a value for membership to obtain a Boolean "in" or "not in".

An object contains a number of data fields, like a record, and also a number of subroutines for accessing or modifying them, called methods.

If you like this post then please like and share this post.

Visit us @ tccicomputercoaching.com

Call us @ 98256 18292.

Where C++ is used today? tccicomputercoaching.com

C+ + is an object-oriented programming language and incorporates all the features offered by C.

C++ for performance computing.



C++ is used for almost everything these days, from creating GUI’s, machine control, IoT, even back end.

Real Applications of C++:

1. Games:

C++ overrides the complexities of 3D games, optimizes resource management and facilitates multiplayer with networking.

2. Graphic User Interface (GUI) based applications:

Many highly used applications, such as Image Ready, Adobe Premier, Photoshop and Illustrator, are scripted in C++.

3. Web Browsers:

With the introduction of specialized languages such as PHP and Java, the adoption of C++ is limited for scripting of websites and web applications.

4. Advance Computations and Graphics:

C++ provides the means for building applications requiring real-time physical simulations, high-performance image processing, and mobile sensor applications.

5. Database Software:

The software forms the backbone of a variety of database-based enterprises, such as Google, Wikipedia, Yahoo and YouTube etc.

6. Operating Systems:

C++ forms an integral part of many of the prevalent operating systems including Apple’s OS X .

7. Enterprise Software:

C++ finds a purpose in banking and trading enterprise applications, such as those deployed by Bloomberg and Reuters.

8. Medical and Engineering Applications:

Many advanced medical equipments, such as MRI machines, use C++ language for scripting their software.

To learn more about C++ Join us @ TCCI.

TCCI Computer Coaching Institute is located in Bopal and Satellite in Ahmedabad. We teach different Computer courses , All Engineering Courses, School Computer Courses, Online Coaching etc...

For more information Visit us @ http://tccicomputercoaching.com/

Call us @ 9825618292

What is the use of Digital Electronics? tccicomputercoaching.com

Digital Electronics is an Electronics that uses binary numbers of 1 and 0 to represent information. Today, numerous devices are digital including a smart phone, tablet and smart watch. This will include following topics:


  • Number System and Representation :
  • Programs :
  • Boolean Algebra and Logic Gates :
  • Gate Level Minimization :
  • Combinational Logic Circuits :
  • Flip-Flops and Sequential Circuits :
  • Register and Counters :
  • Memory and Programmable Logic :
Almost all devices we use on a daily basis make use of digital electronics in some capacity. Digital electronics simply refers to any kind of circuit that uses digital signals rather than analogue. It is constructed using circuits calls logic gates, each of which performs a different function.

TCCI Coaching Institute teaches Digital Electronics to the EC , EEE and Electrical Engineering student of any University in Ahmedabad. We have experienced and qualified faculty who help student to get good result in the Examination.

To join TCCI call us @ 9825618292

To know in detail about courses at TCCI ,

Visit us @ http://tccicomputercoaching.com/engineering-courses/

What is JavaScript and its features? tccicomputercoaching.com

What is JavaScript?

JavaScript is most commonly used as a client side scripting language. This means that Java Script code is written into an HTML page. When a user requests an HTML page with JavaScript in it, the script is sent to the browser and it's up to the browser to do something with it.


Features of JavaScript:

JavaScript plays nicely with other languages and can be used in a huge variety of applications. When used alongside HTML in the browser, it can add some really cool dynamic and interactive ... Unlike PHP or SSI scripts, JavaScript can be inserted into any web page regardless of the file extension.Java script can also be used inside scripts written in other languages such as Perl and PHP.

The speed and small memory footprint of JavaScript in comparison to other languages brings up more and more uses for it — from automating repetitive tasks in programs like Illustrator, up to using it as a server-side language with a standalone parser.

TCCI Tririd Computer Coaching Institute

TCCI Tririd Computer Coaching Institute offers web design course in Bopal and Satellite in Ahmadabad. Web Design Course include HTML, CSS, Java Script, Image Making, Boot strap etc.

You can join full course or learn any one language of the course.

TCCI provide online coaching to any person, any place.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

Thursday 27 December 2018

How many rows and colums in Excelsheet? tccicomputercoaching.com

1,048,576 rows and 16,384 columns
That’s a composition of one Microsoft Excel sheet.



There is no maximum number limit for work-sheets in Excel. It’s totally dependant on the memory (to say, CPU memory) available.

So, multiply the same with the number of work-sheet(s) you use and there you stand at the answer.
Being the first cell (A1) to the last cell(XFD1048576), that’s the journey of one excel sheet for it’s life.

TCCI Tririd Computer coaching institute provides training on Ms Office Course which includes Word, Excel , Power point. This training will help student, teacher, banker, businessmen, employees, housewife , sineor person etc.

Our Basic computer course include from Basic to Advance level training.

For more information about TCCI , courses at TCCI , Programming Langauge course .

Call us @ 9825618292

Visit us@ http://tccicomputercoaching.com/engineering-courses/

Computer engineering coaching tccicomputercoaching.com

In the current world, it’s almost impossible to imagine that someone can live without computers.

That’s why Computer Engineering is best choice in current days which provides many opportunities for Job in IT field. There so much to learn today and the material for the same is easily available. The programs and applications are only as smart as the person who coded it is.



Learn any programming language at TCCI Computer Coaching Institute: Java, Python, .Net, C, C++, SQL, HTML, PHP, C#, System Programming, Compiler Design, CSS, JavaScript, DBMS.  
Any of these. Here are numerous different fields of expertise in Programming.

TCCI conduct Online and Offline both class for every Programming Languages .We teach all subjects of this stream including University of Nirma, Indus, Gujarat Technological, GU,DDIT, PDPU, Changa etc…..)

Lectures conducted by Expert Faculties at your comfortable schedule at TCCI . You can get the Best knowledge in your field through our Experienced Faculties.

Course Duration: Daily/2 Days/3 Days/4 Days

Class Mode: Theory with Practical

Learn Training: At student’s Convenience

You can attend Free Demo Lecture and join us @ TCCI.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/course/

Coaching for Engineering Branch tccicomputercoaching.com

Engineering is a broad term that covers a wide range of applications and industries.

There are various Engineering Course at TCCI, Ahmedabad:


TCCI provides best teaching in various engineering courses through different learning method/media.

These make student to create new technologies, including the development of networking solutions and software programs.

Course Duration: Daily/2 Days/3 Days/4 Days

Class Mode: Theory with Practical

Learn Training: At student’s Convenience

For more information about course at TCCI.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/engineering-courses/

Wednesday 26 December 2018

How we can prevent memory leak in C Programming?

C Programming can manage its stack memory. But it does not track your use of the heap. You have to do that. For every malloc () you do, have a corresponding call to free (), when you are done with the memory.



The general idea is everything which you’ve allocated dynamically (i.e. through something like malloc) is your program’s responsibility to release (i.e. free). Anything it doesn’t free is going to be a memory leak - i.e. as the program keeps running it may be allocating new parts, but it “forgets” to release them once it’s done with those parts.

Whenever you use dynamic allocation (you call malloc or calloc), you need to: 1st check if the returned pointer is not NULL and if not then, 2nd, call free when you no longer need the allocated memory. You must make sure that, until that time, you do have access to the pointer (you don’t “forget” the allocated memory address).

To learn more about C Programming Language

visit us @ http://tccicomputercoaching.com/course/

TCCI coaching institute is located in Bopal and Satellite in Ahmedabad. We teach various courses relavant to College, Universities and School (All Board). We provide Online Coaching for all computer courses.

You can join Mathscourse(School-Uvivercities) and all Engineering Branch at TCCI.

Call us @ 9825618292

Visit us@ http://tccicomputercoaching.com/programming-course/

Tuesday 18 December 2018

Learn JavaScript at TCCI-tccicomputercoaching.com

JavaScript is the programming language of HTML and the Web.

JavaScript is easy to learn.



JavaScript is a programming language used for front-end web development. JavaScript handles the web client-side code. With JavaScript, you can modify your web content (DOM), you can show alert dialogs, you can make async HTTP requests to your server (AJAX/XMLHttpRequest), etc.

JavaScript makes web-apps possible, more than 90% of the web is powered by JavaScript, without JS, you can’t do anything on the Internet. It's like oxygen for the Web Developers.

To learn in deep Java Script at TCCI.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

Where Data Structure is applied in real World? tccicomputercoaching.com

Data Structure is used to store data in proper format.

Following are real Examples of Data Structure.


  • To store a set of programs which are to be given access to a hard disk according to their priorit.
  • For representing a city region telephone network.
  • To store a set of fixed key words which are referenced very frequently.
  • To represent an image in the form of a bitmap.
  • To implement back functionality in the internet browser.
  • To store dynamically growing data which is accessed very frequently, based upon a key value.
  • To implement printer spooler so that jobs can be printed in the order of their arrival.
  • To record the sequence of all the pages browsed in one session.
  • To implement the undo function in a text editor.
  • To store information about the directories and files in a system.
  • You have to store social network “feeds”. You do not know the size, and things may need to be dynamically added.
  • You need to store undo/redo operations in a word processor.
  • You need to evaluate an expression (i.e., parse).
  • You need to store the friendship information on a social networking site i.e., who is friends with who.
  • Graphs, they are key DS which are of almost importance. When you are using Google maps, finding a shortest route between two landmarks (nodes) is clearly a Algorithm on graphs.
  • Queues,they have Lilo or fifo property. So we can think of a ticket counter problem. And we can also think of a pile of work to be done by their order of equal preference
  • Trees, one example can be taken as the folder hierarchy on your computer disk. These are maintained and ordered internally by tree DS.
For more information about Data Structure , Programming Languages , Computer Course , Engineering Course at TCCI-Ahmedabad.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/computer-it-engineering-course/

Contact to TCCI-tccicomputercoaching.com

TCCI-TRIRID computer coaching institute offers various computer courses like c, c++, data structure, .net, java, dbms, python , compiler design, Basic(Microsoft word, excel, power point) etc.…….In bopal-Satellite, Ahmedabad. We believe in Best Quality Education. High Qualified and experienced faculty teach students theory with practical sessions at student’s convenient time. We have latest configured PC and internet facility. Student’s achievement is our success.



So, why are you waiting? Hurry up and Get admission to TCCI-Best computer coaching institute in Ahmedabad.

Call now 9825618292, Mail to tccicoaching@gmail.com,

Get information from www.tccicomputercoaching.com

For more information visit to TCCI-Tririd computer coaching institute

Thursday 13 December 2018

C++ Coaching-tccicomputercoaching.com


Is java Pure Object Oriented Language? tccicomputercoaching.com


Should I learn c++ or Python? tccicomputercoaching.com


Class and Object-tccicomputercoaching.com


What-is-the-difference-between-a-break-and-continue-statement? tccicomputercoaching.com


Compiler Design at TCCI-tccicomputercoaching.com


What is filter in Excel? tccicomputercoaching.com


Who can learn Basic Computer Course at TCCI? tccicomputercoaching.com


DBMS Language-tccicomputercoaching.com


Advance Excel Training by TCCI-tccicomputercoaching.com


C++ Coaching-tccicomputercoaching.com

C++ contains object oriented concepts which has so many advantages. It is designed in terms of System Programming and Embedded system.



Introduction to C++, Basic Syntax, Object Oriented Concept, Data Types and Variables, Constants, Literals, Modifiers, Operators, Loop Controls, Decision Making, Class Structure with Object, Function, Arrays, String, Inheritance Constructor-Destructor, Exception Handling, Files etc…..

For More details c++ coaching in Ahmedabad , c++ class in satellite, Ahmedabad , c++ class in bopal, Ahmedabad, computer class in Ahmedabad, best coaching for programming in Ahmedabad

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/

Wednesday 12 December 2018

Should I learn c++ or Python? tccicomputercoaching.com

Any student who is interesting to learn Object Oriented Programming Language have always confusion he or she should C++ or Python?

C++ and Python both are Object Oriented Programming Language.



If you learn C++ then Python you should be a very well rounded programmer. Learning a powerful language like C++ could only help you in the long run.

Once you have learned the fundamentals of one language those skills should translate to another language no matter the “difficulty” of the language.

Knowing C++ it is later very easy to learn Python and then you will know a very good language (C++) with a lite good complement like Python. Knowing both it is very powerful and practical.

So, batter start learning from C++.

TCCI is Best Computer coaching institute in Ahmedabad. We teach all programming subject in Bopal and Satellite in Ahmedabad.

Online and Offline both lectures conducted by TCCI.

To know more about TCCI.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/computer-it-engineering-course/

Is java Pure Object Oriented Language? tccicomputercoaching.com

Definition

"PURE OBJECT ORIENTED PROGRAMMING LANGUAGE” means language which SUPPORTS or HAVE features which treats everything inside program as objects,

For any language to be pure OO everything should exist as objects but in JAVA we have eight primitive data types such as int, byte, char etc which are not objects .



How we can decide any programming Language is Pure Object Oriented or not?

strictly...
 
1) It must have full support for Encapsulation and Abstraction
2) It must support Inheritance
3) It must support Polymorphism
4) All predefined types must be Objects
5) All user defined types must be Objects
6) Lastly, all operations performed on objects must be only through methods exposed at the objects.

Now, java supports 1, 2, 3 & 5 but fails to support 4 & 6.

Why java is not Pure Object Oriented Language?

i) Purely object oriented means it should contain only classes and objects. It should not contain primitive data types like int,float,char,etc..Since they are neither classes nor objects.
 
ii) Pure object oriented language,we should access every thing by message passing . But,Java contains static variables and methods which can be accessed directly without using objects.
 
iii) Java does not contain multiple inheritance. It means an important feature of object oriented design is lacking .so how can we say it is purely object oriented?

To learn more about Object Oriented Languag, Java , C+ +, Python at TCCI.

TCCI teach all programming Languages in Bopal and satellite, Ahmedabad.

Call us @ 9825618292

Visit us@ http://tccicomputercoaching.com/course/

Class and Object-tccicomputercoaching.com

Class is a user defined data type, which holds its own data members and member functions, which can be accessed and used by creating an instance of that class. A class is like a blueprint for an    object .



The data and functions within a class are called members of the class.

For example,

class student
{
int rn;
float per;
void print()
{
cout<<"The per of rn "<<rn<<"is"<<per;
}
};

void main()
{
student s;
s.rn=10;
s.per=76.8;
s.print();
}

O/P : The per of rn 10 is 76.8

To learn more about Class and Object in detail.

Join TCCI in Bopal and Satellite in Ahmedabad.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/course/

Tuesday 11 December 2018

What is Inheritance? tccicomputercoaching.com


Vision of TCCI-tccicomputercoaching.com


Learn C++ at TCCI-tccicomputercoaching.com


What is difference between normal variable and reference variable in c++? tccicomputercoaching.com


Can we use floating variables in if statements in C?tccicomputercoaching.com


What is macro in Excel? tccicomputercoaching.com


Python Loops-tccicomputercoaching.com


Get Basic Knowledge of Civil Engineering at TCCI-tccicomputercoaching.com


Encapsulation in Python-tccicomputercoaching.com


Different types of Computer Networks-tccicomputercoaching.com


Computer Class Near you-tccicomputercoaching.com


What is the use of Structure in C? tccicomputercoaching.com


What is the career option for an Old Programmer? tccicomputercoaching.com


What is Constructor? tccicomputercoaching.com


What are the use of C Programming Language? tccicomputercoaching.com


Is Loop Useful in Programme? tccicomputercoaching.com


What-is-the-difference-between-a-break-and-continue-statement? tccicomputercoaching.com

Difference Between break and continue in Computer Programming.

A break can appear in both switch and loop (for, while, do) statements.

A continue can appear only in loop (for, while, do) statements.



A break causes the switch or loop statements to terminate the moment it is executed. Loop or switch ends abruptly when break is encountered.

A continue doesn't terminate the loop, it causes the loop to go to the next iteration. All iterations of the loop are executed even if continue is encountered. The continue statement is used to skip statements in the loop that appear after the continue.

The break statement can be used in both switch and loop statements.

The continue statement can appear only in loops. You will get an error if this appears in switch statement.

When a break statement is encountered, it terminates the block and gets the control out of the switch or loop.

When a continue statement is encountered, it gets the control to the next iteration of the loop.

A break causes the innermost enclosing loop or switch to be exited immediately.

A continue inside a loop nested within a switch causes the next loop iteration.

Similarities Between break and continue

Both break and continue statements in C programming language have been provided to alter the normal flow of program.

Example:

Example of break:

1. #include<stdio.h>
2. int main(){
3. int i;
4. for(i=0;i<5;++i){
5. if(i==3)
6. break;
7. printf(“%d “,i);
8. }
9. return 0;}

Output: 0 1 2

Example of continue:

1.      #include<stdio.h>
2.      int main(){
3.        int i;
4.        for(i=0;i<5;++i){
5.        if(i==3)
6.        continue;
7.        printf(“%d “,i);
8.        }
9.        return 0;
10.  }

Output: 0 1 2 4


To learn more about Programming Language at TCCI.

TCCI is located in Bopal and Satellite in Ahmedabad.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/course/

What is filter in Excel? tccicomputercoaching.com

In database if we want to display specific data only, then we have to apply some condition on database. Which data have been satisfied the condition those data only will be appeared to the user.
While hiding the other data .This process is called Filter in Excel.



It is done to make it easier to focus on specific information in a large dataset or table of data. Filtering does not remove or modify data; it merely changes which rows or columns appear in the active Excel worksheet.

When the Excel autofilter is added to the header row of a spreadsheet, a drop-down menu appears in each cell of the header row. Excel gives you many options when it comes to filtering your data.

By filtering information in a worksheet, you can find values quickly. You can filter on one or more columns of data. With filtering, you can control not only what you want to see, but what you want to exclude. You can filter based on choices you make from a list, or you can create specific filters to focus on exactly the data that you want to see.

To learn Filter in Excel at TCCI .

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/computer-course/

Monday 10 December 2018

Compiler Design at TCCI-tccicomputercoaching.com

Compiler Design is very interesting Subject, if you are excited to know the details of process of compilation in detail.

A compiler translates the code written in one language to some other language without changing the meaning of the program.



Compiler Design contains following topics at TCCI :

Introduction to Compilers, Interpreter and compiler, Structure of the Compiler, Lexical Analysis, Parsing, Semantic Analysis, Optimization, Code Generation, Context free grammar, Top-down parsing, Bottom-up parsing, LR parsin.

Course Duration: Daily/2 Days/3 Days/4 Days

Class Mode: Theory with Practical

Learn Training: At student’s Convenience

For more information about Compiler design, computer course , Programming Language , Engineering course

Call us @ 9825618292

Visit us@ http://tccicomputercoaching.com/course/

Who can learn Basic Computer Course at TCCI? tccicomputercoaching.com

Today's computer is most important part of our life. Because of Computer our life has become very easy. We can do our daily work very smoothly. Computer is used in different fields like Banking, Medical, Engineering, Education, Industry, Travelling etc...

So, as an Employee or Employer both should have knowledge of Computer.



Student and Teacher can do efficient use of computer in their field. It is not necessary that only working people specially woman should aware computer knowledge. A housewife can learn computer and makes do routine work easily from home.

TCCI teach computer course to everyone in Ahmedabad. We conduct Advance Excel Training to the Corporate Companies. We have Online Computer Coaching facility also. So, any person from any place can learn computer same way.

TCCI Basic Computer course contain Word , Excel, Power Point, internet etc...

To join TCCI

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/about-us/

DBMS Language-tccicomputercoaching.com

Database is actually a place where related piece of information is stored and various operations can be performed on it.A . DBMS is actually a tool used to perform any kind of operation on data in database. DBMS also provides protection and security to database. It maintains data consistency in case of multiple users.



TCCI was an established in 2014 with purpose of develop logical skill of the students, so it will help students to write code their self in any language .

We teach following topics in DBMS:

Part-I: Database

Introduction to DBMS, Requirements of Database, Disadvantages of File, Architecture
Data Models, Data schemas, Data independence, ER Diagram, Cod’s Rules, RDBMS concepts, Keys, Normalizations etc...

Part-II: SQL

Sql introduction, DDL command, DML command, DCL command, Advanced SQL, Sql Constraints, Sql Function.

Course duration : Daily/4 days/3 Days/2 Days.

Class Mode : Theory with practical’s.

Lecture Timing : At student’s convenience.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/school-computer-course/

Sunday 9 December 2018

Advance Excel Training by TCCI-tccicomputercoaching.com

About TCCI

TCCI Computer Coaching Institute provides Advance Excel Training online and offline both.

We have taught to school and college students, Employees, Employers, Housewives, Senior city zone. We conduct Training to the corporate Companies according to their requirement also in India.


Why TCCI?

Easy to understand content, with step wise learning module
Vast array of data.
Helps you In Out of the box functionality usage to help you in reporting and project management.

Course Content in Training by TCCI

We start training session from basic to Advance level step by step. First session begging from Files (
Entering data, Working with numbers, Formatting data , Managing your data in excel worksheet
Working with text and date), conditional formatting, sort , filter data ect...

Then in next session we teach different type of chart, pivot chart, pivot table, spark line , Signature line , etc..

Next session includes Data Validation, Grouping -Ungrouping - Subtotal, Import Data from another sheet, Consolidate, Remove Duplicates, Text to column, what if analysis etc..

Next contains very important Formulas like Auto sum, Logical, Text, Look up (Vlookup, Hlookup, Index, Match) Formula ..

Last session includes Macro, Hyperlink, Protect Sheet, Page setup, comment etc....

So, join us at TCCI online coaching or offline as per your convenience.

Be expert in Excel and go ahead in your career through your skill.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/basic-computer-course/

Thursday 6 December 2018

What is Inheritance? tccicomputercoaching.com

Inheritance is a feature of Object Oriented Programming . It is used to specify that one class will get most or all of its features from its parent class. It is a very powerful feature which facilitates users to create a new class with a few or more modification to an existing class. The new class is called child class or derived class and the main class from which it inherits the properties is called base class or parent class.



The child class or derived class inherits the features from the parent class, adding new features to it. It facilitates re-usability of code.

Python Inheritance Syntax

baseclass as per previous example

1. class DerivedClassName(BaseClassName):
2. <statement-1>
3. .
4. .
5. .
6. <statement-N>

Here we always use object of parent type.

object=baseclass()

This child type object will call both module of parent and child.

TCCI computer coaching institute teach python and other programming Languages in Ahmedabad.
"Online Coaching is also available...."

Any student, any person can learn any course at tcci.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/course/

Vision of TCCI-tccicomputercoaching.com

TCCI Tririd Coaching Institute is reputed Computer Institute in Ahmedabad.

TCCI Tririd Coaching Institute was established in 2014 to provide quality education in both theoretical and applied foundations of computer education and to train students to effectively apply research based education, to solve real world problems.



Our Faculty provide teaching environment that responds to future challenges.

Main Vision of TCCI is Staying one step ahead in providing the latest Information in Technology Education and sustain quality in academic delivery.

TCCI conduct various courses like Computer-IT Engineering , EC Engineering , Electrical Engineering, Civil Engineering , Mechanical Engineering, Maths Course , School Computer Course for All Board Education, Project Training, Web Designing , Basic Computer, Programming Course etc....

You can Join any course according to your interest.

For more information about Courses at TCCI, Ahmedabad.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/course/

Learn C++ at TCCI-tccicomputercoaching.com

TCCI is located in Bopal and satellite in Ahmedabad.

TCCI teach various Programming Languages online and offline both.

If you are beginner then you can start from C++.



We teach following topics in c++

1. Introduction to C++
2. Basic Syntax
3. Object Oriented Concept

  • Inheritance
  • Data Abstraction
  • Polymorphism
  • Encapsulation

4. Data Types and Variables
5. Constants, Literals
6. Modifiers
7. Operators
8. Loop Controls

  • For Loop
  • While Loop
  • Do-While Loop

9. Decision Making

  • If-Else

10. Class Structure with Object
11. Function
12. Arrays
13. String
14. Inheritance
15. Constructor-Destructor
16. Exception Handling
17. Files

Course Duration: Daily/2 Days/3 Days/4 Days

Class Mode: Theory with Practical

Learn Training: At student’s Convenience

For more information about C++ at TCCI .

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/course/

Monday 3 December 2018

What is difference between normal variable and reference variable in c++? tccicomputercoaching.com

A reference variable is an alias, that is, another name for an already existing variable in C++ . Once a reference is initialized with avariable, either the variable name or the reference name may be used to refer to the variable .



They can be used like normal variables. '&' operator is needed only at the time of declaration. Also, members of an object reference can be accessed with dot operator ('.'),

For example,

int amount =10;
int rupees;
rupees=&amount;
cout<<"rupess"<< rupess;
cout<<"amount"<< amount;
output:
rupess 10
amount 10
now we do any update in amount variable , it will affect also in rupees variable. Same for vice versa.
for example,
amount=amount + 20;
cout<<rupess;

output: 30

To learn more about variable, data types , C++ Language , Operators.

Join TCCI in Bopal and Satellite in Ahmedabad.

You can Join TCCI online Coaching Class .

Call us@ 98256 18292

Visit us @ http://tccicomputercoaching.com/blog/

Can we use floating variables in if statements in C?tccicomputercoaching.com

Yes, we can use floating variable in if statement but you have to be very careful while initialising the condition C Language.

Comparisons between floating-point values (including comparisons with zero) are easily sent “off” by truncation/rounding errors.



Yes. You can use. But a direct comparison will never result in a true condition.

Remember that floating point values are hardly precise. So what you can do is along with the float value you are comparing, declare another value that serves as an upper and lower bound to your value,

For example:-

Float a=6.7, b=5.8;
if(a==b)
{
printf("same");
}
Float a=1.0;
If (a==1) // this will be wrong in this case as condition will never be true
To do this correctly you have to write like this
If (a==1.0){
}

To learn more about Data Type , If Condition , C Programming Language , Computer Course .
TCCI coaching institute teach all programming language to all school board, all university, all branch students and any non-IT person.

Join us @ TCCI.

Call us@ 9825618292

Visit us@ http://tccicomputercoaching.com/engineering-courses/

Saturday 1 December 2018

What is macro in Excel? tccicomputercoaching.com

A macro can be defined as the recording of a series of tasks. When used right, macros can save you hours by automating simple, repetitive tasks. Marcos in Excel is written in Excel VBA (Visual Basic for Applications).



Users can create macros for their customized repetitive functions and instructions. Macros can be either written or recorded depending on the user.

Steps to record simple Macro: 

1. Open View Menu in Excel File
2. Click record button, and start which function you want to do store .
3. There will display record Button.
4. After completing task, stop record button.
5. Now when you want to implement the task, go to view menu and click on macro name.

TCCI teach Basic Computer course which include Excel, Word, Power Point etc...

To learn more about Macro in Excel at TCCI Computer Coaching Institute .

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/computer-course/

Python Loops-tccicomputercoaching.com

Python programming language provides following types of loops to handle looping requirements.



Sr.No. Loop Type & Description
1
while loop Repeats a statement or group of statements while a given condition is TRUE. It tests the condition before executing the loop body.
2
for loop Executes a sequence of statements multiple times and abbreviates the code that manages the loop variable.
3
nested loops You can use one or more loop inside any another while, for or do..while loop.

3 sections of Loop:

1. Initialization:

i=1

2. Codition

i<=10 or i<11

3. Updation(increment/decrement)

i=i+1 or i+=1

Python has two primitive loop commands:
  • while loops
  • for loops
To learn Python Programming Language at TCCI, Ahmedabad.

Call us @ 9825618292

Visit us @ http://tccicomputercoaching.com/course/