Answer:
C
Step-by-step explanation:
This is the shows the constant value on the X-axis
i don't know if there is a graph for this problem, but m1 should always equal m2
if m1 and m2 are parallel, one line that is perpendicular to m1 is always perpendicular to m2, and the slopes of m1 and m2 are equal and their lines should never intersect
Answer:
The slope of the line is zero
Another point on the line is (3,10).
The equation of the line is y = 10.
Step-by-step explanation:
an i get brainliest plz
Answer:
3rd one and the 4th one
Step-by-step explanation:
Hopt it helps.....
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