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.
Friday, 31 May 2019
How mail merge useful and efficient? tccicomputercoaching.com
Mail merge
is a very useful tool that simplifies the creation of a set of documents
that are similar but contain unique and variable data elements. ... Mail merge saves you time and
effort by automating the
process of entering standardized pieces of data such as names and addresses
into a document.
Mail merge can improve your productivity greatly. It also can boost the effectiveness of the documents you create.
TCCI offers Basic Computer course which includes Microsoft Office word, excel and Power Point, internet etc.
Any person can learn Basic computer course at TCCI in Bopal and Satellite, Ahmedabad.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Mail merge can improve your productivity greatly. It also can boost the effectiveness of the documents you create.
TCCI offers Basic Computer course which includes Microsoft Office word, excel and Power Point, internet etc.
Any person can learn Basic computer course at TCCI in Bopal and Satellite, Ahmedabad.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Computer Coaching in Ahmedabad - tccicomputercoaching.com
Are you interesting to learn most efficient skill of present days?
TCCI is best Computer Learning Institute at Ahmedabad, Gujarat.
TCCI consists of experienced and highly qualified professionals.
We try our best to give best quality education without any burden at efficient cost. All computer courses for BCA, MCA, BSC-MSc.IT, Diploma-Degree-Engineering , school-students (any standard), any person are taught at the institute by highly qualified and experienced faculties.
You can enroll in your interested course at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
TCCI is best Computer Learning Institute at Ahmedabad, Gujarat.
TCCI consists of experienced and highly qualified professionals.
We try our best to give best quality education without any burden at efficient cost. All computer courses for BCA, MCA, BSC-MSc.IT, Diploma-Degree-Engineering , school-students (any standard), any person are taught at the institute by highly qualified and experienced faculties.
You can enroll in your interested course at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Thursday, 30 May 2019
What is pure virtual function in C++? tccicomputercoaching.com
A pure virtual function in C++ is
like an "abstract method" in other languages
-- it forces insatiable subclasses to provide an implementation of the
method.
A pure virtual method is an abstract method with no implementation that must be implemented by all subclasses of the owner class. It also refer that the owner class is an abstract class and one can't instantiate an object of it.
class base
{
virtual void show()=0; // pure virtual function
};
class derived : public base
{
void show()
{
cout<<"child class implement pure virtual function";
}
};
void main()
{
derived d;
d.show();
getch();
}
Output: class implement pure virtual function
TCCI Computer Coaching Institute teaches C++ in Bopal and Satellite in Ahmedabad.
Online Coaching is available for any person.
Lecture is conducted as per student flexible time.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/workshop/
A pure virtual method is an abstract method with no implementation that must be implemented by all subclasses of the owner class. It also refer that the owner class is an abstract class and one can't instantiate an object of it.
class base
{
virtual void show()=0; // pure virtual function
};
class derived : public base
{
void show()
{
cout<<"child class implement pure virtual function";
}
};
void main()
{
derived d;
d.show();
getch();
}
Output: class implement pure virtual function
TCCI Computer Coaching Institute teaches C++ in Bopal and Satellite in Ahmedabad.
Online Coaching is available for any person.
Lecture is conducted as per student flexible time.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/workshop/
What is difference between stack and heap? tccicomputercoaching.com
Stack and heap differ in the following ways:
I. Stack is Linear Data structure. Where Heap is non-linear Data structure.
II. Memory Allocation: Stack is used for static memory allocation and Heap for dynamic memory allocation, both stored in the computer's RAM.
III. You would use stack only when you know for sure how much memory for your data you would need even before compile time. On the other hand, we can use heap without us having to know for sure the amount of memory we need.
IV. Variables: Variables allocated on the stack are stored directly to the memory and access to this memory is very fast, and it's allocation is dealt with when the program is compiled. When a function or a method calls another function which in turns calls another function etc., the execution of all those functions remains suspended until the very last function returns its value. Variables allocated on the heap have...
V. Stack follows LIFO structure, where queue follows FIFO structure.
There are various fundamental concepts, you can learn at TCCI Coaching Institute .
We teach C, C++, Java, Data Structure, DBMS , Python, .Net technologies etc.
To learn more in detail about Courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
I. Stack is Linear Data structure. Where Heap is non-linear Data structure.
II. Memory Allocation: Stack is used for static memory allocation and Heap for dynamic memory allocation, both stored in the computer's RAM.
III. You would use stack only when you know for sure how much memory for your data you would need even before compile time. On the other hand, we can use heap without us having to know for sure the amount of memory we need.
IV. Variables: Variables allocated on the stack are stored directly to the memory and access to this memory is very fast, and it's allocation is dealt with when the program is compiled. When a function or a method calls another function which in turns calls another function etc., the execution of all those functions remains suspended until the very last function returns its value. Variables allocated on the heap have...
V. Stack follows LIFO structure, where queue follows FIFO structure.
There are various fundamental concepts, you can learn at TCCI Coaching Institute .
We teach C, C++, Java, Data Structure, DBMS , Python, .Net technologies etc.
To learn more in detail about Courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Wednesday, 29 May 2019
What is stack in Data Structure? tccicomputercoaching.com
Stack is an ordered list of similar data type
. There is a LIFO structure. (Last in First out).
Push() function is used to insert new elements into the Stack and pop() is used to delete an element from the stack. Both insertion and deletion are allowed at only one end of Stack called Top.
Stack is said to be in Overflow state when it is completely full and is said to be in Underflow state if it is completely empty.
TCCI Coaching Institute teaches Data Structure to the Engineering students, University students in Bopal and Satellite in Ahmedabad.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
Push() function is used to insert new elements into the Stack and pop() is used to delete an element from the stack. Both insertion and deletion are allowed at only one end of Stack called Top.
Stack is said to be in Overflow state when it is completely full and is said to be in Underflow state if it is completely empty.
TCCI Coaching Institute teaches Data Structure to the Engineering students, University students in Bopal and Satellite in Ahmedabad.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
Learn JDBC at TCCI - tccicomputercoaching.com
JDBC
is an acronym for Java Database Connectivity. It’s advancement for ODBC
(Open Database Connectivity). JDBC is a standard API specification
developed in order to move data from frontend to backend. This API consists
of classes and interfaces written in Java.
For Data Base connectivity you needDriver (Oracle or SQL). Once a connection is established you can interact with the database.
To learn more in detail about JDBC at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
For Data Base connectivity you needDriver (Oracle or SQL). Once a connection is established you can interact with the database.
To learn more in detail about JDBC at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Important of Java-TCCICOMPUTERCOACHING.com
Java is one of the most popular
programming languages
used to create Web applications and platforms. It was designed for
flexibility, allowing developers to write code that would run on any
machine, regardless of architecture or platform.
Java can be used to create complete applications that may run on a single computer or be distributed among servers and clients in a network.
Java is a concurrent, object-oriented, computer programming language. One design goal of Java is portability, which means that programs written for the Java platform must run similarly on any combination of hardware and operating system. We can say for java "write once, run anywhere" (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation, Java applications are typically compiled to byte code that can run on any Java virtual machine (JVM) regardless of computer architecture.
Java byte code instructions are analogous to machine code, but they are intended to be executed by a virtual machine (VM) written specifically for the host hardware. Users commonly use a Java Runtime Environment (JRE) installed on their own machine for standalone Java applications, or in a web browser for Java applets. Java has been the best programming languages created in last 20 years and has been gaining popularity every passing day. Java was originally developed by James Gosling at Sun Microsystems.
Java is an Object Oriented Programming Language
Java has Rich API
Powerful development tools e.g. Eclipse, Net beans
Good collection of Open Source libraries
Great community support
Java is FREE
Excellent documentation support with Javadocs
“write once run anywhere”
Resource to learn Java programming
Simpler to use than C++
Enforces an object oriented programming model.
Java uses an automatic garbage collector to manage memory in the object lifecycle.
Many useful software and development tools are written and developed in Java e.g. Eclipse, InetelliJ Idea and Netbans IDE.
TCCI-Tririd computer coaching institute is a dynamic institution providing career-focused, high quality programs designed to enhance job opportunities for our graduates and provide a skilled workforce for the community.
To learn JAVA course visit our institute at bopal-Ahmedabad.
Contact us @ 98256 18292.
Mail to tccicoaching@gmail.com
Java can be used to create complete applications that may run on a single computer or be distributed among servers and clients in a network.
Java is a concurrent, object-oriented, computer programming language. One design goal of Java is portability, which means that programs written for the Java platform must run similarly on any combination of hardware and operating system. We can say for java "write once, run anywhere" (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation, Java applications are typically compiled to byte code that can run on any Java virtual machine (JVM) regardless of computer architecture.
Java byte code instructions are analogous to machine code, but they are intended to be executed by a virtual machine (VM) written specifically for the host hardware. Users commonly use a Java Runtime Environment (JRE) installed on their own machine for standalone Java applications, or in a web browser for Java applets. Java has been the best programming languages created in last 20 years and has been gaining popularity every passing day. Java was originally developed by James Gosling at Sun Microsystems.
Why Java is an Important Language?
Java is Easy to learn, hasJava is an Object Oriented Programming Language
Java has Rich API
Powerful development tools e.g. Eclipse, Net beans
Good collection of Open Source libraries
Great community support
Java is FREE
Excellent documentation support with Javadocs
“write once run anywhere”
Resource to learn Java programming
Simpler to use than C++
Enforces an object oriented programming model.
Java uses an automatic garbage collector to manage memory in the object lifecycle.
Application of JAVA
There are many places where Java is used in real world, starting from commercial e-commerce website to android apps, from scientific application to financial applications like electronic trading systems, from games like Mine craft to desktop applications like Eclipse, Netbeans and IntelliJ, from open source library to J2ME apps etc.Many useful software and development tools are written and developed in Java e.g. Eclipse, InetelliJ Idea and Netbans IDE.
TCCI-Tririd computer coaching institute is a dynamic institution providing career-focused, high quality programs designed to enhance job opportunities for our graduates and provide a skilled workforce for the community.
To learn JAVA course visit our institute at bopal-Ahmedabad.
Contact us @ 98256 18292.
Mail to tccicoaching@gmail.com
Tuesday, 28 May 2019
Is it useful to learn C Language? tccicomputercoaching.com
Learning C
is, in itself, very
useful
for every programmer. C is the language
of compilers, interpreters, editors, operating systems and embedded programming.
If you are aware of fundamentals of a programming language , then it will help to work with other high level programming languages like Java and C#.
TCCI is Best place where student can grasp all fundamental concepts of C Programming Language.
Faculty teach students theory with practical session.
Lectures as per student Flexible time is main benefit at TCCI.
So, hurry up and get admission at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/workshop/
If you are aware of fundamentals of a programming language , then it will help to work with other high level programming languages like Java and C#.
TCCI is Best place where student can grasp all fundamental concepts of C Programming Language.
Faculty teach students theory with practical session.
Lectures as per student Flexible time is main benefit at TCCI.
So, hurry up and get admission at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/workshop/
Is it possible to animate element in HTML? tccicomputercoaching.com
Yes, it is possible to animate element in HTML.
Looking good is important because your website is often your first impression you give potential customers.
A good impression form an opinion about the business based on them.
An animation in HTML lets an element gradually change from one style to another.
css code:
div {
width: 100px;
height: 100px;
background-color: red;
}
HTML code:
<body>
<p> animation is here </p>
</body>
TCCI Coaching Institute teach website design course to the students in Bopal and Satellite in Ahmedabad.
Our web Design course includes HTML5, CSS3 , Java Script etc.
To enroll at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/summer-vacation/
Looking good is important because your website is often your first impression you give potential customers.
A good impression form an opinion about the business based on them.
An animation in HTML lets an element gradually change from one style to another.
css code:
div {
width: 100px;
height: 100px;
background-color: red;
}
HTML code:
<body>
<p> animation is here </p>
</body>
TCCI Coaching Institute teach website design course to the students in Bopal and Satellite in Ahmedabad.
Our web Design course includes HTML5, CSS3 , Java Script etc.
To enroll at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/summer-vacation/
Monday, 27 May 2019
What is difference between frame and Iframe in HTML? tccicomputercoaching.com
Frame
allows you to show browser into the separate section. HTML5
supports frameset
tag in place of frame into the webpage.
A frameset allows you to split the screen into different pages (horizontally and vertically) and display different documents in each part.
IFrame is a web page which is embedded in another web page or an HTML document embedded inside another HTML document. The IFrame is often used to insert content from another source, such as an advertisement, into a Web page .
Another difference is Iframe include only single HTML link, where frameset can include multiple HTML links and display accordingly.
Syntax:
1. Frameset
There is no body element.
<iframe src="http://tccicomputercoaching.com/workshop-form-details/"
style="height:200px;width:300px"></iframe>
To learn more in detail about html elements at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
A frameset allows you to split the screen into different pages (horizontally and vertically) and display different documents in each part.
IFrame is a web page which is embedded in another web page or an HTML document embedded inside another HTML document. The IFrame is often used to insert content from another source, such as an advertisement, into a Web page .
Another difference is Iframe include only single HTML link, where frameset can include multiple HTML links and display accordingly.
Syntax:
1. Frameset
There is no body element.
<frameset | |
rows="100,150,20,80"> | <frame src=" ../file_path/frame_1.html " frameborder="1"> |
<frame src=" frame_2.html " frameborder="1" frameborder="1"> | |
<frame src=" frame_3.html " frameborder="1"> | |
<frame src=" frame_4.html " frameborder="1"> | |
2.iframe: | </frameset>
|
style="height:200px;width:300px"></iframe>
To learn more in detail about html elements at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Online C++ class - tccicomputercoaching.com
C++
is Basic
Programming
Language.
If you can grasp Object Oriented Concepts then learn any Object Oriented Programming Language easily like C++, C#, Java Script, Python etc.
TCCI Coaching Institute teaches all Programming Languages online and offline very efficiently.
We teach following topic 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
To learn C++, Java, Python , C#, any Programme Language
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
If you can grasp Object Oriented Concepts then learn any Object Oriented Programming Language easily like C++, C#, Java Script, Python etc.
TCCI Coaching Institute teaches all Programming Languages online and offline very efficiently.
We teach following topic 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
To learn C++, Java, Python , C#, any Programme Language
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Saturday, 25 May 2019
Friday, 24 May 2019
Position Element in CSS - tccicomputercoaching.com
CSS
helps developer to position HTML element at
whatever location they like. We can specify whether we want the element
positioned relative to its natural position in the page or absolute based
on its parent element.
It will not react to the following properties:
The element will remain in the natural flow of the page.
It also makes the element positioned: it will act as an anchor point for the absolutely positioned pink block.
Also, it will react to the following properties:
Target element
position: relative
Child element
position: absolute
right: 5px
top: 5px
position: absolute;
The element will not remain in the natural flow of the page. It will position itself according to the closest positioned ancestor.
Because it's positioned, it will act as an anchor point for the absolutely positioned pink block.
Also, it will react to the following properties:
Target element
position: absolute
left: 0
top: 0
Child element
right: 5px
top: 5px
position: fixed;
The element will not remain in the natural flow of the page. It will position itself according to the viewport.
Because it's positioned, it will act as an anchor point for the absolutely positioned pink block.
Also, it will react to the following properties:
Our course include HTML, CSS,Bootstrap, Java Script, Image making etc.
For more information about Courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
position: static;
The element will remain in the natural flow of the page.
It will not react to the following properties:
- top
- bottom
- left
- right
- z-index
The element will remain in the natural flow of the page.
It also makes the element positioned: it will act as an anchor point for the absolutely positioned pink block.
Also, it will react to the following properties:
- top
- bottom
- left
- right
- z-index
Target element
position: relative
Child element
position: absolute
right: 5px
top: 5px
position: absolute;
The element will not remain in the natural flow of the page. It will position itself according to the closest positioned ancestor.
Because it's positioned, it will act as an anchor point for the absolutely positioned pink block.
Also, it will react to the following properties:
- top
- bottom
- left
- right
- z-index
Target element
position: absolute
left: 0
top: 0
Child element
right: 5px
top: 5px
position: fixed;
The element will not remain in the natural flow of the page. It will position itself according to the viewport.
Because it's positioned, it will act as an anchor point for the absolutely positioned pink block.
Also, it will react to the following properties:
- top
- bottom
- left
- right
- z-index
Our course include HTML, CSS,Bootstrap, Java Script, Image making etc.
For more information about Courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Wednesday, 22 May 2019
What is search algorithm in data structure? tccicomputercoaching.com
What is Search?
Search is a process of finding a value in a list of values. In other words, searching is the process of locating given value position in a list of values.Linear Search Algorithm (Sequential Search Algorithm)
Linear search algorithm finds given element in a list of elements with O(n) time complexity where n is total number of elements in the list. This search process starts comparing of search element with the first element in the list. If both are matching then results with element found otherwise search element is compared with next element in the list. If both are matched, then the result is "element found". Otherwise, repeat the same with the next element in the list until search element is compared with last element in the list, if that last element also doesn't match, then the result is "Element not found in the list". That means, the search element is compared with element by element in the list.TCCI teach Data structure at Bopal and Satellite in Ahmedabad.
To join course at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Tuesday, 21 May 2019
How to access private data in class? – tccicomputercoaching.com
The Friend function and friend class are the techniques used to
access the private members of a class by using friend keyword.
A friend function is required when a function needs to access two or more independent classes, internal members.
For example,
Output
To learn programming
concepts in Best way, join TCCI in Satellite and
Bopal-Ahmedabad.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
A friend function is required when a function needs to access two or more independent classes, internal members.
For example,
#include <iostream.h>
class Distance
{
private:
int meter;
public:
Distance(): meter(0) { }
//friend function
friend int addFive(Distance);
};
// friend function definition
int addFive(Distance d)
{
//accessing private data from non-member function
d.meter += 5;
return d.meter;
}
int main()
{
Distance D;
cout<<"Distance: "<< addFive(D);
return 0;
}
Distance: 5
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Constructor in Python - tccicomputercoaching.com
A
constructor
is a special type of method (function) which is used to initialize the
instance members of the class. Constructor can be parameterized and
non-parameterized as well. Constructor definition executes when we create
object of the class. Constructors also verify that there are enough
resources for the object to perform any start-up task.
TCCI Coaching centre is located in Ahmedabad, where students have been learnt lots of courses.
Our experienced faculty teach the student through different learning media. We impact on Practical sessions, which help the student to grasp concepts easily.
We conduct Basic Computer Course , Programming Course , Web Designing Course , Project Training Course, Web Development Course, Typing, SEO, Coaching for All Engineering Branch, Maths Coaching, School Computer Course Coaching etc.
For more information about courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/contact/
TCCI Coaching centre is located in Ahmedabad, where students have been learnt lots of courses.
Our experienced faculty teach the student through different learning media. We impact on Practical sessions, which help the student to grasp concepts easily.
We conduct Basic Computer Course , Programming Course , Web Designing Course , Project Training Course, Web Development Course, Typing, SEO, Coaching for All Engineering Branch, Maths Coaching, School Computer Course Coaching etc.
For more information about courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/contact/
Monday, 20 May 2019
What are the Different XHTML Doctypes? tccicomputercoaching.com
There are three types of Document Type Definitions (DTDs). The easiest and
most commonly used is the XHTML
Transitional document.
A list of the XHTML Doctypes:
XHTML 1.0 Strict DTD
It is recommended to use when you want to use Cascading Style Sheet (CSS) strictly and avoiding to write most of the XHTML attributes.
Add the following DTD at the top of your XHTML document.
Syntax:
1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
XHTML 1.0 Transitional DTD
It is recommended to use when you want to use many XHTML attributes as well as few Cascading Style Sheet (CSS) properties.
Add the following DTD at the top of your XHTML document.
Syntax:
1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
XHTML 1.0 Frameset DTD
It is recommended to use when you want to use HTML Frames to partition the browser window into two or more frames.
Add the following DTD at the top of your XHTML document.
Syntax:
1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
If it is a valid XHTML document, then No worry what DTD you are using to write your XHTML document.
If you like this post then like and share the post.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
A list of the XHTML Doctypes:
- Strict
- Transitional
- Frameset
It is recommended to use when you want to use Cascading Style Sheet (CSS) strictly and avoiding to write most of the XHTML attributes.
Add the following DTD at the top of your XHTML document.
Syntax:
1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
It is recommended to use when you want to use many XHTML attributes as well as few Cascading Style Sheet (CSS) properties.
Add the following DTD at the top of your XHTML document.
Syntax:
1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
It is recommended to use when you want to use HTML Frames to partition the browser window into two or more frames.
Add the following DTD at the top of your XHTML document.
Syntax:
1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
If it is a valid XHTML document, then No worry what DTD you are using to write your XHTML document.
Valid XHTML Document:
The XHTML 1.1 provides a definition of strictly conforming XHTML documents which MUST meet all the following criteria −- The document MUST conform to the constraints expressed in XHTML 1.1 Document Type Definition.
- The root element of the document MUST be <html>.
- The root element of the document MUST designate the XHTML namespace using the xmlns attribute.
- The root element MAY also contain a schema location attribute as defined in the XML Schema.
If you like this post then like and share the post.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Saturday, 18 May 2019
How Women Can Earn?-tccicomputercoaching.com
tccicomputercoaching.com
(Different field of Earning)In mordern world a Women is no longer a step behind a men in any field. A decade ago a woman is treated as an odd one and has specific things to do for his house and family. But in 20th century form the child hood the girl is given a training of selfindependent .
In 20th Century mostly women likes to make their specific career in various field & they had even prove by doing great achievement in various fields. As part of their earning concern, now a days literate or illiterate women likes to put hands in various department to earn some money to boost their family finance &lifestyles.
A women earning depend on their education or specilization in different department. If a women is highly educated like Doctor / Engineer/Lawyer/CA etc then they can earn large amount of money by doing work in co-orperate or Industrial Sector. If she is less educated then she needs to do some crash course and get a specific job in different company. If a women had some special talent of Cooking/Dancing/Playing Sports etc then she can build their career and earn money in respectiv Department.
Also Women who are illeterate or very less educated can earn money by shewing Clothes on shewing machine, some can do homeServant job in house to earn money.
Women who would like to serve country can also build their career in Navy/Milletary/ Air force/Police Deparment. Also women who are good looking can be a Air Hostes/ Fashion Icon/Actoress/Model and earn good amount of
money.
Some women who are interested in Enteprenuship can start their own business in their field and become a business leader. Also some who are interested in Politics can earn money and show their skill in developing the nation.
Those women like teaching can be a part of school and colleges as a teacher/professor for education of upcoming generation.
Thus women have a wide areas of earning& exposure in 20th Century.
Computer education in schools plays important role in students career development. Computer with the internet is the most powerful device that students can use to learn new skills and more advanced version of current lessons. ...
It helps them to aim for excellent jobs in the future and succeed in it. when a person knows the use of computer, he can employ in his business, for planning and chalking out programmed.
TCCI-Tririd Computer Coaching Institute is an institute which provides quality education in developing area of Ahmedabad -Bopal and Satellite.
We teach Basic Computer course, Web Designing, Programming Languages, Project Training course to any person. We conduct Online Computer Course also anywhere into the world.
To know more detail call us @ 98256 18292.
Visit us @ http://tccicomputercoaching.com/.
Friday, 17 May 2019
Stack vs. Heap - tccicomputercoaching.com
tccicomputercoaching.com
In programming language we need memory to store data. The data stores in Stack and Heap memory according to local and global data.What is Stack and Heap? Let us see.
definition:
Stack:
It's a special region of your computer's memory that stores temporary variables created by each function (including the
main()
function).
When to use stack?
· You would use the stack if you know exactly how much data you need to allocate before compile time and it is not too big.
Heap:
The heap is a region of your computer's memory that is not managed automatically.
When to use Heap?
· You would use the heap if you don't know exactly how much data you will need at run time or if you need to allocate a lot of data.
which one faster?
The stack is faster because the access pattern makes it trivial to allocate and deallocate memory from it (a pointer/integer is simply incremented or decremented), while the heap has much more complex bookkeeping involved in an allocation or free.
The Heap
The heap is a region of your computer's memory that is not managed automatically for you, and is not as tightly managed by the CPU. It is a more free-floating region of memory (and is larger). To allocate memory on the heap, you must usemalloc()
or calloc()
,
which are built-in C functions. Once you have allocated memory on the heap,
you are responsible for using free()
to deallocate that memory
once you don't need it any more. If you fail to do this, your program will
have what is known as a memory leak. That is, memory on
the heap will still be set aside (and won't be available to other
processes). As we will see in the debugging section, there is a tool called valgrind
that can help you
detect memory leaks.
Unlike the stack, the heap does not have size restrictions on variable size (apart from the obvious physical limitations of your computer). Heap memory is slightly slower to be read from and written to, because one has to use pointers to access memory on the heap. We will talk about pointers shortly.
Unlike the stack, variables created on the heap are accessible by any function, anywhere in your program. Heap variables are essentially global in scope.
Examples
Here is a short program that creates its variables on the stack. It looks like the other programs we have seen so far.#include <stdio.h>
double multiplyByTwo (double input) {
double twice = input * 2.0;
return twice;
}
int main (int argc, char *argv[])
{
int age = 30;
double salary = 12345.67;
double myList[3] = {1.2, 2.3, 3.4};
printf("double your salary is %.3f\n", multiplyByTwo(salary));
return 0;
}
double your salary is 24691.340
Stack | Heap |
· It's a special region of your computer's memory that
stores temporary variables created by each function
(including the main() function).
|
· The heap is a region of your computer's memory that is not managed automatically for you, and is not as tightly managed by the CPU. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
To learn more about Programming
Visit us @ tccicomputercoaching.com
Call us @ 98256 18292.
TCCI MAKES YOU DIFFERENT IN THE WORLD - tccicomputercoaching.com
According to the Association of Computing Machinery:
"Computing drives innovation in the sciences (human genome project, AIDS vaccine research, environmental monitoring and protection just to mention a few), and also in engineering , business, entertainment and education. If you want to make a positive difference in the world, study computing."
TCCI understand the value of computer and conduct the various computer courses at Bopal and Satellite in Ahmedabad.
We teach online and offline computer courses to any interested person. TCCI enable you TO MAKE A POSITIVE DIFFERENCE IN THE WORLD.
For more information about Courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
"Computing drives innovation in the sciences (human genome project, AIDS vaccine research, environmental monitoring and protection just to mention a few), and also in engineering , business, entertainment and education. If you want to make a positive difference in the world, study computing."
TCCI understand the value of computer and conduct the various computer courses at Bopal and Satellite in Ahmedabad.
We teach online and offline computer courses to any interested person. TCCI enable you TO MAKE A POSITIVE DIFFERENCE IN THE WORLD.
For more information about Courses at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
Thursday, 16 May 2019
Computer for school course - tccicomputercoaching.com
The role of computers in education
has been given a lot of importance in recent years. This is also because
the education system has made computer education a part of school
curriculum. Considering the use of computer technology is almost every
sphere of life, it is important for everyone to have at least the basic
knowledge of using computers.
The advantages of computers in education primarily include:
ACCESS TO THE INTERNET Internet can play an important role in education.
Both teachers and students benefit from the Internet. Teachers can refer to it for additional information and references on the topics to be taught. Students can refer to web sources for additional information on subjects of their interest. The Internet helps teachers set test papers, frame questions for home assignments and decide project topics.
Another advantage of computers is that the students will be able to gain knowledge of various subjects and things which are other than their school.
TCCI Computer Coaching teaches various computer Languages to the school students like C, C++, Java, Python , HTML, CSS, Data Structure etc.
To get admission at TCCI
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/workshop/
The advantages of computers in education primarily include:
ACCESS TO THE INTERNET Internet can play an important role in education.
Both teachers and students benefit from the Internet. Teachers can refer to it for additional information and references on the topics to be taught. Students can refer to web sources for additional information on subjects of their interest. The Internet helps teachers set test papers, frame questions for home assignments and decide project topics.
Another advantage of computers is that the students will be able to gain knowledge of various subjects and things which are other than their school.
TCCI Computer Coaching teaches various computer Languages to the school students like C, C++, Java, Python , HTML, CSS, Data Structure etc.
To get admission at TCCI
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/workshop/
Wednesday, 15 May 2019
Computer skill at TCCI - tccicomputercoaching.com
Why should Study Computer Science?
Creating high-quality computing solutions is a highly creative activity.Computing offers great opportunities for true creativity and innovativeness.
Future opportunities in computing are without boundaries.
Computing enables you to make a positive difference in the world.
Computing supports creative work in many other fields.
The best solutions in computing exhibit high levels of elegance and beauty.
TCCI offers various computer courses like basic computer course , web design course , programming course , project training course etc.
For more information about Computer skill at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Tuesday, 14 May 2019
What is XHTML used for? tccicomputercoaching.com
XHTML
stands for Extensible Hypertext Mark up Language
and is a cross between HTML and XML. ... XHTML gives you a
more consistent, well structured format so that your web pages can be
easily parsed and processed by present and future web
browsers.
It helps us to create better formatted code for site. It makes site more accessible.
Benefits:
1. XHTML documents are XML conforming. As such, they are readily viewed, edited, and validated with standard XML tools.
2. XHTML documents can be written to operate better than they did before in existing browsers as well as in new browsers.
3. XHTML documents can utilize applications like scripts and applets that rely upon either the HTML Document Object Model or the XML Document Object Model.
To learn more in detail about XHTML, HTML, CSS, Web Design Course
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
It helps us to create better formatted code for site. It makes site more accessible.
Benefits:
1. XHTML documents are XML conforming. As such, they are readily viewed, edited, and validated with standard XML tools.
2. XHTML documents can be written to operate better than they did before in existing browsers as well as in new browsers.
3. XHTML documents can utilize applications like scripts and applets that rely upon either the HTML Document Object Model or the XML Document Object Model.
To learn more in detail about XHTML, HTML, CSS, Web Design Course
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
What is scanner class in Java? tccicomputercoaching.com
Scanner
is a class in java.util package used for
obtaining the input of the primitive types like int, double etc. and
strings. Using Scanner class we can enter the data at run time.
The Java Scanner class breaks the input into tokens using a delimiter that is whitespace by default. It provides many methods to read and parse various primitive values. Java Scanner class is widely used to parse text for string and primitive types using a regular expression.
import java.util.Scanner;
public class inputdata
{
public static void main(String[] args)
{
//
Scanner input = new Scanner(System.in);
System.out.println("Enter the Name: ");
// String input
String name = input.nextLine();
System.out.println("Name: is "+name);
}
}
Output:
Enter the Name: mili
Name is mili
To learn more in detail about Java at TCCI
Call us @ 9825618292
Visit us @ www.tccicomputercoaching.com
The Java Scanner class breaks the input into tokens using a delimiter that is whitespace by default. It provides many methods to read and parse various primitive values. Java Scanner class is widely used to parse text for string and primitive types using a regular expression.
import java.util.Scanner;
public class inputdata
{
public static void main(String[] args)
{
//
Scanner input = new Scanner(System.in);
System.out.println("Enter the Name: ");
// String input
String name = input.nextLine();
System.out.println("Name: is "+name);
}
}
Output:
Enter the Name: mili
Name is mili
To learn more in detail about Java at TCCI
Call us @ 9825618292
Visit us @ www.tccicomputercoaching.com
Monday, 13 May 2019
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 software that allows creation, definition and manipulation of
database. 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 ’s main focus is to 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:
TCCI ’s main focus is to 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
Part-II: SQL
Sql introduction
DDL command
DML command
DCL command
Advanced SQL
Sql Constraints
Sql Function
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
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.
For more information about DBMS
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Friday, 10 May 2019
Why pointer is used in Programming Language? tccicomputercoaching.com
A pointer
represents the address where the data resides in memory. Dereferencing the
pointer (*ptr) reads the value from the address or assigns a new value at
that address.
There are lots of reasons to use pointer in Programming:
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
There are lots of reasons to use pointer in Programming:
- To dynamic allocate in your 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.
- User can use pointers any place where they need to obtain and pass around the address to a specific spot in memory.
- In some cases, function pointers are required to use functions that are in a shared library.
- In Data structures pointer is very useful, node link pointers for special tree.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Operators in C Language - Tccicomputercoaching.com
Operator in C Programming Course is symbol that operates on operands or variable.
An arithmetic operator performs mathematical operations such as addition, subtraction and multiplication on numerical values.
Operator | Meaning of Operator |
+ | addition or unary plus |
- | subtraction or unary minus |
* | Multiplication |
/ | Division |
% | remainder after division( modulo division) |
TCCI-Tririd Computer Coaching Institute teaches C languages at Bopal and Satellite in Ahmedabad. TCCI have high qualified and experienced faculty who are always ready to help the students in each way.
To learn more about operators
Call us @ 98256 18292.
Visit us @ http://tccicomputercoaching.com/workshop/
Join TCCI - Tccicomputercoaching.com
In today's world, it is almost impossible to think that one can survive
without computers. They have become a gadget of almost daily use for people
of every age. ... Then it may be offices, hospitals, malls or just homes,
computers are everywhere! They help us with calculations, storing data,
staying organized and also entertain and inform us.
TCCI-Tririd Computer Coaching Institute help you to learn any computer course efficiently at Bopal and Satellite in Ahmedabad. TCCI, is famous for their quality education in Computer , Mechanical, Electronics, Electrics, Civil, Maths etc….. Our Faculty always ready to share practical knowledge sharing with students. As they work on current project of industries. Participant gets proper guidance with hands on practical training to build a smart future.
So, to learn any course of your interest at TCCI and shine your career.
Call us @ 98256 18292
Visit us @ http://tccicomputercoaching.com/blog/
TCCI-Tririd Computer Coaching Institute help you to learn any computer course efficiently at Bopal and Satellite in Ahmedabad. TCCI, is famous for their quality education in Computer , Mechanical, Electronics, Electrics, Civil, Maths etc….. Our Faculty always ready to share practical knowledge sharing with students. As they work on current project of industries. Participant gets proper guidance with hands on practical training to build a smart future.
So, to learn any course of your interest at TCCI and shine your career.
Call us @ 98256 18292
Visit us @ http://tccicomputercoaching.com/blog/
Wednesday, 8 May 2019
Python course at TCCI - tccicomputercoaching.com
Python
is an interpreter, object-oriented, high-level
programming language
with dynamic semantics. Its high-level built in data structures, combined
with dynamic typing and dynamic binding; make it very attractive for Rapid
Application Development, as
well as for use as a scripting or glue language to connect existing
components together.
Python supports modules and packages, which encourages program modularity and code reuse.
TCCI Coaching Institute teaches Python in Bopal and Satellite in Ahmedabad.
Flexible time and practical sessions are special features of TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Python supports modules and packages, which encourages program modularity and code reuse.
TCCI Coaching Institute teaches Python in Bopal and Satellite in Ahmedabad.
Flexible time and practical sessions are special features of TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Tuesday, 7 May 2019
Monday, 6 May 2019
Learn Java Script - tccicomputercoaching.com
JavaScript
is a simple and easy-to-learn programming language as compared to other
languages such as C++, Ruby, and
Python.
JavaScript has become the world’s most important programming language today”.
If you are interested in Web Designing then you can or must learn Java Script. This learning develops your skill at more advance level.
TCCI teach Java Script with practical sessions.
For more information about Java Script and TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
JavaScript has become the world’s most important programming language today”.
If you are interested in Web Designing then you can or must learn Java Script. This learning develops your skill at more advance level.
TCCI teach Java Script with practical sessions.
For more information about Java Script and TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Learn Advance Excel at TCCI - tccicomputercoaching.com
MS Excel
is a very powerful analytical tool. By learning these advanced techniques,
you can become more valuable to your organization. Your ability to generate
information with increased accuracy, timeliness, and usefulness will lead
you and others to better decision-making.
TCCI Coaching Institute is located in Bopal and Satellite in Ahmedabad.
We provide Microsoft Office Training to Students, Employees, Entrepreneurs or any interested person.
This training includes basic concepts to Advance features of Excel.
You can attend a free Demo lecture .
Join us @ TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
TCCI Coaching Institute is located in Bopal and Satellite in Ahmedabad.
We provide Microsoft Office Training to Students, Employees, Entrepreneurs or any interested person.
This training includes basic concepts to Advance features of Excel.
You can attend a free Demo lecture .
Join us @ TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/blog/
HTML Language at TCCI - tccicomputercoaching.com
HTML is Hyper Text Mark-up Language used to design a
static web page.
Hyper - reference or link
Text- data what you want to display
Mark up- predefined statement in HTML Language
Language - used to communicate.
It is not programming Language like c, C++. But it is Mark-up Language (Set of Mark-up Tags).
So, it contains tags in its structure.
Every web page has .html extension.
We write code in Notepad or Notepad++. We have to run this web page in any web Browser.
For Example,
<!DOCTYPE html>
<html>
<body>
<h1>HTML Heading </h2>
<p>You can write here</p>
</body>
</html>
TCCI teaches HTML,CSS, Java Script, Boot Strap etc. in Web Design Course in Bopal and Satellite in Ahmedabad.
For more information about Course at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Hyper - reference or link
Text- data what you want to display
Mark up- predefined statement in HTML Language
Language - used to communicate.
It is not programming Language like c, C++. But it is Mark-up Language (Set of Mark-up Tags).
So, it contains tags in its structure.
Every web page has .html extension.
We write code in Notepad or Notepad++. We have to run this web page in any web Browser.
For Example,
<!DOCTYPE html>
<html>
<body>
<h1>HTML Heading </h2>
<p>You can write here</p>
</body>
</html>
TCCI teaches HTML,CSS, Java Script, Boot Strap etc. in Web Design Course in Bopal and Satellite in Ahmedabad.
For more information about Course at TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Basic Computer Course at TCCI - tccicomputercoaching.com
Microsoft Word
is used to create and edit documents, Excel to
perform the mathematical and logical calculation with analytical functions, PowerPoint for
presentation, MS- Access for database management and Microsoft Outlook for
sending and receiving data by emails etc.
TCCI Computer Coaching Institute is Best place where you can learn Microsoft Office Word, Excel and Power Point in convenient way.
Flexible time and awesome teaching makes feel you comfortable at TCCI.
So, join us @ TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Today, Microsoft Office applications are used in according to me almost 90% official works around the world in private and government offices. It is so much popular due to its flexible features, easier methods to create and collaborate in official works.
Importance of MS Word in Education.
Microsoft word is an important education application. It is important to process raw facts into meaningful information. Microsoft word can benefits teachers and students to create new innovative methods of learning and teaching.TCCI Computer Coaching Institute is Best place where you can learn Microsoft Office Word, Excel and Power Point in convenient way.
Flexible time and awesome teaching makes feel you comfortable at TCCI.
So, join us @ TCCI.
Call us @ 9825618292
Visit us @ http://tccicomputercoaching.com/
Saturday, 4 May 2019
Subscribe to:
Posts (Atom)