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
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
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.
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic