What is jvm? Why is java called the platform independent programming language?
Answer / Md Jamil Ahmad
Java Virtual Machine (JVM) is a software that runs Java programs. It provides a runtime environment for executing compiled Java bytecode. Java is called a platform-independent programming language because the bytecode generated from compiled Java source code can be run on any device that has a JVM, making it possible to write and run the same code on different operating systems.nnNote: The actual implementation of the JVM varies between different operating systems.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is immutability in java?
What is palindrome in java?
What is the use of arrays tostring () in java?
How to create packages in java?
What is the use of default method in interface in java?
What restrictions are placed on method overriding?
Java.util.regex consists of which classes?
when we create singleton design then we create private constructtor..so how JVM take private constructor to make object..but it's private..
How does multithreading take place on a computer with a single cpu in java programming?
What is the difference between stringbuffer and stringbuilder class?
What is method reference?
How the interruptible method gets implemented?