Answer:
a) If the diameter is 400 feet wide, then the radius is half that, which is 200 feet wide.
b) The circumfernce is π times the diameter, which is 400 feet. 400×π≈1256.64
c) She is not correct. She squared 400, which is 160000, when she should have squared 200, which is 40000. Then, multiply by π.
40000 × π ≈ 125663.7
Answer:
30 60 90 triangle
the hypotenuse is twice the length of the shorter leg length.
Answer:
5. mCD is 27.8° | 7. mAFC 52.3° |
Step-by-step explanation:
X=3
91 + x^2
91 + 3^2
91 + 9
91 + 9 = 100
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886