You are required to build a program for ABC Builders, they have various models of houses which are all build on 1 canal area, the three models with costs are
House Models Building Cost Double Story House 10000000 House with basement 20000000 Single Story 5000000
The property dealer give them the latest prices for area their house covers and the construction price building each model. The price of area is 1 crore, Calculate the total cost of whole house after construction. Suppose you have two users for this program, take input from them and based on their inputs calculate the total cost for their choice of house.
Make a program that will input Kilogram, convert it into grams and pounds. Display the equivalent Gram/s and Pounds (1 Kg=1000 grams and 1 Kg = 2.2 pounds. Your program will be terminated if you input zero in the kilogram.
Write a program that able to compute the pay of both types of employees: retired one’s and employed,
the retired employees will receive pension and it will be computed and displayed with proper variables
and messages. The pension of the employer will be fixed and will be computed on the basis of age, if the
age of the retired employer is between 60 to 70 years then its pension will be 30000 and if the age is
greater than 70 then the pension will be 40000. The pay of the employer will be computed on daily
worked hours and the net pay will be shown with the proper messages of gross salary. The pay of the
employer will be 1000 rupees per day if he/she worked for 8 hours and if it works more than 8 hours, then
he will be paid 300 rupees per hour but the extra time can only be utilized at maximum of 3 hours.
Write a program that prompts the user for number of students to process. The program will allow the user to enter the name of student and then it will ask for the number of marks for that student. The program will then prompt for each score and will calculate the average mark for each student.
Sample Run:
Enter number of students: 2
Enter student 1 name: Jenny
Enter number of marks for Jenny: 2
Enter mark 1: 99
Enter mark 2: 88
Enter student 2 name: Kevin
Enter mark 1: 75
Enter mark 2: 76
Enter mark 3: 78
=============================
Student 1: Jenny
Marks: 99 88
Average for Jenny is: 93.5%
=============================
Student 2: Kevin
Marks: 75 76 78
Average for Kevin is: 76.3333%
=============================
Write a program in c++ to overload >> operator using friend function.
Write a programme in c++ to Overload << operator using friend function.
Write a program in C++, which demonstrates pre-increment operator overloading.
Take 20 integer inputs of an array from the user and print the following
Positive number. Negative number
Odd number. Even number
Number of 0
Create a C++ program using conditional statement. Read the worded problem below.
Supposed we have a client, he/she wanted you to create a program for his/her business.
He/She wanted to record the employee’s information. Now, on programmer’s side (You), we
have 3 buttons, the ADD, UPDATE, DELETE.
A. When we click DELETE button, there will be a notification telling the user of the program
if he/she wanted to delete the employee’s record. The pop-up information/display
when DELETE button is pressed: “Are you sure you want to delete this record?”
B. When the button ADD is pressed/triggered, it will display “Are you sure you wanted to
add this file?”
C. When the button UPDATE is pressed, it will display “Are you sure you want to update
this record?”
Draw a flowchart, write an algorithm and design a C++ program for an inventory system that will alert the user to reorder an item based on:
a. The stock-on-hand or an order is below the reorder print.
b. The item is not obsolete.
Use the selection structure.