Answer:
D. D
Step-by-step explanation:
Where -1.9 is!!
The question states the : opposite of the opposite.
So- we find the opposite of (-1.9) =1.9 and the opposite of that is = -1.9.
So- it is situated at -1.9
Hope this helps!! =)
Answer:
The Lateral Surface Area is 911.32 square unit and
Total Surface Area is 1361.7 square unit.
Step-by-step explanation:
For a given Cone
Radius (r) = 12
Height (h) = 21
<u>For Lateral Surface Area</u>
<h3>
<u>Formula</u><u>:</u> </h3>
A = πr√r² + h²
A = 3.14 × 12 × √(12)² + (21)²
A = 3.14 × 12 × √144 + 441
A = 3.14 × 12 × √585
A = 37.68 × 24.18
A = 911.32 square unit
Now,
<u>For</u><u> </u><u>Total</u><u> Surface Area</u>
<h3><u>Formula:</u></h3>
A = πrl + πr²
For Slant height (l)
l² = r² + h²
l² = (12)² + (21)²
l² = 144 + 441
l² = 585
l = 24.18
So,
A = πrl + πr²
A = πr(l + r)
A = 3.14 × 12 × (24.14 + 12)
A = 3.14 × 12 × 36.14
A = 1361.7 square unit
Thus, The <u>Lateral Surface Area</u> is 911.32 square unit and <u>T</u><u>otal Surface Area</u> is 1361.7 square unit.
<u>-TheUnknownScientist</u>
Answer:
16m
Step-by-step explanation:
The correct answer is 16m for this question.
Formula: L*W
I know this because 4 goes into 16.
Hope this helps.
Answer:
Hello my friend, I hope this helps you!
Step-by-step explanation:
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