Respuesta :
Answer:
The correct answer is option(A) which is number=number+1
Explanation:
According to question number+=1 means that number is incremented by 1 and store in the variable number this is simply equivalent to number=number+1
here their are two operator + and = means that firstly the number is incremented then after that it assign that incremented value to number variable.
The statement that should be equivalent is option A. number = number + 1.
Calculation of the number:
Since it is given that number += 1 so it means the number should be increased by 1 and it stores the variable number which defined that it should be equal to number = number + 1. Also, it comprise of two operators i.e. + and = that means at first the number should be increased after that it should be assigned with respect to the number variable
hence, the correct option is A.
Learn more about number here: https://brainly.com/question/16478099