Which of the following is not a valid method to increase a variable named score by 1?
a.
++score = score + 1
b.
score = score + 1
c.
score++
d.
++score

Solved
Show answers

Ask an AI advisor a question