Single Choice Moderate

QProgram to find largest of 3 uses:

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

Choose the Best Option

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

  • A Nested if or else-if
  • B Only sequence
  • C Loop only
  • D None
Correct Answer

Explanation

Correct Answer Explanation:

Comparing 3 numbers requires multiple comparisons — best done with nested ifs or else-if statements.

Why the other options are incorrect:

  • Option B: Pure sequence can't make comparisons.
  • Option C: Loops repeat; here we need decisions.
  • Option D: The program uses decisions — 'none' is wrong.

Share This Question

Challenge a friend or share with your study group.