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

A PROJECT REPORT

Uploaded by

leon31king
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)
1 views

A PROJECT REPORT

Uploaded by

leon31king
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
You are on page 1/ 13

A PROJECT REPORT

ON
HOSPITAL MANAGEMENT SYSTEM

COMPUTER SCIENCE(083)
2023-24

SUBMITTED BY:
YUGANDHAR YUG
11-D
45

UNDER THE GUIDANCE OF:


Mrs. NIDHI SHINDE

ROSARY SENIOR SECONDARY SCHOOL


RADIO COLONY, KINGSWAY CAMP
DELHI-110009
CONTENTS
S.NO TOPIC NAME PAGE NO.
1 Certificate 3
2 Acknowledgement 4
3 Introduction 5
4 Source Code 6
5 Sample Output 8
6 Limitations of the project 11
7 Conclusion 12
8 Bibliography 13
CERTIFICATE

This is to certify that the project titled, “ Hospital Management


System” is a piece of work done by YUGANDHAR YUG of
class XI – D, in partial fulfillment of CBSE’S AISSCE 2023-24
and has been carried out under my supervision and guidance.
This report or an identical report on this topic has not been
submitted for any other examination and does not forma part of
any other course undergone by the candidate.

..............................
Signature of Teacher/Guide
Name: Mrs. Nidhi Shinde
Designation: PGT (Computer Science)

Place: Rosary Sr. Sec. School, Delhi


Date: --/--/2023-24
ACKNOWLEDGEMENT

I would like to extend my gratitude to the Principal Rev. Fr.


Savariraj and Head Mistress Sr. Carmen for providing me with
all the facility that was required.
I would also like to express my gratitude to my guide Mrs. Nidhi
Shinde for her able guidance and support in completing my
project.
Last but not the least I would like to thank my parents and
friends who helped me a
lot.

…………………………
Signature of Student
Name:
Class & Section:

Place: Rosary Sr. Sec. School, Delhi


Date: --/--/2023
INTRODUCTION

This is a project titled as “Hospital Management System”.


The code performed by me is to make a menu driven
program to implement various operations for managing
the details of students to add, delete, update, etc.I have
given the source code and a sample output for the same.
SOURCE CODE
student = {}
while True:
print('Following are the functions that can be performed to manage student
details')
print('1.Add a student details')
print('2.Delete a student details')
print('3.Update a student details')
print('4.Display all students details')
a=int(input('Choose the appropriate function to be performed'))
if a==1:
print('Enter a record ')
roll_number = int(input('Enter your roll number: '))
if roll_number in student:
print('Roll Number Already Exists')
else:
name = input('Enter name: ')
student[roll_number] = name
print('Record added\n')
elif a==2:
print('Delete a record ')
roll_number = int(input('Enter roll number: '))
if roll_number in student:
del student[roll_number]
print('Record deleted')
else:
print('Record not found')

elif a==3:
print('Modify a record')
roll_number = int(input('Enter new 6 digit roll number: '))

if roll_number in student:
name=input('Modify name ')
student[roll_number] = name
print('Record updated')
else:
print('Record not found')
elif a==4:
print('Roll Number','Name')
for roll_number in student:
print(roll_number,'\t',student[roll_number])
else:
print('Choose appropriate option')
SAMPLE OUTPUT
Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed1
Enter a record
Enter your roll number: 123456
Enter name: yug
Record added

Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed1
Enter a record
Enter your roll number: 123457
Enter name: arsh
Record added

Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed4
Roll Number Name
123456 yug
123457 arsh

Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed3
Enter roll number: 123457
Modify name harsh
Record updated

Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed4
Roll Number Name
123456 yug
123457 harsh

Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed2
Delete a record
Enter roll number: 123457
Record deleted

Following are the functions that can be performed to manage student details
1.Add a student details
2.Delete a student details
3.Update a student details
4.Display all students details
Choose the appropriate function to be performed4
Roll Number Name
123456 yug
LIMITATIONS OF THE PROJECT

 There are not many functions that can be performed


to store and maintain the data.
 You cannot change the roll number of a specific
person.
CONCLUSION

This was a project titled as “Hospital Management


System”. The code performed was to make a menu driven
program to implement various operations for managing
the details of students to add, delete, update, etc. I have
given the source code and a sample output for the same.
I have put my best effort to make this project as desired.
BIBLIOGRAPHY

 Class Notes

You might also like