Computer Science for IGCSE & O level - Programming (Section 10 - No. 40)

In the context of programming, what does "TotalWeight = TotalWeight + Weight" represent?
Assigning the value of Weight to TotalWeight.
Adding the current value of TotalWeight and the value of Weight and assigning the result to TotalWeight.
Subtracting Weight from TotalWeight.
Multiplying TotalWeight by Weight.

Explanation

This is an accumulation pattern where the current value of the variable on the left is incremented by the value on the right.

Comments (0)

Advertisement