Answer:
It should be 7
Explanation: What about steps = steps + 1? What is the purpose of that line? Well, since it uses one equal sign, we know that it is assigning (and not checking). This statement is being used simply to increment (increase) the steps variable by 1. We are taking the value previously held in steps , adding 1, and then re-assigning that value to steps. So, if the steps variable previously held 43, we add 1 to make it 44 and store it back in steps . This kind of a statement is very helpful in keeping score in a game or counting the number of times something has happened.