0% found this document useful (0 votes)
13 views

Object Oriented Programming Project O4

The document outlines a term project for an Object Oriented Programming class involving the development of a University Management System. It provides details on the project requirements, phases, and deadlines. It also provides a problem statement, requirements, design considerations, and proposed class structure for the system. The system is intended to allow management of departments, students, courses, and teachers within a university. It involves classes like Course, Department, Person, Student, Teacher, and University to model the domain and provide necessary functionality.

Uploaded by

Zeeshan Afzal
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views

Object Oriented Programming Project O4

The document outlines a term project for an Object Oriented Programming class involving the development of a University Management System. It provides details on the project requirements, phases, and deadlines. It also provides a problem statement, requirements, design considerations, and proposed class structure for the system. The system is intended to allow management of departments, students, courses, and teachers within a university. It involves classes like Course, Department, Person, Student, Teacher, and University to model the domain and provide necessary functionality.

Uploaded by

Zeeshan Afzal
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Object Oriented Programming

Term Project

Session: Spring 2022


Group of 4
UML deadline
10- 06-2023
Time 11:59 pm

Code deadline
17=06-2023
Time 11:59 pm

Project presentation deadline


20-06-2023
Time 11:59 pm

Faculty of Information Technology


University of Central Punjab Lahore, Pakistan
Your project have 3 phases
Phase 1 is due on 9th of June 2023 submit on portal marks marks(20%)

In the first phase of the OOP project, you have to create a UML diagram that
shows all the relationships between the classes.
Phase 2 is due on 16th June 2023 submit on portal marks(50%)
In the second phase, you have to submit your complete project code.
Phase 3rd is due on 19 June 2023 present in class marks(30%)
And in the third phase, you have to present your project in class

Problem Statement:

You have been assigned to develop a University Management System. The system should allow the
management of departments, students, and teachers within the university. The system should
provide functionality to add departments, enroll students in courses, hire teachers, and display the
overall university information.

Requirements:

1. Department Management:

- Each department has a name and offers multiple courses.

- The system should allow the addition of new departments with their respective courses.

- Each department should be able to display its name and the list of courses it offers.

2. Student Management:

- Each student has a name, age, and a unique student ID.

- Students can enroll in courses offered by the university.

- The system should allow the enrollment of students in courses.

- Each student should be able to display their name, age, student ID, and the courses they have
enrolled in.

3. Teacher Management:

- Each teacher has a name, age, and a unique teacher ID.


- Teachers can teach courses offered by the university.

- The system should allow the hiring of teachers.

- Each teacher should be able to display their name, age, teacher ID, and the courses they teach.

4. University Management:

- The university system should be able to manage multiple departments, students, and teachers.

- The system should provide functionality to add departments, students, and teachers to the
university.

- The system should be able to display the overall university information, including the list of
departments, students, and teachers.

Design Considerations:

- Each course should have a name and credit hours associated with it.

- The system should handle dynamic memory allocation for storing course details, enrolled courses,
and taught courses.

- The system should ensure proper deallocation of memory to avoid memory leaks.

Proposed Solution:

To address the requirements, the following classes are designed:

1. `Course` class: Represents a course with a name and credit hours.

2. `Department` class: Represents a department with a name and a list of courses.

3. `Person` class: An abstract base class representing a person with a name and age. Derived classes
will be `Student` and `Teacher`.

4. `Student` class: Represents a student with a student ID and a list of enrolled courses.

5. `Teacher` class: Represents a teacher with a teacher ID and a list of taught courses.

6. `University` class: Represents the overall university system, composed of departments, students,
and teachers. It provides functions to manage and display university information.

Create all the constructors (default, parameterized and copy constructor)

Create getter setter for all attributes

Create destructor of all classes

In the main function, you are required to create a university object and utilize it to call all the
necessary functionalities. Make sure to use all the functions that you have implemented in your
project

You might also like