Kendriya Vidyalaya Panagarh

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 10

KENDRIYA VIDYALAYA

PANAGARH

PROJECT REPORT ON HOSTEL


MANAGEMENT SESSION: 2023-24
SUBMITTED BY: ABHISHEK HARICHANDAN,
DEBJIT SARKAR,
PREM KUMAR
ROLL NO : ___________
NAME : ABHISHEK HARICHANDAN
CLASS : XII
SUBJECT : COMPUTER SCIENCE
SUB CODE : 083
SUBMITTED TO: MRS TANUSREE SADHUKHAN (CS)
PM SHRI KENDRIYA
VIDYALAYA PANAGARH

CERTIFICATE
This is to certify that I Abhishek Harichandan Roll No: ______ has
successfully completed the project Work entitled “HOSTEL
MANAGEMENT” in the subject Computer Science(083) laid down in
the regulations of CBSE for the purpose of Practical Examination
in Class XII to be held in Kendriya Vidyalaya Panagarh
on______________.

(Tanusree Sadhukhan)
PGT (CS)
Examiner Name: _______________
Signature:
Date:

ACKNOWLEDGEMENT
Apart from the efforts of me, the success of any project depends
largely on the encouragement and guidelines of many others. I take
this opportunity to express my gratitude to the people who have been
instrumental in the successful completion of this project.
I express deep sense of gratitude to almighty God for giving me
strength for the successful completion of the project.
I express my heartfelt gratitude to my parents for constant
encouragement while carrying out this project.
I gratefully acknowledge the contribution of the individuals
who contributed in bringing this project up to this level, who
continues to look after me despite my flaws,
I express my deep sense of gratitude to the luminary The Principal,
Kendriya Vidyalaya Panagarh who has been continuously motivating
and extending their helping hand to us.
I am overwhelmed to express my thanks to The Administrative
Officer for providing me an infrastructure and moral support while
carrying out this project in the school.
My sincere thanks to Mrs Tanusree Sadhukhan, Master In-charge, A
guide, Mentor all the above a friend, who critically reviewed my
project and helped in solving each and every problem, occurred
during implementation of the project The guidance and support
received from all the members who contributed and who are
contributing to this project, was vital for the success of the project. I
am grateful for their constant support and help.

PROJECT ON HOSTEL MANAGEMENT


INTRODUCTION
This project is based on management of hostels, such as in
formations about the students such as his\her roll number , in department
they belong to , etc. These information can be stored in the data and can be
verified whenever we want. This computer programme can be used for
hostels schools etc..

OBJECTIVES OF THE PROJECT


The objective of this project is to let the students apply the
programming knowledge into a real- world situation/problem
and exposed the students how programming skills helps in
developing a good software.
1. Write programs utilizing modern software tools.
2. Apply object oriented programming principles effectively
when developing small to medium sized projects.
3. Write effective procedural code to solve small to medium
sized problems.
4. Students will demonstrate a breadth of knowledge
in computer science, as exemplified in the areas of
systems, theory and software development.
5. Students will demonstrate ability to conduct a research or
applied Computer Science project, requiring writing and
presentation skills which exemplify scholarly style in
computer science.

FLOW CHART -

start

CHOICE=INT(INPUT(“ENTER THE CHOICE”))


print(abc)

Elif
Choice==2;
elif choice==3:

print("AVAILABLE DEPARTMENTS AS FOLLOWS")


print("1.COMPUTER")
print("2.BIO")
print("3.TECH")
print("4.PHYSICS")
print("5.ECO")
print("6.ENG")
print( "SORRY,YOU ARE NOT AUTHORIZED TO USE THIS SITE ")

else
SOURCE CODE
import mysql.connector as
sqlconn=sql.connect(host='localhost',user='root',passwd='1234',
database='hostel_management')
conn.autocommit=True
if conn.is_connected():
print('connected succesfully')
else:
print('not connected')
c1=conn.cursor()
#c1.execute("create table fees(department int primary key,fees int)")
v_department=input("enter your department")
v_fees=input("enter your fee")
abc=("insert into fees values ("+v_department+","+v_fees+")")
print(abc)
c1.execute(abc)
conn.commit()
#c1.execute("create table hostel_management(roll_no int
primary key,name varchar(20),address varchar(100),room_no
int,dept varchar(15),fees int,bal int)
print("WELCOME TO HOSTEL MANAGEMENT ")
print(" 1.ADMISSION FORM")
print("2.FEE CHECKING")

print(" 3.MODIFY DATA")


print("4.AUTHORITIES ONLY")
print(" 5.QUIT")
choice=int(input('ENTER YOUR CHOICE'))
if choice==1:
v_roll=input("ENTER YOUR ROLL NUMBER")
v_name=input("ENTER YOUR NAME")
v_add=input("ENTER YOUR ADDRESS")
v_room_no=input("ENTER YOUR ROOM NUMBER")
v_dept=input("ENTER YOUR DEPARTMENT")
v_fees=input("ENTER YOUR FEES")
v_bal=input("ENTER YOUR BALANCE")
abc=("insert into hostel_management
values("+v_roll+",'"+v_name+"','"+v_add+"',"+v_room_no+",'"+v_
dept+"',"+v_fees+","+v_bal+")")
print(abc)
c1.execute(abc)
conn.commit()elif choice==3:
roll_no=int(input("enter your roll number"))
mysql="select*from hostel_management where roll_no={}".format(roll_no)
c1.execute(mysql)
data=c1.fetchall()
print("roll_no:",data[0][0])
print("name:",data[0][1])
print("address:",data[0][2])

You might also like