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.
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.
Showing posts with label Programming Language coaching. Show all posts
Showing posts with label Programming Language coaching. Show all posts
Thursday, September 16, 2021
Friday, January 22, 2021
Thursday, January 21, 2021
Tuesday, March 3, 2020
Goto statement in C - tccicomputercoaching.com
There are 2 type of Jump:
1. Backward Jump:
Control goes back in coding from current statement.2.Forward Jump:
Control goes forward in coding from current statement.Syntax:
goto lable;Example: This example represent both type of jump:
#include<stdio.h>
#include<conio.h>
void main()
{
int a,c,x ;
clrscr();
input:
printf("enter the value of a ");
scanf("%d",&a);
if(a<0)
{
printf("sorry negative no not allow: Please enter positiovr no again:");
goto input;
}
else
{
goto print;
}
printf("the value of a is %d",a);
print:
c=6;
x=c*a;
printf("answer is %d",x);
getch();
}
If user enter negative number then he/she will not allow to go ahead. Compiler push user to enter positive number again , so, control jump to back (input lable). When positive number will be entered then user can go ahead. There is also goto statement used. Which will display multiplication of variable c and a.
To learn more about C Language at TCCI.
Call us @ 9825618292
Visit us @ http://www.tccicomputercoaching.com
Tuesday, March 19, 2019
Thursday, February 28, 2019
What is web portal? tccicomputercoaching.com
Web Portal
It’s an organized gateway that Web portal applications offers consistent look and feel with access control &procedures for multiple applications and databases. Some of the web portals are AOL, Google , Yahoo and even more.
A web portal is a typical knowledge management system that delivers the facility for organisation or companies to build, share, interchange and reuse knowledge. It is the private location on the internet retrieved through a unique URL (web address), and probably login id and password.
Web portal refers to a website or service that offers broad array of resources and services such as email, forums, search engines and online shopping malls. That helps to configure the access to information found on the internet.
Some more examples are Google, Yahoo.
For more information web portal or other technical concepts
Visit us @ http://tccicomputercoaching.com/blog/
Call us @ 9825618292
It’s an organized gateway that Web portal applications offers consistent look and feel with access control &procedures for multiple applications and databases. Some of the web portals are AOL, Google , Yahoo and even more.
A web portal is a typical knowledge management system that delivers the facility for organisation or companies to build, share, interchange and reuse knowledge. It is the private location on the internet retrieved through a unique URL (web address), and probably login id and password.
Web portal refers to a website or service that offers broad array of resources and services such as email, forums, search engines and online shopping malls. That helps to configure the access to information found on the internet.
Some more examples are Google, Yahoo.
For more information web portal or other technical concepts
Visit us @ http://tccicomputercoaching.com/blog/
Call us @ 9825618292
Monday, February 11, 2019
Tuesday, February 5, 2019
What is Swing in Java? tccicomputercoaching.com
Swing
is a set of program component s for
Java
programmers
that provide the ability to create graphical user interface ( GUI )
components, such as buttons and scroll bars, that are independent of the
windowing system for specific operating system . Swing
components are used with the Java
Foundation Classes ( JFC ).
Swing offers two key features:
Swing components depend less on the target platform and use less of the native GUI resource. Hence the Swing components that don't rely on native GUI are referred to as lightweight components. Swing components are lightweight and don't rely on peers. Swing supports a pluggable look and feel. The three PLAFs available to all users are Metal (default), Windows, and Motif. It provides more powerful and flexible GUI components than those of AWT.
To learn more about Swing at TCCI, Ahmedabad .
Call us @ 9825618292
Visit us@ http://tccicomputercoaching.com/online-computer-course/
Swing offers two key features:
Swing components depend less on the target platform and use less of the native GUI resource. Hence the Swing components that don't rely on native GUI are referred to as lightweight components. Swing components are lightweight and don't rely on peers. Swing supports a pluggable look and feel. The three PLAFs available to all users are Metal (default), Windows, and Motif. It provides more powerful and flexible GUI components than those of AWT.
To learn more about Swing at TCCI, Ahmedabad .
Call us @ 9825618292
Visit us@ http://tccicomputercoaching.com/online-computer-course/
Thursday, January 17, 2019
Tuesday, January 8, 2019
Advance Java at TCCI- tccicomputercoaching.com
Core java
is the fundamentals of java.
Advanced Java is the next advanced level concept of Java programming. This high level java programming basically uses two Tier Architecture i.e Client and Server.
The 'Advanced Java' comprises the very complex advanced programming. It covers the Swings, Socket Programming, AWT, Thread Concepts as well as the Collection objects and classes.
"Advanced Java" is nothing but specialization in domains such as web, networking , data base handling. Most of the packages "Advanced Java" are always start with 'javax.servlet'
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.
Topics in advance java include following.
TCCI Tririd Computer Coaching teaches Advance Java in Bopal and Satellite in Ahmedabad.
School Student, College Student, Engineering students or any person who wants to learn and go ahead in Java Field.
TCCI teach this tough subject in terms of theory and practical's.
To learn more about Advance Java.
Call us@ 9825618292
Visit us@ http://tccicomputercoaching.com/engineering-courses/
Advanced Java is the next advanced level concept of Java programming. This high level java programming basically uses two Tier Architecture i.e Client and Server.
The 'Advanced Java' comprises the very complex advanced programming. It covers the Swings, Socket Programming, AWT, Thread Concepts as well as the Collection objects and classes.
"Advanced Java" is nothing but specialization in domains such as web, networking , data base handling. Most of the packages "Advanced Java" are always start with 'javax.servlet'
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.
Topics in advance java include following.
- Java Networking
- JDBC.
- Servlets.
- JSF .
- Beans.
- EJB.
- JSP
- Web Services.
TCCI Tririd Computer Coaching teaches Advance Java in Bopal and Satellite in Ahmedabad.
School Student, College Student, Engineering students or any person who wants to learn and go ahead in Java Field.
TCCI teach this tough subject in terms of theory and practical's.
To learn more about Advance Java.
Call us@ 9825618292
Visit us@ http://tccicomputercoaching.com/engineering-courses/
Tuesday, December 11, 2018
Monday, November 26, 2018
What is Constructor? tccicomputercoaching.com
Definition:
Normally method has been executed when manually user call method through object.But Constructor is a method which execute automatically.
In Java, a constructor is a block of codes similar to the method. It is called when an instance of the object is created, and memory is allocated for the object.
It is a special type of method which is used to initialize the object.
Types:
There are two types of constructors in Java:
- Default constructor (no-arg constructor)
- Parameterized constructor
Rules for creating Java constructor
There are two rules defined for the constructor.
- Constructor name must be the same as its class name
- A Constructor must have no explicit return type
- A Java constructor cannot be abstract, static, final, and synchronized
Java has many more important features like Constructor.
To learn these features connect with us @ TCCI Computer Coaching Institute, Ahmedabad.
We teach all Engineering Course , Programming Language , Basic Computer Course , Web Design Course etc..
For more information about Coaching at TCCI.
Call us @ 98256 18292
Visit us @ http://tccicomputercoaching.com/java-language-course/
Subscribe to:
Posts (Atom)






