Skip to main content

Java


What is Java technology and why do I need it?

Java is a programming language and computing platform first released by Sun Micro-systems in 1995. There are lots of applications and websites that will not work unless you have Java installed, and more are created every day. Java is fast, secure, and reliable. From laptops to data centers, game consoles to scientific supercomputers, cell phones to the Internet, Java is everywhere!

Why We need Java?

At present Java took the major place at the industrial field. For the Android apps and for the computer programs Java is an essential programming language. So it is need to be learn Java language to become successful programmer.

Why Java from Us?

Through this web site we are going to teach Java from basic stage to the advanced stage. From the lessons as well as through the questions we are going to teach you. To be a successful java programmer stay with us.


Here are samples.....


public class Internet_OF_Electronics {

public static void main(String[] args) {
System.out.println("Internet Of Electronics");

}

}
#Internet Of Electronics


public class Internet_OF_Electronics {

public static void main(String[] args) {
for(int i=0; i<10; i++) {
System.out.println(i);
}
}

}
# 0 1 2 3 4 5 6 7 8 9

public class Internet_OF_Electronics {

public static void main(String[] args) {
int a = 0;
int b = 0;
int c = 0;
int d = 0;
a =2;
b = a++;
c = 2;
d = ++c;
System.out.println("b: "+b);
System.out.println("d: "+d);
}

}
#b: 2  d: 3

Comments

Popular posts from this blog

Evolution of programming languages

Evolution of programming Languages        All programming languages developed  from the inception can be classified  into four main classes .     1.First Generation programming  languages (Machine languages )     2. Second  Generation  programming  languages (Assembly languages)     3.Third Generation programming  languages (High level languages)     4.Fourth  Generation  programming  languages (Artificial languages )       One of the key features apparent  in the evolution of the programming  languages is that the programming languages have become easily understandable and usable over the years . 1)First Generation programming languages                                All machine  languages fall into this category. Common features :-...