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
The temperature decreased by 5 degrees per hour, as -25 / 5 is -5.
The slope-intercept form of a line:

We have:

Substitute:


Put the values of coordinates of the point (1, 5) to the equation of a line:

Answer: 
Slope is -9 and y intercept is -6
Answer: 4 / 5
Explanation:
1) For a right triangle, the ratio sine is defined as:
sin(x) = opposite-leg / hypotenuse
2) x is the angle. In this case: A
3) As per the figure, the opposite leg to tha angle A measures 28
4) As per the figure, the hypotenuse measures 35
5) Calculations:
sin(A) = 28 / 35
Simplify dividing both numerator and denominator by 7 => 28/35 = 4/5