Answer:
a) $0.500 ; (b) $5
Step-by-step explanation:
(a) 11 pound of flour =$5
1 pound of flour = $5/11
1 pound of flour = $0.500
(b) 8hours =$40
1 hour =$40/8
1 hour = $5
Answer:
um
Step-by-step explanation:
176 10cent per 1 message
Given:
Choose a number between 0 and 20.
If the difference is less than 10 then Eric wins.
Let us x is Eric's number. 0 <u><</u> x <u><</u> 20
If Eric wins. |x -7| < 10
|x-7| < 10 → -10 < x-7 < 10 → -10 + 7 < x - 7 + 7 < 10 + 7 → -3 < x < 17
Taking into account that the number must be given between 0 and 20.
0 <u><</u> x <u><</u> 20
-3 < x < 17
→ 0 < x < 16
Answer:
see below
Step-by-step explanation:
you can use cosine law
(3 sqrt3)^2 + (4 sqrt3)^2 - 2(3 sqrt3)(4sqrt3)cos60 = AC^2
AC = sqrt39
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.