Quiz 2.8 #1:
Given the variables taxable_purchases and tax_free_purchases (which already have been defined), write an expression corresponding to the total amount purchased.
Note: This question does not follow our naming convention for variables. taxable_purchage and tax_free_purchase should have been named taxablePurchage and taxFreePurchase.
taxable_purchases + tax_free_purchases
Quiz 2.8 #2:
Given the variables full_admission_price and discount_amount (already defined), write an expression corresponding to the price of a discount admission.
full_admission_price - discount_amount
by Szymon Machajewski