Single Choice Moderate

Qint marks = 85; is a:

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

Choose the Best Option

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

  • A Declaration and initialization
  • B Only declaration
  • C Function
  • D Loop
Correct Answer

Explanation

Correct Answer Explanation:

This statement declares a variable 'marks' of type int AND initializes it with 85 — declaration + initialization in one line.

Why the other options are incorrect:

  • Option B: Only declaration would be 'int marks;' without the =85 part.
  • Option C: A function has parameters and returns values — this is a variable statement.
  • Option D: Loops repeat code (like for/while); this isn't a loop.

Share This Question

Challenge a friend or share with your study group.