Java Keywords
Java KeywordsJava keywords are also known as reserved words. Keywords are particular words which acts as a key to a code. These are predefined words by Java so it cannot be us……
Operators in java
Operators in javaOperator in java is a symbol that is used to perform operations. For example: +, -, *, / etc. There are many types of operators in java which are given below……
Unicode System
Unicode SystemUnicode is a universal international standard character encoding that is capable of representing most of the world’s written languages.Why java uses U……
Java Variables
Java VariablesA variable is a container which holds the value while the java program is executed. A variable is assigned with a datatype.Variable is a name of memory location……
Data Types in Java
Data Types in JavaData types specify the different sizes and values that can be stored in the variable. There are two types of data types in Java: Primitive data types: The……
JVM (Java Virtual Machine) Architecture
JVM (Java Virtual Machine) ArchitectureJava Virtual MachineInternal Architecture of JVMJVM (Java Virtual Machine) is an abstract machine. It is a specification that pro……
Difference between JDK, JRE, and JVM
Difference between JDK, JRE, and JVMA summary of JVMJava Runtime Environment (JRE)Java Development Kit (JDK)We must understand the differences between JDK, JRE, and JVM……
How to set path in Java
How to set path in JavaHow to set the path of JDK in Windows OSSetting Temporary Path of JDKSetting Permanent Path of JDKHow to set the path of JDK in Linux OSThe ……
Internal Details of Hello Java Program
Internal Details of Hello Java ProgramInternal Details of Hello JavaIn the previous page, we have learnt about the first program, how to compile and run the first java pr……
First Java Program | Hello World Example
First Java Program | Hello World ExampleSoftware RequirementsCreating Hello Java ExampleResolving javac is not recognizedIn this page, we will learn how to write the si……