Category: Java
-
JavaWhat is Java programming language
Introduction to Java programming language In 1995, James Gosling founded Sun Microsystems Inc, which was later acquired by Oracle Corporation….
April 12, 2022
-
JavaFeatures of JAVA programing language
There were numerous characteristics that contributed to the final form of this outstanding language. The major features of Java programming:…
April 14, 2022
-
JavaSetting CLASSPATH in Java
In Java, you can set the CLASSPATH variable. CLASSPATH: Application ClassLoader uses CLASSPATH as an environment variable to locate and…
April 14, 2022
-
JavaByte Code in Java
Byte Code: The Java byte code is a machine instruction for a Java processor chip called Java Virtual Machine. The…
April 15, 2022
-
JavaJava Virtual Machine(JVM)
Programs written in Java are compiled into Java Byte code, which is then interpreted by a special Java Interpreter for…
April 17, 2022
-
JavaJDK vs JRE vs JVM
Let us now compare Java Virtual Machine, JRE, and JDK. The following are the key distinctions between JDK, JRE, and…
April 19, 2022
-
JavaSimple Hello World Program
Requirement for Java Hello World Program: Install the JDK if you don’t have installed it, download the JDK and install it. Set…
April 19, 2022
-
JavaToken and keywords
Token The smallest individual unit in a program is known as a token. In fact, every unit that makes a…
April 21, 2022
-
JavaIdentifiers
Identifiers are fundamental building blocks of a program and are used as the general terminology for the names given to…
April 21, 2022
-
JavaLiterals in Java
Literals(often referred to as constants) are data items that are fixed data values. Java allows several kinds of literal: integer-literal…
April 21, 2022
-
JavaEscape Sequence
Java allows us to have certain non-graphic characters in character constants. (non-graphic characters are those which cannot be typed directly…
April 21, 2022
-
JavaData Types in Java
Data types are means to identify the type of data and associated operations of handling it. Java, like any other…
April 21, 2022