Programming in Java
Object Oriented in Java
Advanced topics in Java
Modal Box
Tutorials
C is a very powerful and widely used language. It is used in many scientific programming situations. It forms (or is the basis for) the core of the modern languages Java and C++. It allows you access to the bare bones of your computer.C++ is used for operating systems, games, embedded software, autonomous cars and medical technology, as well as many other applications. Don't forget to visit this section...
Java Introduction
James Gosling is known as the father of Java language. Previously known as OAK, java was later renamed to Java.
This language was the product of SUN Microsystems but now it is the product of ORACLE. In today’s programming world, java is one of the most popular language due to its following features :.
- Security
- Portability
- Platform independent
- Robust in nature
- Object Oriented
Java has different versions that starts from 1.0 and till now, java 10 has been released.
To know java better we will understand some key points :
- Bytecode : This is a highly optimized set of instruction code (.class file).
Bytecode is created when we compile the java source file.
Due to the bytecode, Java is platform independent in nature. - JDK : JDK (Java Devlopment Kit) is a full development kit for JAVA programming.
To create a java application, you must install JDK as it contains java compiler as well. - JRE : To run java applications, we only need JRE (Java Runtime Environment) on our system.