315 dollars. u basically just multiply 10.50 with 30 hours s
Answer:
20%
Step-by-step explanation:
Value increased in 5 years = £95000 - £80000 = £5000
Value increase in 1 year =5000/5 = 1000
Increase % = (1000/5000 ) * 100 = (1/5) *100 = 20%
Answer:
Split the number into the whole number component and fraction component.
5 8/25= 5+8/25.
For the denominator, recognize that
25×4=100.
Multiple =4.
Multiply the numerator and the denominator by the multiple 4.
8×4/ 25×4.
Simplify.
32/100=0.32
Combine the whole number component with the decimal.
5+0.32=5.32
<h3>I hope this helps</h3>
I'm sorry idk how to do it
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.