Object Oriented Programming with C++
1.In an Organization every employee gets 20% house allowance, and 7% Transport allowance. Every employee who earns more than 10,000 pays income tax at the rate of 10%.Employees whose salary is more than 100000 pay 30% income tax. Design a C++ program used to input the salary of an employee and output his house allowance, transport allowance, gross pay, tax charged and Net pay (include a flow chart).
NB:
Gross pay = salary + allowances
Net pay is pay after all deuctions
Assume the mean mark obtained in an exam depends on the mean mark of three subjects as shown
Mean Mark |
Grade |
70 to 100 |
A |
60 to 69 |
B |
50 to 59 |
C |
40 to 49 |
D |
Required;
Design a C++ program to input the marks of the three subjects and compute the mean exam mark and grade
Task
Input the marks for each of the three subjects
Compute and output the mean mark
Compute and Output the grade
Design and Write a running c++ program that allows users to enter temperature in degrees Fahrenheit F and outputs that temperature in degrees Celsius( oC), and also outputs the temperature converted into Kelvin (K). Use the conversion table
Temperature in Celsius( oC) |
Temperature in Fahrenheit(F |
Temperature in Kelvin (K). |
0C |
F =(9/5 x 0C) + 32 |
K = 0C + 273 |
Example 100 0C |
F =(9/5 x 100) + 32 =212F |
K= 100 +273 =373K |
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme