Computer Science for IGCSE & O level - Algorithm Design And Problem Solving (Section 10 - No. 19)

In pseudocode, what does `Counter <- Counter + 1` typically represent?
Assigning a new value to a counter variable.
Reducing the counter by 1.
Incrementing the counter by 1.
Outputting the value of the counter.

Explanation

This is a standard operation to increase the value of a counter by one.

Comments (0)

Advertisement