It is dividing by 2 each time so the number of sales is 545.
Answer:
(-2,-1)
Step-by-step explanation:
y = -x - 3
you replace the x with the -2
y = -(-2) - 3
y=2-3
y=-1
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:
n + p x 3 = t
Step-by-step explanation:
n= Navita's money
p= Pawan's money
t= total money
Answer:
3/2 or 1.5
Step-by-step explanation:
Multiply 3/5 by 2 to make the denominator of both fractions equal.
2 x 3/5 = 6/10
Now that the denominators are equal, add the two fractions together
6/10 + 9/10 = 15/10 = 3/2 or 1.5