10
A) 24 ribbons
B)1/28yards
11.u have 1/2 how?
Answer:
X = 0.272
Step-by-step explanation:
Firstly, use a common log on the 25 to undo it. Secondly, use the log25(144) on the other side to get ~ 0.54. Move the 1 over with subtraction and then divide out the 2. This will leave you with X= 0.272
Answer:
Cash price
Step-by-step explanation:
The computation is shown below:
The Interest rate per month (r) = (9% ÷ 12) = 0.75%
Now Present value of the monthly payment is
= PMT × {[(1 + rate of interest)^number of years - 1] ÷ rate of interest}
= 1,499 × {[(1 + 0.75%)^12 - 1] ÷ 0.75%}
= 18,748.89
And the cash price is 15,999
So, the cash price would be lower
Answer:
x=11
Step-by-step explanation:
The switch case works like an if or if-else, where each of the cases are conditionals. Here we have 7 cases and we know that our variable begins with x=5.
First, it enters to case 5 because of x=5, so x+=3, this means we add 3 to the actual value of the variable ⇒ x=8.
At this point, if there's not break the program continues to the next case, executing the statements until a break or the end on the switch is reached.
In this order, the x = 8 and next we add 1 (case 6) ⇒ x=9. We add 2 (case 7) x+=2 ⇒ x=10. Then we rest 1 (case 8) ⇒ x=9 and then we add 1 again as in case 9 ⇒ x=11.