correct 2025
The successful output of the Java compiler is called - correct answer
✔bytecode
What must every line in a program end with? - correct answer ✔Semicolon
The file extension name of Java source code file is - correct answer ✔.java
What is not a Java comment? - correct answer ✔**comment**
If a program contains the statement
System.out.print();
what kind of error will occur? - correct answer ✔A runtime error
What is a valid Java identifier? - correct answer ✔$343
According to Java naming conventions, which of the following names could be
a variable? - correct answer ✔findArea
To declare a constant TAX_RATE with value 0.98 inside a method, you write
___. - correct answer ✔final double TAX_RATE = 0.98;