top of page
This website was created by Contagious

ARCHITECTURE OF JAVA

Updated: May 1, 2023

Java architecture is a collection of components that explains every step of how a program works, compiles, and executes.

It combines the interpretation and compilation processes. It details all of the steps involved in writing a Java program. The Java Architecture details step by step process of compilation and execution of a program.

  1. In Java, there is a compilation and interpretation process.

  2. After the JAVA code is written, the JAVA compiler converts this code into byte code that can be understood by the machine.

  3. After the creation of the bytecode, the Java virtual machine(JVM) converts it to the machine code (.class file).

  4. And eventually, the machine runs that machine code.


ree


COMPONENTS OF JAVA ARCHITECTURE


The three main components of Java architecture are:

  1. Java Virtual Machine (JVM)

  2. Java Runtime Environment (JRE)

  3. Java Development Kit (JDK)

Java was originally designed for interactive TV, but the digital cable industry wasn’t ready for the technology.
ree


which programming language ranks top in popularity?

  • c

  • Java

  • c++

  • python


 
 
 

Comments


bottom of page