Answer:
guhg yrurb jwhe hehe hd sb brur euger
Answer:
V = 180 ft^3
Step-by-step explanation:
The volume of a cone is found by
V = 1/3 pi r^2 h where r is the radius and h is the height
The diameter is 12 so the radius is 1/2 the diameter or 1/2(12) = 6
The height is 5 and we are using 3 for pi
V = 1/3 (3) *6^2 *5
V = 180 ft^3
A) profit/original price x100 =percentage profit
(Profit: 360-300=$60)
=60/300 x100
=20%
b) two cameras (original price): 300x2= $600
two cameras (price sold): 360x2 = $720
Profit without discount: 720-600= $120
120-100= $20 discount
20/720 x100 =2.78%
Answer:
sorry this question is tough
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.