You have 4 options:
4 cards: because you draw cards and don't replace them your chance p changes on every trial, so it can't be a binomial experiment
roll 2 dice until...: a binomial experiment must have a consistent amount of trials, by doing an action until some condition is fulfilled violates this as the amount of trials or throws in this case is random
ask 9 people: there are three options, binomial experiments can only have 2
the only option left is the spinner, which is a binomial experiment
Answer:
1078
Step-by-step explanation:
22 x 49 = 1078
Answer:
I don't know what is this
Answer:
Step-by-step explanation:
We can get this done by using the code
def digits(n):
count = 0
if n == 0:
return 1
while (n > 0):
count += 1
n= n//10
return count
Also, another way of putting it is by saying
def digits(n):
return len(str(n))
------------------------------------------
print(digits(25)) # Should print 2
print(digits(144)) # Should print 3
print(digits(1000)) # Should print 4
print(digits(0)) # Should print 1
Doing this way, we've told the system to count the number of figures that exist in the number. If it's 1000 to 9999, then it records it as 4 digits. If it's 100 - 999, then it records it as 3 digits. If it's 10 - 99, it records as 2 digits. If it's 0 - 9, then it has to record it as a single digit.
Thanks
Here you go! Hopefully it was correct as i used an app called Cymath.Please mark me as Brainliest!