Write a program to request for the names of four faculty members and number times he/she has absented him/herself from class. One of them should have absented him/herself once, another twice, another three times and another four times. b. Using method overloading, define a method salary to perform the following.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 20PE: When you borrow money to buy a house, a car, or for some other purpose, you repay the loan by making...
icon
Related questions
Question

C++ programming

It has been observed by management that some faculty member at the university demonstrates a lackadaisical attitude toward work. They seldom go to class yet at the end of each month they receive full salary. Management has decided that GHs 200, 300, 400, and 500 will be deducted from a faculty’s salary if he/she offends once, twice, third time and forth time respectively in a month. This means that if a faculty member offends once in a month GHs 200 will be deducted, if a faculty member offends twice in a month, GHs 500 (i.e. 200+300) will be deducted, if a faculty member offends three times in a month GHs 900 (i.e.200+300+400), will be deducted and if a faculty member offends four
times in a month GHs 1,400 (i.e. 200+300+400+500). Assuming all faculty
members are on a flat salary rate of GHs 2500.

a. Write a program to request for the names of four faculty members and
number times he/she has absented him/herself from class. One of them
should have absented him/herself once, another twice, another three times
and another four times.

b. Using method overloading, define a method salary to perform the
following.

1. salary should have two arguments (base salary and a variable X).
declare an appropriate data type for X and initialize it to 200. Your
method should return the base salary minus X when called.

2. salary should have three arguments (base salary and two variables X
and Y). declare an appropriate data type for X, Y, initialize X to 200
and Y to 300. Your method should return the base salary minus the
sum of X and Y when called.

3. salary should have four arguments (base salary and three variables X,
Y and Z). declare an appropriate data type for X, Y, Z initialize X to
200, Y to 300 and Z to 400. Your method should return the base salary
minus the sum of X, Y and Z when called.

4. salary should have five arguments (base salary and four variables X,
Y, Z and K). declare an appropriate data type for X, Y, Z and K,
initialize X to 200, Y to 300, Z to 400 and K to 500. Your method
should return the base salary minus the sum of X, Y, Z and K when
called.

c. Display your results.

d. critically explains the logic behind the code

Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Reference Types in Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr