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?

  1. A.

    ==

  2. B.

    >=

  3. C.

    =

  4. 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.

Explore the full course: Rssb Senior Computer Instructor