<em><u>Answer</u></em>
5 hours
<em><u>Explanation</u></em>
The two working together can finish a job in 

Also, working alone, one machine would take one hour longer than the other to complete the same job.
Let the slower machine working alone take x hours. Then the faster machine takes x-1 hours to complete the same task working alone.
Their combined rate in terms of x is 

This should be equal to 20/9 hours.

Multiply through by;





Factor to get:


It is not feasible for the slower machine to complete the work alone in 4/9 hours if the two will finish in 20/9 hours.
Therefore the slower finish in 5 hours.
 
        
             
        
        
        
Answer:
i think its b
Explanation:
i did the test and got it right
 
        
                    
             
        
        
        
The correction is *regular.
        
             
        
        
        
Answer:
spreadsheets
Explanation:
every company uses spreadsheets because they are used to list and organize data easily
 
        
             
        
        
        
Answer:
def sum_digits(number):
    total = 0
    if 1 <= number <= 999:
        while number > 0:
            r = int (number % 10)
            total +=r
            number /= 10
    else:
        return -1
    return total
    
print(sum_digits(658))
Explanation:
Write a function named sum_digits that takes one parameter, number
Check if the number is between 1 and 999. If it is, create a while loop that iterates until number is greater than 0. Get the last digit of the number using mudulo and add it to the total. Then, divide the number by 10 to move to the next digit. This process will continue until the number is equal to 0.
If the number is not in the given range, return -1, indicating invalid range.
Call the function and print the result