Answer:
240 cm^3
Step-by-step explanation:
Volume of a rectangular prism = base area x height
the base is a rectangle, thus base area = width x length = 4 x 5 = 20 cm^2
20cm^2 x 12 = 240 cm^3
Answer:
598=194+8x
Step-by-step explanation:
To solve you would subtract 194 from its self and 598
598=194+8x
-194 -194
404=8x
then you would divide 8 from it's self and 404
which would make it 50.5
(but you cant buy half a package of spoons so realistically it'd be 50 or 51.
hope this helped :)
Answer:
the answer to this problem is D:(-2,4)(1,1)
Area of a circle is

. The first one, a, the radius squared is 8*8=64. So

. If you multiply in pi as 3.14, you'll have 200.96 square inches. The second one, b, the radius squared is 10*10=100. So

square kilometers. If you multiply in pi as 3.14 you'll have 314 square kilometers. The third one, c, the radius squared is 14*14=196. So

. Or you could multiply in pi as 3.14 to get 615.44 yd squared. For the last one, d, the radius squared is 22*22=484 cm. Therefore,

, or multiply in 3.14 for pi to get 1519.76 cm squared. There you go!
Step-by-step explanation:
Hi, your question isn't totally complete. Here's the likely full question:
Random walk. A Java programmer begins walking aimlessly. At each time step, she takes one step in a random direction (either north, east, south, or west), each with probability 25%. She stops once she is at Manhattan distance r from the starting point. How many steps will the random walker take? This process is known as a two-dimensional random walk.
Write a program RandomWalker.java that takes an integer command-line argument r and simulates the motion of a random walk until the random walker is at Manhattan distance r from the starting point. Print the coordinates at each step of the walk (including the starting and ending points), treating the starting point as (0, 0). Also, print the total number of steps taken.