Single Choice Moderate

QThe result of 10 / 3 in Java (int) is:

ID: #25825 MCQ Quiz - Class 8 - Programming 9 views
Question Info
#25825Q ID
ModerateDifficulty
MCQ Quiz - Class 8 - ProgrammingTopic

Choose the Best Option

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

  • A 3
  • B 3.33
  • C 4
  • D Error
Correct Answer

Explanation

Correct Answer Explanation:

In Java, integer division truncates the decimal part. 10 / 3 = 3 (with .33 discarded).

Why the other options are incorrect:

  • Option B: 3.33 would require using float/double, not int.
  • Option C: 4 would result from rounding, but Java truncates.
  • Option D: No error — it's valid integer division.

Share This Question

Challenge a friend or share with your study group.