answersLogoWhite

0

Component of java virtual machine

Updated: 11/4/2022
User Avatar

Wiki User

15y ago

Best Answer

Class loader (with th ehelp of security manager) Run-time data area (with APIs) Execution Engine (with the help of JIT compiler)

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Component of java virtual machine
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Where could one download Java Virtual Machine?

There are many places that claim to be trustworthy downloads for the Java Virtual Machine, but most of those sites can be a very big risk to the safety of one's computer. The most trustworthy vendor of the Java Virtual Machine is the Java website which also offers downloads to the latest updated versions of the JDK and other Java products.


Explain why Java programs running on Android systems do not use the standard Java API and virtual machine?

123


Why do modern machines consist of multiple levels of virtual machines?

Modern machines do not consist of multiple levels of virtual machines; that is a function of the host operating system's virtual machine manager and its guest operating systems, all of which are implemented through software. The operating system's virtual machine manager exposes one or more virtual machines upon which you can host one or more guest operating systems and their applications. In order to execute compiled Java applications upon one of these guest operating systems you will also need to install the Java virtual machine for that specific operating system. Thus you end up with a Java program executing within a Java virtual machine executing within a virtual machine executing within a virtual machine manager executing upon the physical hardware. The physical hardware itself may be optimised to handle virtual machine managers more efficiently, but the virtual machine manager is a software program; it is not part of the physical machine architecture


Is java virtual machine present in all systems?

No you have to install it and it is platform dependent.


Where does the Java virtual machine keep space for local method variables?

In stack

Related questions

Is java virtual machine dangerous?

JVM is a critical component in almost all Java platforms. I would hardly define it as "dangerous".


What is the virtual machine system?

Java virtual machine


What is the machine system?

Java virtual machine


Where would one find more information on the Java Virtual Machine?

One could find more information about the Java Virtual Machine online on various websites such as 'Wikipedia', 'Java-Virtual-Machine' and of course the website 'Java'.


How do you create a virtual machine on a computer?

Download virtual box by java


What is meant by JVM in applets?

Answer: JVM is nothing but java virtual machine,it is a software used to convert the bytecode(highly optimizes set of instructions) to machine code. so, now applet is a small java program run by a web browser.thus now we can understand for what JVM is used or mean in applets.Answer: In other words, JVM (Java virtual machine) is simply the component used to run software written in the Java language.


Why and amp How is Java is Better For What if your Enterprise Application?

Java is defined by a specification and consists of a programming language, a compiler, core libraries and a runtime (Java virtual machine) The Java runtime allows software developers to write program code in other languages than the Java programming language which still runs on the Java virtual machine. The Java platform is usually associated with the Java virtual machine and the Java core libraries.


What is the need of java virtual machine when operating system is already present?

1.Java virtual machine is required to interpret .class files. 2.JVM makes the java as platform independent.


Where could one download Java Virtual Machine?

There are many places that claim to be trustworthy downloads for the Java Virtual Machine, but most of those sites can be a very big risk to the safety of one's computer. The most trustworthy vendor of the Java Virtual Machine is the Java website which also offers downloads to the latest updated versions of the JDK and other Java products.


When was the java virtual machine software created?

The Java platform, which consists 3 major parts: Java programming language, Java Virtual Machine (JVM), and several Java Application Programming Interfaces (APIs), was developed at Sun Microsystems in the early 1990s.


What happens if you uninstall java virtual machine?

You will no longer be able to run Java programs.


What is BYTE Code in java?

Java byte code is the code that is output by the Java compiler. Byte code is not machine code, it must be interpreted to create the machine code. This is handled by the Java virtual machine. Pretty much every platform produced today has a Java virtual machine implementation, so the same byte code can be executed upon any machine. Byte code can be regarded as being the native language of the virtual machine, as opposed to machine code which is the native language of the physical machine.