Structure of Java Program
Specifying the package statement in a java program is optional. A java program can contain at most one package statement. The package statement should be the first executable statement in…
Data Types
The datatypes represents type of data that we store into memory. The datatypes in java language are classified into three types 1) Primitive datatypes The primitive datatypes are predefined and…
JVM Architecture
Class loader Subsystem The class loader subsystem will take .class file as the input and performs the following operations. a) It will load the .class file into the JVM’s memory.…