Single Choice Moderate

QWhich is a correct if statement?

ID: #25854 MCQ Quiz - Class 8 - Programming 6 views
Question Info
#25854Q ID
ModerateDifficulty
MCQ Quiz - Class 8 - ProgrammingTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A if (x > 5) { ... }
  • B if x > 5 then ...
  • C IF (x > 5) THEN
  • D if [x > 5]
Correct Answer

Explanation

Correct Answer Explanation:

Java's if uses parentheses () around the condition and curly braces {} for the body: if (condition) { statements; }

Why the other options are incorrect:

  • Option B: 'then' isn't Java syntax; use braces.
  • Option C: Java is case-sensitive — 'IF' and 'THEN' are wrong.
  • Option D: Square brackets [] are for arrays, not conditions.

Share This Question

Challenge a friend or share with your study group.