1.45X=0
1.45 1.45
U divide 1.45 in each side 1.45 divided by 1.45 =x
And 1.45 divided by 0 is of course 0 cuz anything divided or
Multiplied by 0 Is always 0
Ur answer is X=1.35
Answer:
b is the answer trust me i know
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
The numbers of choices in each category are multiplied together. We assume the order of paint choices matters: using color 1 in area A and color 2 in area B is not the same as using color 2 in area A and color 1 in area B.
P(7,2)*4*3*2 = 42*4*3*2 = 1008 ways
_____
P(n, k) = n!/(n-k)!
P(7, 2) = 7*6 = 42