Answer:
-1311
Step-by-step explanation:
1316 + x = 5
Subtract 1316 from both sides:
1316 - 1316 + x = 5 - 1316
On the left side they cancel out and we are left with:
x = 5 - 1316
Which simplifies to:
x = -1311
Answer:
4.375cm
Step-by-step explanation:
You have to look at what volume equals Volume= l×w×h so 3/2 × 5/4 × 7/3
Answer: $7448
Step-by-step explanation:
Year 1: 1.218x
Year 2: 1.218(1.218x)
Year 3: 1.218(1.218(1.218x))
Year 4: 1.218(1.218(1.218(1.218x)))
Year 5: 1.218(1.218(1.218(1.218(1.218x))))
Year 6: 1.218(1.218(1.218(1.218(1.218(1.218x)))))
Year 7: 1.218(1.218(1.218(1.218(1.218(1.218(1.218x))))))
Year 8: 1.218(1.218(1.218(1.218(1.218(1.218(1.218(1.218x)))))))
Year 9: 1.218(1.218(1.218(1.218(1.218(1.218(1.218(1.218(1.218x))))))))
Year 10: 1.218(1.218(1.218(1.218(1.218(1.218(1.218(1.218(1.218(1.218x)))))))))
Year 11: x(1.218¹¹)
Year 12: x(1.218¹²) = 79,400
x(10.6602517) = 79,400
x = 79,400/10.6602517
x=7448.22939
x = $7448
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