Prachi Comp
Prachi Comp
comPuter Science(083)
claSS: xii- Science(2023-2024)
Submitted to Submitted by
mr. akHil mittal PracHi SHarma
roll no…………..
ACKNOWLEDGEMENT
……………………………..
Certificate
This is to certify that Prachi Sharma of Class
project topic
Hostel Management
System
-----------------------
INDEX
01 ACKNOWLEDGEMENT 04
02 INTRODUCTION 05
04 PROPOSED SYSTEM 06
07 FLOW CHART 15
08 SOURCE CODE 16
09 OUTPUT 19
10 TESTING 20
12 BIBLIOGRAPHY 24
PROJECT ON HOSTEL
MANAGEMENT
INTRODUCTION
students such as his\her roll no. in department they belong to etc. These information
can be stored in the data and can be verified whenever we want this computer
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
5
PROPOSED SYSTEM
Today one cannot afford to rely on the fallible human beings of be really wants
to stand against today’s merciless competition where not to wise saying “to err is
human” no longer valid, it’s out-dated to rationalize your mistake. So, to keep pace
with time, to bring about the best result without malfunctioning and greater efficiency
so to replace the unending heaps of flies with a much sophisticated hard disk of the
computer.
One has to use the data management software. Software has been an ascent
markets, which have helped in making the organizations work easier and efficiently.
Data management initially had to maintain a lot of ledgers and a lot of paperwork has
to be done but now software product on this organization has made their work faster
and easier. Now only this software has to be loaded on the computer and work can be
done.
This prevents a lot of time and money. The work becomes fully automated and
any information regarding the organization can be obtained by clicking the button.
Moreover, now it’s an age of computers of and automating such an organization gives
6
SYSTEM DEVELOPMENT LIFE CYCLE (SDLC)
7
PHASES OF SYSTEM DEVELOPMENT LIFE CYCLE
INITIATION PHASE
8
SYSTEM CONCEPT DEVELOPMENT PHASE
The System Concept Development Phase begins after a business need or opportunity
is validated by the Agency/Organization Program Leadership and the
Agency/Organization CIO.
9
PICTORIAL REPRESENTATION OF SDLC:
PLANNING PHASE
10
REQUIREMENTSANALYSIS PHASE
This phase formally defines the detailed functional user requirements using
high-level requirements identified in the Initiation, System Concept, and Planning
phases. It also delineates the requirements in terms of data, system performance,
security, and maintainability requirements for the system. The requirements are
defined in this phase to a level of detail sufficient for systems design to proceed. They
need to be measurable, testable, and relate to the business need or opportunity
identified in the Initiation Phase. The requirements that will be used to determine
acceptance of the system are captured in the Test and Evaluation Master Plan.
Further define and refine the functional and data requirements and document
them in the Requirements Document,
Complete business process reengineering of the functions to be supported
(i.e., verify what information drives the business process, what information is
generated, who generates it, where does the information go, and who
processes it),
Develop detailed data and process models (system inputs, outputs, and the
process.
Develop the test and evaluation requirements that will be used to determine
acceptable system performance.
DESIGN PHASE
11
components and interfaces, then expand design layouts as they identify and link larger
systems and connections. Contemporary design techniques often use prototyping
tools that build mock-up designs of items such as application screens, database
layouts, and system architectures.
End users, designers, developers, database managers, and network
administrators should review and refine the prototyped designs in an iterative process
until they agree on an acceptable design. Audit, security, and quality assurance
personnel should be involved in the review and approval process. During this phase,
the system is designed to satisfy the functional requirements identified in the previous
phase. Since problems in the design phase could be very expensive to solve in the
later stage of the software development, a variety of elements are considered in the
design to mitigate risk.
These include:
12
DEVELOPMENT PHASE
13
Testing as a deployed system with end users working together with contract
personnel
IMPLEMENTATION PHASE
This phase is initiated after the system has been tested and accepted by the
user. In this phase, the system is installed to support the intended business functions.
System performance is compared to performance objectives established during the
planning phase. Implementation includes user notification, user training, installation of
hardware, installation of software onto production computers, and integration of the
system into daily work processes. This phase continues until the system is operating
in production in accordance with the defined user requirements.
14
FLOW CHART
start
CHOICE=INT
(INPUT
(“ENTER
THE
CHOICE”))
IF
CHOICE==1:
15
print(abc)
Elif:
Choice=2;
mysql="select*from
hostel_management where
roll_no={}".format(roll_no)
print("roll_no:",data[0][0])
print("name:",data[0][1])
print("address:",data[0][2])
print("room_no:",data[0][3])
print("dept:",data[0][4])
print("fees:",data[0][5])
16
elif
choice==2:
print("1.COMPUTER")
print("2.BIO")
print("3.TECH")
print("4.PHYSICS")
print("5.ECO")
print("6.ENG")
department=input("ENTER YOUR
DEPARTMENT")
data=c1.fetchall()
17
elif :
choice==4:
print("your fees
is:",data[0][1])
print( "SORRY,YOU
ARE NOT AUTHORIZED
TO USE THIS SITE ")
else:
print("QUITTING!!!!!!!!!")
stop
18
SOURCE CODE
conn=sql.connect(host='localhost',user='root',passwd='admin@12
3',database='hostel_management')
conn.autocommit=True
if conn.is_connected():
print('connected succesfully')
else:
print('not connected')
c1=conn.cursor()
print("1.ADMISSION FORM")
print("2.FEE CHECKING")
print(“3.MODIFY DATA")
print("4.EXIT")
if choice==1:
19
v_room_no=input("ENTER YOUR ROOM NUMBER")
("+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={}".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])
print("room_no:",data[0][3])
print("dept:",data[0][4])
print("fees:",data[0][5])
print("bal:",data[0][6])
elif choice==2:
print("1.COMPUTER")
20
print("2.BIO")
print("3.TECH")
print("4.PHYSICS")
print("5.ECO")
print("6.ENG")
department='{}'".format(department)
c1.execute(mysql)
data=c1.fetchall()
else:
print("QUITTING!!!!!!!!!")
21
OUTPUT
22
TESTING
23
TESTING METHODS
Software testing methods are traditionally divided into black box testing and
white box testing. These two approaches are used to describe the point of view that
a test engineer takes when designing test cases.
SPECIFICATION-BASED TESTING
Specification-based testing aims to test the functionality of software according
to the applicable requirements.[16] Thus, the tester inputs data into, and only sees the
output from, the test object. This level of testing usually requires thorough test cases
to be provided to the tester, who then can simply verify that for a given input, the output
value (or behaviour), either "is" or "is not" the same as the expected value specified in
the test case. Specification-based testing is necessary, but it is insufficient to guard
against certain risks
24
WHITE BOX TESTING
White box testing, by contrast to black box testing, is when the tester has
access to the internal data structures and algorithms (and the code that implement
these)
White box testing methods can also be used to evaluate the completeness of a
test suite that was created with black box testing methods. This allows the software
team to examine parts of a system that are rarely tested and ensures that the most
important function points have been tested.
25
HARDWARE AND SOFTWARE REQUIREMENTS
SOFTWARE REQUIREMENTS:
I. Windows OS
II. Python
26
BIBLIOGRAPHY
REMARKS: ……………………………….