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
Circled numbers are prime factors comment if you need me to clarify anything
I think it is gonna be xy
because if ur set contains all odd multiples of 3 (-9,-3,3,9,15,21,27...
and u pick any 2 of those numbers and multiply them u will end up with an odd numbered multiple of 3
and if u pick out any 2 numbers in ur set..and do any of the other things in ur answer choices, it will not always be an odd numbered multiple of 3
Answer:
You've picked the right one! It's the one you've marked in the picture!
Step-by-step explanation:
Multiplication is just like addition; you're just doing it multiple times instead of once. 3<em>x</em> is equal to <em>x</em> + <em>x</em> + <em>x</em>. That's exactly what the option you chose in the image shows. Great job! You've got this!