Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

C++ LIBRARY , HOSPITAL MANAGEMENT SYSTEM

Rating
-
Sold
-
Pages
11
Grade
B
Uploaded on
18-01-2026
Written in
2024/2025

LIBRARY MANAGEMENT SYSTEM CODE , HOSPITAL MANAGEMENT SYSTEM CODE, SOFTWARE DEVELOPMENT CODE,

Institution
Course

Content preview

BS(IT),SEMESTER#01
UROOJ ASGHAR KHAN
02-135242-006




Task 1:Software Development



You are tasked with creating a software system to manage the organizational structure of a
company. The company consists of various departments, each with a manager and multiple
employees. Your goal is to define structures for employees and departments and implement
functions to build and manage this company hierarchy.

OUTPUT SAMPLE




Code:
#include <iostream>
#include <vector>
#include <string>

using namespace std;
class Employee {
public:

Employee(string name, string position) {
this->name = name;
this->position = position;
}

void display() {
cout << "Name: " << name << ", Position: " << position << endl;
}

private:


1

, BS(IT),SEMESTER#01
UROOJ ASGHAR KHAN
02-135242-006
string name;
string position;
};

class Department {
public:

Department(string departmentName, Employee* departmentManager) {
this->departmentName = departmentName;
this->departmentManager = departmentManager;
}


void addEmployee(Employee* employee) {
employees.push_back(employee);
}

void displayDepartment() {
cout << "Department: " << departmentName << endl;
cout << "Manager: " << endl;
departmentManager->display();

cout << "\nEmployees in " << departmentName << ":" << endl;
for (auto employee : employees) {
employee->display();
}
cout << endl;
}

private:
string departmentName;
Employee* departmentManager; // Pointer to the department manager
vector<Employee*> employees; // List of employees in the department
};

int main() {
Employee* emp1 = new Employee("hasnain", "Software Engineer");
Employee* emp2 = new Employee("faiza", "QA Engineer");
Employee* emp3 = new Employee("mantasha", "Product Manager");
Employee* manager = new Employee("mani", "Engineering Manager");

Department* engineeringDepartment = new Department("Engineering", manager);

engineeringDepartment->addEmployee(emp1);
engineeringDepartment->addEmployee(emp2);
engineeringDepartment->addEmployee(emp3);

engineeringDepartment->displayDepartment();

delete emp1;
delete emp2;
delete emp3;
delete manager;
delete engineeringDepartment;




2

Written for

Course

Document information

Uploaded on
January 18, 2026
Number of pages
11
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$8.99
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
uroojkhan1

Also available in package deal

Get to know the seller

Seller avatar
uroojkhan1 Bahria university
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
3 months
Number of followers
0
Documents
13
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions