Answer:
I guess it would help you <em>✌</em>
Answer: 40%
Explanation: when finding a percentage of a test u usually divide the answers correct and the answers in total, so if u put it that way u divide 6 by 15 which gives u 40% and 60% is left meaning ( 9 of another thing )
Did you notice the little box with corners marked in the angle down at the bottom ?
That angle is a right angle, and <em>this triangle is a right triangle</em> !
This piece of information is a big help. It breaks the problem wide open.
You know that in order to find the longest side of a right triangle . . .
-- Square the length of one short side.
-- Square the length of the other short side.
-- Add the two squares together.
-- Take the square root of the sum.
One short side=48. Its square = 2,304.
The other short side=48. Its square = 2,304.
Add the two squares: 2,304 + 2,304 = 4,608
The square root of the sum = √4,608 = <em><u>67.88</u></em> (rounded)
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