Questions
1. When you compile a program written in the Java programming language, the compiler converts the human-readable source file into platform-independent code that a Java Virtual Machine can understand. What is this platform-independent code called?2. Which of the following is not a valid comment:
a.3. What's the first thing you should check if you see the following error at runtime:/** comment */
b./* comment */
c./* comment
d.// comment
Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorldApp.4. What is the correct signature of the
mainmethod?5. When declaring the
mainmethod, which modifier must come first,publicorstatic?6. What parameters does the
mainmethod define?Exercises
1. Change theHelloWorldApp.javaprogram so that it displaysHola Mundo!instead ofHello World!.2. You can find a slightly modified version of
HelloWorldApphere:HelloWorldApp2.java
The program has an error. Fix the error so that the program successfully compiles and runs. What was the error?