In Python programming, which of the following symbols represents an augmented…
2026
In Python programming, which of the following symbols represents an augmented arithmetic operator?
- A.
==
- B.
>=
- C.
=
- D.
+=
Attempted by 233 students.
Show answer & explanation
Correct answer: D
An augmented assignment operator combines an arithmetic operation with variable assignment. For example, += adds a value to the current value of a variable and assigns it back (e.g., x += 1 is equivalent to x = x + 1). Other symbols like ==, >=, and = represent comparison or simple assignment.