|
What does this statement do:
A good answer might be:It increases count by one. (If this is not clear remember the two steps of an assignment statement: first evaluate the expression on the right of the equal sign, second put the value in whatever variable is on the left. Say that count is 5. When the above statement executes, the expression will be evaluated, resulting in 6. Then the 6 is put in count. |
How the |
QUESTION 3:
|