Answer:
173.2
Step-by-step explanation:
area of equilateral triangle = √3 / 4 l^2
so area =173.2
Divide 120 by 4 to get 1/9 of the rope: 30. Then multiply it by 9 to get the part after 1/4 was given away: 270. Now divide it by 3 to get 90 and lastly, multiply it by 4 to get a final answer of 360 centimeters. Hope this helps!
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:
w=15
Step-by-step explanation:
2w-5=30
2×15-5=30
30-5=25
w=15