In words it would be said Thirty nine point four
Answer:
Graph ⇒ see the attached figure
Create a table ⇒ see the attached figure
Expression/Equation ⇒ y = 8x
What is the slope? ⇒ 8
What is the y-intercept? ⇒ zero
Step-by-step explanation:
Given: Meat costs $8.00 per pound at a store.
Let the number of pounds = x, and the total cost = y
So, the equation which represents the given situation is ⇒ y = mx
Where m is the slope.
If x = 1 pound , the meat costs = y = $8
So, y = 8x
The table can created by let values for x and find the values of y.
The attached table represents the table and the graph of y = 8x
The slope = 8
y-intercept is the value of y when x = 0
so, the y-intercept = 0
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:
The answer is A
Step-by-step explanation: