The times at which the ball is on the ground
Y=mx+c
Parallel=> m=5
Y=5x+c
Sub (1,6)
6=5+c
=> c=1
=> equation is y=5x+1
The right answer for the question that is being asked and shown above is that:
This can be answered using the Pythagorean Theorem.
h2 = a2 + b2
h = square root (8^2 + 5^2)
h = <span>square root (64 + 25)
h = </span><span>square root (89) in
h = 9.4 in
So the correct answer is 9.4 in given the dimension 5 inches and 8 inches.</span>
Answer:
y = x + 7
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