Answer:
120 buttons in each box
Step-by-step explanation:
What you are looking for is the least common multiple. List out what the multiples of each number are and when ever you find two numbers that match you have your answer.
Answer:P ERRA
Step-by-step explanation:
JAJJAA
Answer:
0.32
:)
brainliest greatly appretiated
This is like the equivalent to a jar with 4 green balls and 6 white balls, where you are picking 3. (The 4 green balls signify the friends from kindergarten.)
You want to solve the probability that the first two balls are green and the third is white.
First draw --> 4 green out of 10 balls --> 4/10 = 2/5
Second draw --> 3 green out of 9 balls --> 3/9 = 1/3
Third draw --> 6 white out of 8 balls --> 6/8 = 3/4
2/5 x 1/3 x 3/4
= 6/60
= 1/10
so the answer is 1/10 (or 10%)
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