A unique aspect of Java that allows code compiled on one machine to be executed on a machine of a different hardware platform is Java’s

A unique aspect of Java that allows code compiled on one machine to be executed on a machine of a different hardware platform is Java’s

a) bytecodes
b) syntax
c) use of objects
d) use of exception handling
e) all of the above


Answer:  a.

Explanation:  The translation process for a Java program is to first compile it into bytecodes, which are architecturally neutral (that is, they can be used no matter what the architectural platform is).  To execute the program, the bytecodes must be further compiled by a Java compiler or interpreted by a Java Virtual Machine.


Java

Learn More Multiple Choice Question :