Answer:
48
Step-by-step explanation:
3.2 - 3 = .2
3(.2) = .6
9 + .6 = 9.6
5 * 9.6 = 48
Answer:
C
Step-by-step explanation:
I'm pretty sure it's none..?
$40 jacket; 33% discount
Answer:
$26.8
Step-by-step explanation:
To find the discount, you turn the percentage of the discount into a decimal (.33) then multiply it by the original price (40)
$40 x .33 = 13.2
You then subtract the total to the original price of the item (40)
$40 - 13.2 = 26.8
So the discount price of the jacket would be $26.8
Hope this helps!!
-Jerc
Answer:
$225.00
Step-by-step explanation
First, take the percentage and switch it to a decimal. 10%= 0.10
Next, take $250.00 and multiply that by 0.10. 250x0.10=25
Lastly, subtract 25 from 250. 250-25= 225.
So you’re final answer is $225.00 Hope this helped!
Answer:
$225
Step-by-step explanation:
To find the sale price you convert 10% to decimals so that is equal to .10. Then you multiply the .10 by the original price, and that equals $25. After you have to subtract the found price by original price (250-25) then that should give you $225.
Answer:
23.7m
Step-by-step explanation:
Given parameters:
Time taken = 2.2s
Acceleration due to gravity = 10m/s
Unknown:
Depth of the well = ?
Solution:
To solve this problem, we simply apply one of the motion equations;
S = ut + gt²
where S = depth of the well
u = initial velocity
t = time taken
g = acceleration due to gravity
Input the parameters and solve for S;
Note initial velocity = 0;
S = x 9.8 x 2.2²
S = 23.7m
answer with coding and answer is attached in word file below
The doublePennies() function is an illustration of a recursive function in Java
The base case of the doublePennies() function is that:
When the number of days is 0, then the total available pennies is the same as the total number of pennies.
The algorithm of the above highlight is:
if numDays equals 0 then
totalPennies = numPennies
Using the above algorithm, the complete base case is:
if(numDays == 0){
totalPennies = numPennies;
}
Read more about Java programs at: