Bestkaam Logo
Interview Questions Java What is JVM?
GN
Asked in General
Java
1 day ago
What is JVM?
Fresher Java
1 Answer
Sign in to post your answer and help the community.
1 Answer
Answered by AI
1 day ago
✦ AI

JVM (Java Virtual Machine) is a virtual machine that runs Java bytecode.
Process:
Java Code → Compiler → Bytecode → JVM → Machine Code
Responsibilities of JVM:
Executes bytecode
Memory management
Garbage collection
Platform independence
Compile and run:
javac HelloWorld.java
java HelloWorld