Mаtch eаch cellulаr defense with the infectiоn it
Included in this test questiоn is а pаrtiаlly cоded prоgram to determine a teacher’s salary for Wayne County has been coded as below. The teacher's salary is based on their years of experience and if he/she has achieved National Board Certification. If the teacher has earned the certification, he/she will receive an extra $5,000 added to their salary. Below is the table for % increases: Years of experience % increase Less than or equal to 2 years 2% More than 2 but less than or equal to 5 4% More than 5 but less than or equal to 10 6% More than 10 years 8% The amount of the salary increase is calculated by multiplying the % increase times their current salary. Then their new salary is determined by adding their salary increase to the base salary and the additional $5,000 if they have earned the certification. The partial code: # Program to determine teacher's salary based on experience and teaching import time, os response = 'y' while response.lower() == 'y':# Ask teacher for years of experience years = int(input('Please enter years of experience teaching ')) # Ask teacher for current salary print () salary = input('Please enter current salary ')) salary=float(salary) # Ask if have achieved National Board Certification print () certification=input('Have you earned the National Board Certification (y or n) ') print() # If structure to determine % of salary increase # If structure to determine if receive $5000 for board certification #Calculate new salary to teacher print (f'Congrats - your new salary is $ {newsalary:,.2f}') time.sleep(5) print ('nnn') response = input ('Do you wish to continue (y or n)?') os.system('cls') print ('Thank you for using my program.')print ('Good-bye') Open IDLE, copy the above partial code and complete the code, name the file as teachers.py and then upload to this test question. Do not put your code here. Attach teachers.py as a separate file.