The radius is 10.4 cm. And the angle is 120 which is 1/3 of the circle.
Just use the area formula: 3.14 *r^2 to find the total area of 339.62 and then divide this by 3 to get 113.21. Then to subtract the triangle..find the area of the traingle which is 1/2 (10.4)^2 = 54.08. 113.21 - 54.08 = 59.13 which should be your answer
Answer
D
Step-by-step explanation:
i took the test
Answer:
D
Step-by-step explanation:
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.