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
Answer:
153 times
Step-by-step explanation:
We have to flip the coin in order to obtain a 95.8% confidence interval of width of at most .14
Width = 0.14
ME = 
ME = 
ME = 

use p = 0.5
z at 95.8% is 1.727(using calculator)





So, Option B is true
Hence we have to flip 153 times the coin in order to obtain a 95.8% confidence interval of width of at most .14 for the probability of flipping a head
Answer:
New balance = -151.89 + 4.5x
(where x is the value of the smaller deposit)
Step-by-step explanation:
The inicial balance was -126.89.
Then, it were made two deposits, one with the value of x, and one that is 3 1/2 times the other, that is, 3.5x.
Then, the customer made a withdraw of $25.
So, The new balance can be calculated as:
New balance = inicial balance + x + 3.5x - 25
New balance = -126.89 + 4.5x - 25
New balance = -151.89 + 4.5x
4 tens = 40 and 5 tens = 50 … therefore the number has to be between 40 and 50
So: 40 < x <50 … this says that x is greater than 40 and less than 50
So the possible numbers would be: 41,42,43,44,45,46,47,48,49
Now the number must have 9 ones … which mean the only number would be 49
The volume of a pyramid is
V=(l*w*h)/3=(35*4)/3=140/3=46.67 cubic feet , choice C