Answer Posted / vivek ghavle
Java solves the problem of platform-independence by using
byte code. The Java compiler does not produce native
executable code for a particular machine like a C compiler
would. Instead it produces a special format called byte
code. Java byte code written in hexadecimal, byte by byte,
looks like this:
CA FE BA BE 00 03 00 2D 00 3E 08 00 3B 08 00 01 08 00 20 08
This looks a lot like machine language, but unlike machine
language Java byte code is exactly the same on every
platform.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How would you reatach detached objects to a session when the same object has already been loaded into the session?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
How will you pass parameters in RMI? Why do you serialize?
What is Stream Tokenizer?
Write a singleton program?
what are the activation groupworks?
What is the difference between static and non-static with examples?
Explain about local interfaces.
What’s jboss cache in short?
What is the purpose of the wait() method?
What are the benefits of detached objects?
How are the elements of a borderlayout organized?
why static class in java
A user of a web application sees a jsessionid argument in the URL whenever a resource is accessed. What does this mean? a. The form must have the field jsessionid b. URL rewriting is used as the session method c. Cookies are used for managing sessions
What state does a thread enter when it terminates its processing?