Answer Posted / glibwaresoftsolutions
You're absolutely right! Java is often described as a platform-independent language due to its use of bytecode. When you compile Java source code, it gets transformed into bytecode (.class files), which can run on any system that has a compatible Java Virtual Machine (JVM) installed.
This architecture allows developers to write code once and run it anywhere, as long as the appropriate JVM is available on the target platform. While the JVM itself is platform-dependent (since it needs to be tailored to the specific operating system), the bytecode remains consistent across platforms, enabling this cross-platform capability. This design is a key reason for Java's popularity in various environments, from web applications to enterprise software.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about assignment statement?
What is n in java?
When do you get classcastexception?
Explain purpose of sleep() method in java?
What is an eror in java?
What is stringwriter?
Explain listiterator and methods in listiterator?
What is one third plus one third as a fraction?
What is a literal coding?
What is the benefit of abstract class?
Explain about the performance aspects of core java?
How can you avoid serialization in child class if the base class is implementing the serializable interface?
there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box.
What is a class reference?
What are the supported platforms by java programming language?