Single Choice Moderate

Qint average = (a+b)/2; is:

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

Choose the Best Option

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

  • A Arithmetic assignment
  • B Comparison
  • C Loop
  • D Class
Correct Answer

Explanation

Correct Answer Explanation:

This statement calculates (a+b)/2 arithmetically and assigns the result to variable 'average'. Combines arithmetic and assignment.

Why the other options are incorrect:

  • Option B: Comparison would use ==, not =.
  • Option C: No loop syntax is present.
  • Option D: A class definition uses 'class' keyword.

Share This Question

Challenge a friend or share with your study group.