33
(Choose 1 answer)
Suppose you have written a Java program that has one class and one method. Which one of the following best describes what you need to do in order to run the program?
A. Compile the program, create a new object for the class, and call the method.
B. Compile the program, call the method, and then create a new object for the class.
C. Create a new object for the class, call the method, and then compile the program.
D. Create a new object for the class, compile the program, and call the method.
Ext