What is JAVA? Why it is platform independent?
Answer Posted / dinesh
Java is fully object oriented programming language.In java,
source code is compiled to give bytecode(class file).
that class file is able to run in any OS.it is simply
called as "COMPILED ONCE RUN ANYWHERE".class file is fed
into JVM, it will convert the class file into corresponding
machine code.
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What do you understand by copy constructor in java?
Explain enumeration in java?
What do you understand by classes in java?
How do you access command-line arguments within the code?
Is java still relevant?
How do you remove duplicates in java?
What is the tradeoff between using an unordered array versus an ordered array?
Explain the importance of finalize() method.
what is meant by Byte code concept in Java?
Why are global variables used?
What is regex in java?
What is the difference between the paint() and repaint() methods?
How do you sort objects in java?
What is the difference between static and global variables and also define what are volatile variables?
Why is string buffer better than string ?