Define a function named “getInfoAfterIncrement” that accepts an array of Exam object pointers, its size and the improvement score amount. It will go through the array and add that amount to all Exam objects in the array. Then It will return two pieces of info: - the count of all courses that has passing status after the score improvement - the vector of Exam object pointers containing only the pointers of the Exam objects that has passing status. For example, if you pass this array Exam * pExamList[] = { new Exam("Midterm1 Exam", 90), new Exam("Midterm2 Exam", 80), new Exam("Final Exam", 50), new Exam("Extra Credit", 100), new Exam("Initial Test", 0), new Exam("Homework1", 69) } ; with the increment score of 10, you will get the pass count of 4 back with the vector that contains pointers only to these 4 Exam objects EXAM(Midterm1 Exam) SCORE(100) RESULT(Pass) EXAM(Midterm2 Exam) SCORE(90) RESULT(Pass) EXAM(Extra Credit) SCORE(110) RESULT(Pass) EXAM(Homework1) SCORE(79) RESULT(Pass) Please note that the score has been incremented by 10. Show how this function is being called and returning proper values

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Define a function named “getInfoAfterIncrement” that accepts an
array of Exam object pointers, its size and the improvement score
amount. It will go through the array and add that amount to all Exam
objects in the array. Then It will return two pieces of info:
- the count of all courses that has passing status after the score
improvement
- the vector of Exam object pointers containing only the pointers of
the Exam objects that has passing status.
For example, if you pass this array
Exam * pExamList[] = { new Exam("Midterm1 Exam", 90),
new Exam("Midterm2 Exam", 80),
new Exam("Final Exam", 50),
new Exam("Extra Credit", 100),
new Exam("Initial Test", 0),
new Exam("Homework1", 69) } ;
with the increment score of 10, you will get the pass count of 4 back
with the vector that contains pointers only to these 4 Exam objects
EXAM(Midterm1 Exam) SCORE(100) RESULT(Pass)
EXAM(Midterm2 Exam) SCORE(90) RESULT(Pass)
EXAM(Extra Credit) SCORE(110) RESULT(Pass)
EXAM(Homework1) SCORE(79) RESULT(Pass)
Please note that the score has been incremented by 10.
Show how this function is being called and returning proper values. 

C++

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education