why java is platform independent?

Answers were Sorted based on User's Feedback



why java is platform independent?..

Answer / gunjan

java is platform independent as JVM compiles source code to
its byte code which is then interpreted to object code.thus
any machine having a java compiler can execute that byte
code.this does not depends on the hardware or the OS of the
system

Is This Answer Correct ?    42 Yes 9 No

why java is platform independent?..

Answer / guest

Java is compiled to an intermediate form called byte-code.
A Java program never really executes natively on the host
machine. Rather a special native program called the Java
interpreter reads the byte code and executes the
corresponding native machine instructions. Thus to port
Java programs to a new platform all that is needed is to
port the interpreter and some of the library routines. Even
the compiler is written in Java. The byte codes are
precisely defined, and remain the same on all platforms.

Is This Answer Correct ?    36 Yes 8 No

why java is platform independent?..

Answer / pawan mangal

java uses two process compiler and second one interpreter
compiler converted source code in to byte code and this byte code is universalize because it can be run by any jvm(java virtual machine).which is a interpreter
suppose u create a java programe in windows and u compile it then u have their byte code*(.class file)as discussion it can be run on any jvm means(linx )

Is This Answer Correct ?    9 Yes 1 No

why java is platform independent?..

Answer / coder

JVM does not compile Java source code to byte code. It is
the Java Compiler which does that. JVM runs on the target
machine which interprets the byte code and runs the program
on the target machine.

Java is not platform independent. Though you write the Java
source code, somebody else ( Sun Microsystems ) have done
the hardwork to implement JVM for the platform which is
going to run your program. "Java is Platform Independent"
is an illusion.

Is This Answer Correct ?    10 Yes 4 No

why java is platform independent?..

Answer / jagan_kumar

java compiler makes the class file which is not dependent
on the hardware or software of the system where we compiled.
Every system has its own JVM(System dependent) and will
takes .class file and produces the code which is executable
on that particular system itself.
So JVM makes the code portability.
hence JVM makes the JAVA as Platform Independent.
JAVA-JVM=NO USE of producing System indipendent code.

Is This Answer Correct ?    4 Yes 0 No

why java is platform independent?..

Answer / madhan

yes java is a platform independent. JVM(java virtual
machine) is used in java , that jvm can be converted source
code into byte code so java known as platform independent.

Is This Answer Correct ?    12 Yes 9 No

why java is platform independent?..

Answer / raj kumar.d

When compile a java code, the source code is converted into a byte code with the help of java interpreter. So java called platform independent.

Is This Answer Correct ?    2 Yes 0 No

why java is platform independent?..

Answer / hrindows@gmail.com

Java is called platform independent because of its byte codes which can run on any system irrespective of its underlying operating system.

Is This Answer Correct ?    0 Yes 0 No

why java is platform independent?..

Answer / asad raza

Bismillahir Rahmanir Rahim..
yes java is plateform independent, because its compiler
first convert the java code into byte-code(machine
language), which is the code that every plateform
understand, that's why it is called " plateform independent"

Is This Answer Correct ?    3 Yes 5 No

why java is platform independent?..

Answer / badrinath

java is platform independent b coz ,java have java virtual
machine which make java plateform
independent..jvm convert input source code into bye code
which is run on any plateform..

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More C Code Interview Questions

to remove the repeated cahracter from the given caracter array. i.e.., if the input is SSAD output should of SAD

6 Answers   Synergy,


#ifdef something int some=0; #endif main() { int thing = 0; printf("%d %d\n", some ,thing); }

1 Answers  


What is data _null_? ,Explain with code when u need to use it in data step programming ?

0 Answers   Abbott,


write a c program to Create employee record by taking details like name, employee id, address and phone number. While taking the phone number, take either landline or mobile number. Ensure that the phone numbers of the employee are unique. Also display all the details

2 Answers   TCS,


write a origram swaoing valu without 3rd variable

2 Answers  






#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }

3 Answers  


main() { printf("\nab"); printf("\bsi"); printf("\rha"); }

3 Answers  


write a c program to print magic square of order n when n>3 and n is odd?

1 Answers   HCL,


#include"math.h" void main() { printf("Hi everybody"); } if <stdio.h> will be included then this program will must compile, but as we know that when we include a header file in "" then any system defined function find its defination from all the directrives. So is this code of segment will compile? If no then why?

2 Answers  


how many processes will gate created execution of -------- fork(); fork(); fork(); -------- Please Explain... Thanks in advance..!

8 Answers   GATE,


main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }

9 Answers   CSC, GoDB Tech, IBM,


Write a program to implement the motion of a bouncing ball using a downward gravitational force and a ground-plane friction force. Initially the ball is to be projected in to space with a given velocity vector

2 Answers  


Categories