How java is platform independent?
Answer Posted / gangadhar
when java source file is compiled it creates a .class file
which is a bytecode file. We can just use this .class file
to execute our program without the need of the source file.
If i want to excute the program in another system , i can
do so just by using .class file(i.e. i donot need the
source code).. but the system should have jvm.
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Is simpledateformat safe to use in the multithreaded program?
What is string immutability?
What does += mean in java?
what is predefined function in java?
What is purpose of keyword void?
What is meant by method?
What are the loops in java?
What is exception propagation?
What is thread safe java?
Why is singleton not thread safe?
Which class is the superclass for every class in java programming?
What are the major drawbacks of external iteration?
What do you mean by checked exceptions?
What is the default size of arraylist in java?
What are the different ways of implementing thread? Which one is more advantageous?