A bike rental shop uses a program to calculate the discount and final price for customers.
base_price = float(input("Enter bike price: "))
is_member = input("Is the customer a member? (Y/N): ")
discount = 0.0
if is_member == "Y":
discount = base_price * 0.15
final_price = base_price - discount
print("Final price to pay: £", final_price)
Identify two variables used in this program.
95 exam-style questions on OCR GCSE Computer Science Programming fundamentals. Each one has a worked solution and a mark scheme showing where the marks go.