Single Choice Moderate

Qif-else is used when:

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

Choose the Best Option

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

  • A Two paths (true and false)
  • B One path
  • C No path
  • D Loop
Correct Answer

Explanation

Correct Answer Explanation:

if-else provides TWO execution paths: one when the condition is true (if block), another when false (else block). Exactly one runs.

Why the other options are incorrect:

  • Option B: One path is just plain 'if', not if-else.
  • Option C: 'No path' isn't a valid decision structure.
  • Option D: Loops use for/while, not if-else.

Share This Question

Challenge a friend or share with your study group.