Hostel Management System - Satyajeet Bal
Hostel Management System - Satyajeet Bal
bearing Roll No:- 32 has successfully completed his computer science project
the partial fulfillment of the requirement for the AISSCE -2025 Examination.
EXTERNAL EXAMINER
ACKNOWLEDGEMENT
SATYAJIT BAL
XII-‘A’
TABLE OF CONTENTS [ T O C ]
01 ACKNOWLEDGEMENT 03
02 INTRODUCTION 05
04 PROPOSED SYSTEM 06
07 SOURCE CODE 14
08 OUTPUT 19
09 TESTING 20
11 BIBLIOGRAPHY 23
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
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
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
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 production 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
INITIATION PHASE
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.
The purposes of this phase are to:
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
DEVELOPMENT PHASE
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.
OPERATIONS AND MAINTENANCE PHASE
SOURCE CODE
class Hostel:
self.total_rooms = total_rooms
self.student_records = {}
available_room = self.find_available_room()
if available_room is None:
return
self.rooms[available_room] = student_id
self.student_records[student_id] = {"name":
{available_room}.")
return
room = self.student_records[student_id]["room"]
self.rooms[room] = None
del self.student_records[student_id]
print(f"Student {self.student_records[student_id]
def find_available_room(self):
if occupant is None:
return room
return None
def display_rooms(self):
print("Room Status:")
if occupant:
student_name = self.student_records[occupant]
['name']
print(f"Room {room} is occupied by
{student_name}.")
else:
def show_students(self):
if not self.student_records:
else:
self.student_records.items():
# Main functionality
def main():
rooms
while True:
print("1. Check-in")
print("2. Check-out")
print("5. Exit")
choice = input("Enter your choice: ")
hostel.check_in(student_id, student_name)
")
hostel.check_out(student_id)
hostel.display_rooms()
hostel.show_students()
break
else:
if __name__ == "__main__":
main()
OUTPUT
TESTING
Software Testing is an empirical investigation conducted to provide
stakeholders with information about the quality of the product or service under test[1]
, with respect to the context in which it is intended to operate. Software Testing also
provides an objective, independent view of the software to allow the business to
appreciate and understand the risks at implementation of the software. Test
techniques include, but are not limited to, the process of executing a program or
application with the intent of finding software bugs.
It can also be stated as the process of validating and verifying that a software
program/application/product meets the business and technical requirements that
guided its design and development, so that it works as expected and can be
implemented with the same characteristics. Software Testing, depending on the
testing method employed, can be implemented at any time in the development
process, however the most test effort is employed after the requirements have been
defined and coding process has been completed.
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.
Black box testing treats the software as a "black box," without any knowledge
of internal implementation. Black box testing methods include: equivalence
partitioning, boundary value analysis, all-pairs testing, fuzz testing, model-based
testing, traceability matrix, exploratory testing and specification-based testing.
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
SOFTWARE REQUIREMENTS:
I. Windows OS
II. Python
BIBLIOGRAPHY