Answer:
numPeople +=5;
Explanation:
The statement numPeople +=5; increases the value of the variable numPeople by 5, this statement is equivalent to writing numPeople = numPeople +5. As a matter of fact another way of accomplishing this is shown in the code below were we carry out the increament by 5 inside the print statement. See line 7 of the code below.