0% found this document useful (0 votes)
3 views

How Java Works

Working of java
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

How Java Works

Working of java
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Steps to Prepare Java Applications

1.Install Java Software


2.Select Java Editor or IDE
3.Write Java Program
4.Save Java File
5.Compile Java File
6.Execute Java Application
Java IDE’s
• Eclipse
• MyEclipse
• Neat Beans
• Xcode
• Oracle Developer Studio
• VS Code
Code Editors
• Notepad
• Editplus
• Notepad++
• Sublime Text
• Bluefish
Java Virtual Machine(JVM)
• JVM (Java Virtual Machine) is an abstract machine that enables your
computer to run a Java program.
• JVM is the one that actually calls the main method present in a java
code. JVM is a part of JRE(Java Runtime Environment).

Demo.java Demo.class
Byte Code

• The compiled code of java source code is called byte code.


• Byte code is collection of mnemonics which understand by JVM.
• Byte code is platform independent code.

You might also like