Single Choice Moderate

QProgram to check even/odd uses:

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

Choose the Best Option

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

  • A % operator with if
  • B Only *
  • C Only /
  • D Only +
Correct Answer

Explanation

Correct Answer Explanation:

Check if number % 2 == 0. If true, even; else odd. Uses the modulo (%) operator with an if.

Why the other options are incorrect:

  • Option B: Multiplication alone doesn't determine parity.
  • Option C: Division alone doesn't easily give parity.
  • Option D: Addition doesn't test parity.

Share This Question

Challenge a friend or share with your study group.