Write a program to assign the values to base class members at the time of creation of derived class object. The base class members are private members. Display the values of both base and derived class using function overriding concept.
Consider the list of integers (4,5,6,7,8) and we are implementing this list using an Array.
Do the following operations on the given list in C++ language:
· Add(9): Using Add() to add an element 9 between 6 and 7.
· Next(): Using Next() to move current pointer 1 shift to the right.
· Remove(): To remove an element 7.
· Length(): To return size of the list.
· find(7): traverse the array until 7 is located.
Consider the list of integers (4,5,6,7,8) and we are implementing this list using an Array.
Do the following operations on the given list in C++ language:
· Add(9): Using Add() to add an element 9 between 6 and 7.
· Next(): Using Next() to move current pointer 1 shift to the right.
· Remove(): To remove an element 7.
· Length(): To return size of the list.
· find(7): traverse the array until 7 is located.
Write a program that can be used to assign seats for a commercial airplane. The airplane has 13 rows, with six seats in each row. Rows 1 and 2 are first class, rows 3 through 7 are business class, and rows 8 through 13 are economy class.
Use two parallel arrays:
Your program must prompt the user to enter the following information:
Your program must contain at least the following functions:
Name Surname Score 1. Sam Williams 60 2. John Phoenix 85 3. Simon Johnson 75 4. Sarah Khosa 81 5. Mat Jackson 38 6. Nick Roberts 26 7. Isaac Wayne 74 8. Anna Mishima 34 9. Daniel Rose 64 10. Aaron Black 83 11. Jack Mohamed 27 12. Kathrine Bruckner 42 Create a C++ program that has 3 Stacks. Insert, into the first stack, all the data above (which is the data of student’s names, surnames and the marks they obtain in a particular assessment) Display the content of the stack on the screen (console) Then, remove all the students whose surname starts with the alphabets ‘R’, ‘J’ and ‘M’, from the first stack and insert them into the second Stack. Display the contents of Stack1 and Stack2. Finally, remove all the students whose marks are less than 50 from both Stack1 and Stack2 and insert them into the Third Stack. Display the contents of all the 3 Stacks.
Add two polynomials
Given two polynomials A and B, write a program that adds the given two polynomials A and B.
Input
The first line contains a single integer M.
Next M lines contain two integers Pi, Ci separated with space, where Pi denotes power and Ci denotes co-efficient of Pi for polynomial A After that next line contains a single integer N. Next N lines contain two integers Pj, Cj separated with space, where Pj denotes power and Cj denotes co-efficient of Pj for polynomial B.
I am not getting proper output
jbm manufacturing company plans to give a year end bonus to each of its employee consider the following conditions: if the employee's monthly salary is less than or equal to 2,000 pesos, the bonus is 50% of the salary for employees with salaries greater than 2,000 pesos the bonus is 1,500 pesos print the name, salary, and corresponding bonus for each employee
a program that will ask for students grades in the prelim(30%), midterm(30%), and finals(40%) terms compute for the final_grade and determine whether remarks are passed or failed. passing grade is 60. print the name, grade, and remarks of the student
Give any example which describes the software crises due to design.
Suggest a suitable life cycle model for a software project which your organization has undertaken on behalf of certain customer who is unsure of his requirements and is likely to change his requirement frequently. Give the reasons behind your answer.