To find the area of a rectangular prism multiply length by width by height.
If the problem has a variable take the two other dimensions and multiply them together. Then take that number and subtract it from the total to find the number that the variable equals.
Answer:
Radius = 5.1
Diameter = 10.2
Step-by-step explanation:
Radius is a straight line that connects the center of a circle to a point on the circumference (outside of the circle).
Diameter is a straight line that goes through the center of a circle and connects two points on the circumference (outside of the circle).
The line shown goes from the center to the outside of the circle, so it is the radius
Answer:
Step-by-step explanation:
let they travel the distance between them alone
d = common distance traveled by both motorcycle and car = 540 miles
= time taken by motorcycle to travel distance between them
= speed of the motorcycle = 48 mph
time taken by motorcycle to travel distance between them is given as
= d/
=540/48
= 11.25 h
= time taken by car to travel distance "d" =11.25 - 2.25 = 9 h
= speed of the motorcycle
speed of motorcycle is given as
= d/
= 540/9
= 60 mph
when the car and motorcycle move towards each other, the relative speed is given as
v =
+
v = 60 + 48
v = 108 mph
t = time taken to meet
Time taken to meet is given as
t = d/v
t = 540/108
t = 5 h
Answer:
The minimum number of assignment statements needed is 5
Step-by-step explanation:
To write the algorithm, we apply the strategy of interchanging the values of variables in the assignment statements.
Assume "tmp" is the new variable, let assign tmp to w
The algorithm is:
Procedure exchange (w,x,y,z: integers)
tmp := w
w := x
x := y
y := z
z := tmp
return (w,x,y,z)
end
From the algorithm, it is obvious that there will be a minimum of 5 assignment statements needed.