77.4k views
3 votes
12. Because Java byte code is the same on all computers, compiled Java programs a. are nonexistent b. must be re-compiled for each different machine before they can be run c. are highly portable d. cannot run on computers with different operating systems

User Rjak
by
4.9k points

1 Answer

4 votes

Answer:

C) Highly portable

Step-by-step explanation:

This means they can run on any computer or platform that supports Java without the need for recompillation.

This idea is popularly called WORA that is Write Once Run Anywhere.

Software Applications written in Java are compiled to bytcode (.class) which are intended to run on the Java Virtual Machine (JVM) irrespective of the architecture of the computer or device.

User Kevinstueber
by
4.9k points