Answer:
highest of five numbers in the file
Explanation:
- This code reads the file "some-file.txt" and saves the result in variable "somefile"
 - The runs a for loop for a count of 5.
 - In each loop it compares the current value of the file with the value of the variable result and if the result is true it updates the value of the variable result.
 - At the end of this code the variable result will contain the highest value in the file "some-file.txt" and print it.
 
 
        
             
        
        
        
Answer:
is this overdue
Explanation:
it probly is you are smart you can do this
 
        
             
        
        
        
Answer:
Abstraction
Explanation:
In computer science, abstraction has a similar definition. It is a simplified version of something technical, such as a function or an object in a program. The goal of "abstracting" data is to reduce complexity by removing unnecessary information. At some level, we all think of computers in abstract terms.
 
        
             
        
        
        
Answer:
START LOOP FOR EACH EMPLOYEE:
    INPUT employee’s name, hourly rate of pay, number of hours worked, overtime pay rate, payroll deductions, tax rate
    SET gross pay = (hourly rate of pay x *weekly hours) + (overtime pay rate x (number of hours worked - *weekly hours))
    PRINT gross pay
    SET net pay = gross pay - (payroll deductions + (gross pay * tax rate/100 ))
    PRINT net pay
END LOOP
* weekly hours (how many hours an employee needs to work to earn overtime pay rate) is not given in the question
Explanation:
Create a loop that iterates for each employee
Inside the loop, ask for name, hourly rate, number of hours worked, overtime pay rate, payroll deductions, tax rate. Calculate the gross pay and print it. Calculate the net pay and print it