Thursday 5 October 2017

Compilation and Execution of java program(JVM architecture)

                         
Ø Source Code:- is a code written by a programmer(coder).
Ø Java Compiler(javac):-It compiles code of java and convert it into .class file.
Ø Byte Code Verifier:-Byte Code Verifier is used in JVM(java virtual machine after class loader). It filters code and remove unwanted code from .class file. Hence, it increases the security of java program.
Ø Execute Program:-Os specific JVM creates a space in ram and then several function comes in action like class loader, byte code verifier, Execute Engine etc.
Ø Os Specific “Object code”:-Object code is nothing but machine code.







There are different memory segments .
When a program is loaded into memory it is organized into three areas of memory called segments.All have their different working.



                                                   Thanks Wait for next Content.

Topic.
First Program of java and Explanation.

7 comments:

Explanation of first program of Java

CREATING A SIMPLE JAVA PROGRAM In this page we try to understand java program, and this helps us lot more in building further java progr...