[solved] – Question 78969
PROBLEM #1 Write a class StudentInfo that represents a student record. It must have variables to store the student ID, student’s name and student’s CGPA. It also must have a function to print all the values. You will also need to overload a few operators.
Task 1: Create a list of objects of class StudentInfo. Task 2: Insert 5 student records i. 15234 Jon 2.6 ii. 13732 Tyrion 3.9 iii. 13569 Sandor 1.2 iv. 15467 Ramsey 2 3.1 v. 16285 Arya 3.1
Task 3: Delete the record with ID 15467 Task 4: Retrieve the record with ID 13569 and print whether found or not along with the entire record. Output should be: Item is found 13569, Sandor, 1.2 Task 5: Print the list Output should be: 15234, Jon, 2..6 13732, Tyrion, 3.9 13569, Sandor, 1.2 16285, Arya, 3.1
Expert Answer
OR

