EXAM PAPER 2026 VERIFIED ANSWERS
FULL PROGRAMMING CONCEPTS STUDY
GUIDE REVISION MODULE
◉ Which of the following lines is not a Java comment?
A. /** comments */
B. // comments
C. -- comments
D. /* comments */
E. ** comments **
Answer: C. -- comments
E. ** comments **
◉ Which of the following are the reserved words?
A. public
B. static
C. void
D. class
Answer: A. public
B. static
, C. void
D. class
◉ Every statement in Java ends with ________.
A. a semicolon (;)
B. a comma (,)
C. a period (.)
D. an asterisk (*)
Answer: A. a semicolon (;)
◉ A block is enclosed inside __________.
A. parentheses
B. braces
C. brackets
D. quotes
Answer: B. braces
◉ Programming style is important, because ______________.
A. a program may not compile if it has a bad style
B. good programming style can make a program run faster
C. good programming style makes a program more readable
D. good programming style helps reduce programming errors