Answer Posted / hr@tgksolutions.com
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
make a method which any number and any type of argument and print sum of that arguments.....
List implementations of list interface?
How do you override a variable in java?
What is meant by collection in java?
What is isa relationship?
What do you mean by jjs in java8?
Which methods cannot be overridden in java?
What are the files generated after using IDL to java compiler?
Is math an abstract class in java?
Which api is provided by java for operations on set of objects?
When should we create our own custom exception classes?
Explain reverse a linked list iterative solution in java?
What is the final method?
What is java Applet?
Explain the available thread states in a high-level?