Question: For the Employee Class Program in this tutorial, what if we need the capability to update the salary for employees? What information is needed to

For the Employee Class Program in this tutorial, what if we need the capability to update the salary for employees? What information is needed to perform this task, and what code segment implements obtaining it in a method?
a.)
Employee id
def upd_salary(employees):
empid = input("Enter the employee ID: ")
b.)
The new salary
def upd_salary(employees):
new_sal = input("Enter the new salary of the employee: ")
c.)
Employees file information and the new salary
def upd_salary():
employees = read_employees()
new_sal = input("Enter the new salary of the employee: ")
d.)
Employee id and the new salary
def upd_salary(employees):
empid = input("Enter the employee ID: ")
new_sal = input("Enter the new salary of the e

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!