Question:
what is mean by jvm?
mohan v
2006-12-02 11:36:00 UTC
what is mean by jvm?
Eight answers:
V
2006-12-02 11:47:01 UTC
Acronym for Java Virtual Machine. An abstract computing machine, or virtual machine, JVM is a platform-independent execution environment that converts Java bytecode into machine language and executes it. Most programming languages compile source code directly into machine code that is designed to run on a specific microprocessor architecture or operating system, such as Windows or UNIX. A JVM -- a machine within a machine -- mimics a real Java processor, enabling Java bytecode to be executed as actions or operating system calls on any processor regardless of the operating system. For example, establishing a socket connection from a workstation to a remote machine involves an operating system call. Since different operating systems handle sockets in different ways, the JVM translates the programming code so that the two machines that may be on different platforms are able to connect.
Sankalp G
2006-12-02 21:53:04 UTC
JVM means Java Virtual Machine
namrata00nimisha00
2006-12-02 21:29:35 UTC
http://www.webopedia.com/TERM/J/JVM.html



Acronym for Java Virtual Machine. An abstract computing machine, or virtual machine, JVM is a platform-independent execution environment that converts Java bytecode into machine language and executes it. Most programming languages compile source code directly into machine code that is designed to run on a specific microprocessor architecture or operating system, such as Windows or UNIX. A JVM -- a machine within a machine -- mimics a real Java processor, enabling Java bytecode to be executed as actions or operating system calls on any processor regardless of the operating system. For example, establishing a socket connection from a workstation to a remote machine involves an operating system call. Since different operating systems handle sockets in different ways, the JVM translates the programming code so that the two machines that may be on different platforms are able to connect.



JVMs are not the only virtual machines being used today.



A Java Virtual Machine (JVM), is a virtual machine that interprets and executes Java bytecode. This code is most often generated by Java language compilers, although the JVM can also be targeted by compilers of other languages. JVM's may be developed by other companies as long as they adhere to the JVM standard published by Sun.



The JVM is a crucial component of the Java Platform. The availability of JVMs on many types of hardware and software platforms enables Java to function both as middleware and a platform in its own right. Hence the expression "Write once, run anywhere."



Starting with J2SE 5.0, changes to the JVM specification have been developed under the Java Community Process as JSR 924[1]. As of 2006, changes to specification to support changes proposed to the class file format (JSR 202[2]) are being done as a maintenance release of JSR 924.

http://en.wikipedia.org/wiki/JVM
Bhargav
2006-12-02 20:37:48 UTC
"JVM" is an acronym that stands for "Java Virtual Machine". It is a program that is responsible for acutally executing instructions on a given computer. You may know that Java code is partly compiled and partly interpreted. The Java Complier (javac) compiles your progams to an intermediate code called "byte-code". The JVM then interprets this bytecode, i.e. it actually "executes" your instructions.



Each computer architechture/OS has its own implementation of the JVM. This is what makes Java platform independent.
doctor asho
2006-12-02 11:57:28 UTC
Acronym for Java Virtual Machine
Danlow
2006-12-02 11:40:10 UTC
Java Virtual Machine =JVM



get java at http://www.java.com
makman26
2006-12-02 11:37:57 UTC
java vitual machine
sree
2006-12-02 21:27:27 UTC
http://findarticles.com/p/articles/mi_hb3234/is_200412/ai_n13139553





this gives you valuble information


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...