Y-1=2(x+3) just plug into the formula
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:
Step-by-step explanation:
The answer is 3 because the length of the box is 10, the width is 5, and the height is 3.
Answer:
Area of the base is 10.5 cm².
Step-by-step explanation:
Formula for the volume of the given oblique prism = Area of the triangular base × Vertical height between two triangular bases
Vertical height = 6 cm
Volume = 63 cm³
From the formula,
63 = Area of the triangular base × 6
Area of the base =
= 10.5 cm²
Therefore, area of the base is 10.5 cm².