Single Choice Moderate

QAssignment operator in Java is:

ID: #25829 MCQ Quiz - Class 8 - Programming 7 views
Question Info
#25829Q ID
ModerateDifficulty
MCQ Quiz - Class 8 - ProgrammingTopic

Choose the Best Option

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

  • A =
  • B ====
  • C !=
  • D <>
Correct Answer

Explanation

Correct Answer Explanation:

= is the assignment operator in Java. It assigns the right-side value to the left-side variable. E.g., x = 5;

Why the other options are incorrect:

  • Option B: == is the equality comparison operator, not assignment.
  • Option C: != is the 'not equal' comparison operator.
  • Option D: <> is not a Java operator (used in some other languages).

Share This Question

Challenge a friend or share with your study group.