what is java virtual machine
Answers were Sorted based on User's Feedback
Answer / aashish r. wadhokar
java virtual machine also known as JVM.
JVM is a miracle bcoz of which java becomes platform
independent language.
jvm acts as an inrterface betn OS and java program.
as in c lang. program needs to be convert into machine
language(.obj).in the same way java code need to be
translated into .class file (in bytecode)
and then JVM executes thst bytecode(.class file).
and thus java program gets executed by JVM and not by OS.
so java become platform independent.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / neha siddiqui
. JVM is stands for java virtual machine
. JVM is popularly known as interprets between java bytecode
and computer operating system
. using a JVM user can run java code on any platform such as.,
unix, linux, windows xp,etc
. A JVM normally reads and executes java statement one at a time
. A JVM can however includes a JIT compiler [Just In Time] with in it
. The Jvm does not know any thing about java programming language
. A JVM only recognize a particular binary format of a file called "Class File"
. A Class file contain Java Virtual Machine instructions.
| Is This Answer Correct ? | 2 Yes | 0 No |
A)JVM convert .class to machine language.
B) JVM is .exe program that is java.exe
C)JVM (Java Virtual Machine) run the java program.
1) JVM check .class code is proper or not (Its check byte
code , virus etc) if .class code is not proper it terminate
the execution.
2) If .class is in proper format then it will start work.
JVM has 5 part:-
1)Method Area
2)Heap Area
3)Java Stacks
4)PC register
5)Native Method Stacks
method area has class code, variables code and method code.
When object is created it store in heap Area.
In our program there will some methods, and its take some
memory for execution and store o/p so this is done in Java
Stacks.
PC register has memory address of every method.
Native Method has Native methods.
3) JVM start program from main(). this is starting point of
JVM in our Program.
JVM also check main method and its argument must be String
type array.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / raju
Java virtual machine is also called JVM.It is used to convert source code in to binary code
| Is This Answer Correct ? | 0 Yes | 3 No |
what is mean by hasing and maping in java platform and advantage?
what is difference between vector and arraylist?.
What is an Ioc pattern? There are assemblies in .net for establishing this task, Whats the special in Java /j2ee technologies about IOC
Difference b/w >> and >>> ?
"Sun Certified Java Programmer" This is one String , we need to print SCJP, write the java code dynamically? pls reply this questions
Am chittibabu from vadavalli, My father name is nanjan.he is working in state bank of india at vadavalli, My mother name is ramal. She is house wife. My brother name is rajaram he is working in Privete Company. I was born on 25-january-1984 at bhavanisager in Erode District. I have completed my school in government higher secondary school bhavanisager. After that I came to coimbatore for higher study.i have joined Bsc computer science in sri ramalinga sowdambigai college of science and commerce, affiliated by bharathiyar university, coimbatore. In the same college, I have continued UG degree also. but I got a job in Systech infovation as a software programmer,so I discontinued Msc Degree.I have one and half years experience from this concern. Here I have completed two products; one is Tranport management solution for balaji goods carriers at tirupur. Another one is Embroidery Management Solution for Angel Embroidery at tirupur. After that I got an another job in metis technologies as senior software engineer. I have one year experience from this company.here I working in school management product.it is developing version by version.
What is the enumerator of the java collection framework? : java collections
what is diff string and stringbuffer
where is JNDI being used in java platform?
What are the types of interface used in the java collections? : java collections
Write a interface "CarOperations" with the following methods void turnOnEngin() void turnOffEngin() void turnOnLigths() void turnOffLights() void turnLeft() void turnRight() void accelerate() void deaccelerate() void putBreaks() void releaseBreaks()
Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.