QUESTION

Text
Image


QUESTION 28 Fill in the missing variable in the following segment of code. 1. subtotal $=i$ tem $1+i$ tem $2+$ item 3 2. taxRate $=.05$ 3. $=$ taxRate * subtotal 4. PUT "Tax: " + taxAmount subtotal taxRate taxAmount Tax QUESTION 29 What is the value of RATE after these statement have been executed? Assume the user has entered 25 for the age and the subtotal is 100. If age $>=25$ Then discountRate $=.1$ Else discountRate $=0$ Discount $=$ Subtotal * discountRate Rate $=$ Subtotal - Discount 0 .1 10 90

Public Answer

ZN4XMY The First Answerer