Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
a. left brace ({), right brace (}).
b. if.
c. //.
d. Space characters, newlines and tabs.
e. Keywords.
f. main.
g. System.out.print, System.out.println and System.out.printf.
a. False. Comments do not cause any action to be performed when the program executes. They’re used to document programs and improve their readability.
b. True.
c. False. Java is case sensitive, so these variables are distinct.
d. False. The remainder operator can also be used with non-integer operands in Java.
e. False. The operators *, / and % are higher precedence than operators + and -.
a. int c, thisIsAVariable, q76354, number;
or
int c;
int thisIsAVariable;
int q76354;
int number;
b. System.out.print( "Enter an integer: "