You need to see what you need to convert and how you need to convert it, do you need to divide to find out how many it goes in? Questions like that.
No but it is true that the two equations are parallel.
Answer:
9x + 7
Step-by-step explanation:
Given
6x + 5y + 3x + 7 - 5y ← collect like terms
= (6x + 3x ) + (5y - 5y ) + 7
= 9x + 0 + 7
= 9x + 7
Answer:
anything raised to the power of zero= 1
(1+1/4^½)²
(1 + 1/2)²
(3/2)²
9/4
=2.25
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