Single Choice Moderate

QCorrect syntax:

ID: #25858 MCQ Quiz - Class 8 - Programming 5 views
Question Info
#25858Q ID
ModerateDifficulty
MCQ Quiz - Class 8 - ProgrammingTopic

Choose the Best Option

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

  • A if(x>0){...} else {...}
  • B if x>0 else
  • C elseif x>0
  • D if x>0 then else
Correct Answer

Explanation

Correct Answer Explanation:

Correct Java syntax uses parentheses for conditions and braces for blocks: if(condition){...} else {...}

Why the other options are incorrect:

  • Option B: Missing parentheses and braces.
  • Option C: Java uses 'else if' (with space), not 'elseif'.
  • Option D: 'then' isn't Java syntax.

Share This Question

Challenge a friend or share with your study group.