Answer:
B
Explanation:
You are increasing the value of price, therefore, you should have an assignment statement in the code of the class to change the value of price. The method is also of type void, so you shouldn't be returning a value. Since you will be increasing the value of price with the value of surcharge, your answer is then:
price+= surcharge;
which is also the same as saying: price = price + surcharge;