To find the first blank, just replace x in the equation with 12 and solve.
a(12) = 50 - 1.25(12) = your answer for blank 1
For blank 2: because x represents the number of apps on her phone, and x is given 12 for this problem, she bought 12 apps.
For blank 3: You would mention how many apps she got twice, so not the first option or the third option. It should be the answer from the first blank because the equation represents how much money is in her account.
Part A:
Price before tax: $49.99
Discount: 50% of $49.99 = 50% * $49.99 = 0.50 * $49.99 = $25.00
Discounted price: $49.99 - $25.00 = $24.99
Tax on discounted price: 8% of $24.99 = 8% * $24.99 = 0.08 * $24.99 = $2.00
Part B:
Total price: $24.99 + $2.00 = $26.99
The answer to 9- (-6) is 15
Answer:
II. int z;
Step-by-step explanation:
int z;
is the best option, because on the next line you will define the variable as
z = (x + y) / 2;
you can also use int z=0; but it is not necessary according to the code segment given.