Question: in python please Lab Exercises Q1: Write a pay computation program that gives the employee 1.5 times the hourly rate for hours worked above 40
in python please

Lab Exercises Q1: Write a pay computation program that gives the employee 1.5 times the hourly rate for hours worked above 40 hours (and regular 1.0 rate for less than 40 hours). Une Try/Except to handle non-numeric input gracefully, Ex: Enter Hours: 45 Enter Rate: 10 Pay: 475.0 Enter Hours: 20 Enter Rate: nine Error, please enter numeric input Q2: Using while loop. Write a program to compute the yearly increase for three employees' salary as follow: If the number of working years is more than 10, then the increase is 10 plus the current salary. t if the number of working years is 10 then the increase is 7 plus the current salary. Else, the increase is 3 plus the current salary. The salary and number of current working years should be entered by the user. Q3: Using while loop. Write a program to do the following: Ask the user to enter five numbers between 0-100 If the user enters a number that is less than 0 or greater than 100, it exits the program. Hint: use break for this purpose
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
