218k views
5 votes
Once an application is written and saved, the Java class must be compiled. Describe what two procedures must occur in order to view the output of the application.

User Jeisson
by
6.8k points

1 Answer

4 votes

Answer:

The compilation and execution process.

Step-by-step explanation:

The two procedures that must occur in order to view the output of a java application is the compilation and execution process.

At the compilation stage the java compiler compiles the program and create a bytecode which is then saved in an .class extension.

While during the execution stage the Java virtual machine (JVM) which is also refer to as the java interpreter takes the .class file and generate the output.

User Daniel Bolanos
by
7.0k points