Write C++ Program as followingCreate a class named Developer that stores the information about an application developer.Implementation of all the points is necessary. Private instance variable to store the experience of developer, number of applicationspublished, number of GitHub repositories. Parameterized constructor that sets all the instance variable. Setter and getter methods to set and get the instance variable values. A public method named calulateSalary() that returns the expected salary of the employee Salary of the developer is determined by: (experience of developer + number ofapplications published + number of GitHub repositories) * 500 $.If expected salary is less than 1000$ then assign the status to employee as “Rookie developer” and if the expected salary comes out to be greater then 1000$ then assign the status to the developer as “pro developer”. Create a method name displayInfo that will display all the information about thedeveloper along with its expected salary and status.
Write C++ Program as followingCreate a class named Developer that stores the information about an application developer.Implementation of all the points is necessary. Private instance variable to store the experience of developer, number of applicationspublished, number of GitHub repositories. Parameterized constructor that sets all the instance variable. Setter and getter methods to set and get the instance variable values. A public method named calulateSalary() that returns the expected salary of the employee Salary of the developer is determined by: (experience of developer + number ofapplications published + number of GitHub repositories) * 500 $.If expected salary is less than 1000$ then assign the status to employee as “Rookie developer” and if the expected salary comes out to be greater then 1000$ then assign the status to the developer as “pro developer”. Create a method name displayInfo that will display all the information about thedeveloper along with its expected salary and status.
Step by step
Solved in 2 steps with 1 images