0% found this document useful (0 votes)
4 views1 page

Array List

The document outlines two programming tasks for a college department involving student records. The first task requires creating a menu-driven C++ program to manage student roll numbers using an array, allowing operations such as insertion, deletion, modification, and merging of lists. The second task involves writing a program to store and display records of 10 students using a structure that includes their name, registration number, GPA, and semester.

Uploaded by

haroonali101325
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

Array List

The document outlines two programming tasks for a college department involving student records. The first task requires creating a menu-driven C++ program to manage student roll numbers using an array, allowing operations such as insertion, deletion, modification, and merging of lists. The second task involves writing a program to store and display records of 10 students using a structure that includes their name, registration number, GPA, and semester.

Uploaded by

haroonali101325
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Lab1

1) In a college department, the administration maintains a list of student roll numbers for a
course using an array.
During the semester, the staff may need to:

 Create the initial student list


 Display the list
 Insert a new roll number when a student enrolls
 Delete a roll number when a student withdraws
 Modify a roll number if a correction is required
 Search for a roll number to check enrollment status
 Merge two student lists (for example, when two sections are combined)

Write a menu-driven C++ program to perform all list operations using arrays.

2) Write a program to store record of students (using structure). The record must contain
(Name, registration number, gpa, semester). Store record of 10 students and display it at
standard output.

You might also like