Answer:
π^2, 9.8 repeating, square root of 99.
Step-by-step explanation:
10 cents, cause the {ball +$1.00=$1.10} subtract $1 from both sides the ball=$0.10
Sorry, what grade is that for? might need to learn that right away
Answer:
384 square meters.
Step-by-step explanation:
Given that a cube has a lateral surface area of 64 square meters, to find the total surface area of the cube, the following calculation must be performed, knowing that the formula to calculate the area of a cube is to multiply by 6 (the number of sides of the cube) the area of one of its sides:
A x 6 = X
64 x 6 = X
384 = X
Thus, the area of the cube is 384 square meters.
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.