Answer:

Step-by-step explanation:
Given :-
The sum of two numbers is 1 .
The product of the nos . is 12 .
And we need to find out the numbers. So let us take ,
First number be x
Second number be 1-x .
According to first condition :-

Hence the numbers are 4 and -3
Alexis needs to score at least 96 points on her next test in order to have an average of at least 90.
explanation:
85+89+92+96= 360
359/4=90
Answer:
The value of y s 2.5
Step-by-step explanation:
Vertical angles are always equal to one another. In this case, we can find the angles by setting the two values equal and solving algebraically.
2y + 5 = 4y
5 = 2y
2.5 = y
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