The answer is 9 feet because 9+3 is 12 and something twice is multiply.3x3 would be 9 making that the twice part......i think lol
F(x)=-26
You substitute and evaluate
Answer:
0.5 - put in the middle of 0 and 1
-3/2 - put in the middle of -2 and -1
1 1/3 - put in the middle of 1 and two but a little closer to one
-2.25 - put a point in the middle of -2 and -3 then another point in the middle of the point you made and -2 then delete the 1st one
Step-by-step explanation:
i hope this helps
Answer: 3.50x + 4.00y ≤ 45
0 < y < 11.25
<u>Step-by-step explanation:</u>

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