JAI Parking Management Project File Class 12
JAI Parking Management Project File Class 12
S INTERNATIONAL SCHOOL,
SECTOR -50, GURUGRAM
PROJECT REPORT ON
ROLL NO :
NAME : JAI
CLASS : XII
SUBJECT : COMPUTER SCIENCE
SUB CODE : 083
1
R.P.S INTERNATIONAL SCHOOL,
SECTOR-50, GURUGRAM
CERTIFICATE
2
INDEX
01 ACKNOWLEDGEMENT 04
02 INTRODUCTION 05
04 PROPOSED SYSTEM 06
07 SOURCE CODE 17
08 OUTPUT 22
09 TESTING 24
11 BIBLIOGRAPHY 28
3
ACKNOWLEDGEMENT
as well as our principal Dr. Pooja Sharma who gave me the golden opportunity to do
this wonderful project on the topic Parking Management System , which also helped
me in doing a lot of Research and I came to know about so many new things. I am
thankful to them.
Secondly, I would also like to thank my parents and friends who helped me a lot
4
PROJECT ON PARKING MANAGEMENT
SYSTEM
INTRODUCTION
This project is all about a software for Parking Management System. It helps the
Parking owner to have a full-fledged control over his/her vehicles parked. It adds a
new car parked record, updates an existing record, and manage the records.
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
5. Students will demonstrate ability to conduct research or applied Computer
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 outdated 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 must use the data management software. Software has been an ascent in
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 must
be done but now software product on this organization has made their work faster and
easier. Now only this software must 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)
divides complex projects into smaller, more easily managed segments or phases.
planning phases. End users of the system under development should be involved in
7
reviewing the output of each phase to ensure the system is being built to deliver the
needed functionality.
INITIATION PHASE
opportunity.
need, including questioning the need for technology, i.e., will a change in the
Proposal. The Concept Proposal includes information about the business process
Project Management Charter which outlines the authority of the project manager
8
Careful oversight is required to ensure projects support strategic business
business case. The business case should, at a minimum, describe a proposal’s purpose,
identify expected benefits, and explain how the proposed system supports one of the
organization’s business strategies. The business case should also identify alternative
possible.
Agency/Organization CIO.
Identify basic functional and data requirements to satisfy the business need.
functional requirements.
9
Identify and initiate risk mitigation actions, and develop high-level technical
phase explores potential technical solutions within the context of the business
need.
It may include several trade-off decisions such as the decision to use COTS
one-time deployment.
The ITPR must be approved by the State CIO before the project can move
forward.
10
PLANNING PHASE
acquisition, and maintenance projects. Careful planning, particularly in the early stages
The depth and formality of project plans should be commensurate with the
characteristics and risks of a given project. Project plans refine the information
gathered during the initiation phase by further identifying the specific activities and
user, audit, security, design, development, and network personnel to identify and
this phase, a plan is developed that documents the approach to be used and includes a
discussion of methods, tools, tasks, resources, project schedules, and user input.
Personnel assignments, costs, project schedule, and target dates are established.
management planning.
This phase formally defines the detailed functional user requirements using
11
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
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
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
DESIGN PHASE
The design phase involves converting the informational, functional, and network
requirements identified during the initiation and planning phases into unified design
specifications that developers use to script programs during the development phase.
designers first identify and link major program components and interfaces, then expand
design layouts as they identify and link smaller subsystems and connections. Using a
12
bottom-up approach, designers first identify and link minor program 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
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
Preparing detailed logic specifications for each software module. The result is a
draft System Design Document which captures the preliminary design for the
system.
user. Once these documents have been approved by the Agency CIO and Business
13
Sponsor, the final System Design Document is created to serve as the
with the development of the system design, the Agency Project Manager begins
DEVELOPMENT PHASE
completion of the previous stages is a key factor in the success of the Development
14
INTEGRATION AND TEST PHASE
conducted during the integration and test phase. The user, with those responsible
for quality assurance, validates that the functional requirements, as defined in the
system. OIT Security staff assess the system security and issue a security
end users.
Testing as a deployed system with end users working together with contract
personnel.
Operational testing by the end user alone performing all functions. Requirements
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
15
system into daily work processes. This phase continues until the system is operating in
respond to the organization’s needs. When modifications or changes are identified, the
16
SOURCE CODE
import mysql.connector
mydb=mysql.connector.connect(host="localhost",user="root",password="1234",database='parking')
mycursor=mydb.cursor()
mysqlquery= 'create table parkmaster12(pid int(8) primary key,pnm varchar(30) not null,level varchar(30) not
null,freespace varchar(30)not null,vehicleno varchar(30) not null,nod varchar(30) not null, payment int(5) not
null);'
mycursor.execute(mysqlquery)
quer2='create table vehicle(vid int(8) primary key,vnm varchar(30) not null,dateofpur date);'
mycursor.execute(quer2)
import os
import platform
import mysql.connector
mydb=mysql.connector.connect(host="localhost",user="root",password="1234",database='parking')
mycursor=mydb.cursor()
def Add_Record():
L=[]
L.append(id1)
L.append(pname1)
L.append(level1)
L.append(freespace1)
L.append(vehicleno1)
L.append(nod1)
17
if nod1==1:
Payment1=20
elif nod1==2:
Payment1=40
elif nod1==3:
Payment1=60
elif nod1==4:
Payment1=80
elif nod1==5:
Payment1=100
elif nod1==6:
Payment1=6969
L.append(Payment1)
stud=(L)
mycursor.execute(sql,stud)
mydb.commit()
def Rec_View():
print("4. All")
if ch==1:
rl=(s,)
18
mycursor.execute(sql,rl)
res=mycursor.fetchall()
elif ch==2:
rl=(s,)
mycursor.execute(sql,rl)
res=mycursor.fetchall()
elif ch==3:
rl=(s,)
mycursor.execute(sql,rl)
res=mycursor.fetchall()
elif ch==4:
mycursor.execute(sql)
res=mycursor.fetchall()
for x in res:
print(x)
def Vehicle_Detail():
L=[]
L.append(vid1)
L.append(vnm1)
19
dateofpur1=input("Enter Year-Month-date of purchase : ")
L.append(dateofpur1)
vdt=(L)
mycursor.execute(sql,vdt)
mydb.commit()
def Vehicle_View():
vid1=int(input("Enter the vehicle number of the vehicle whose details is to be viewed : "))
rl=(vid1,)
mycursor.execute(sql,rl)
res=mycursor.fetchall()
for x in res:
print(x)
print('Task compelted')
def remove():
rl=(vid1,)
mycursor.execute(sql,rl)
mydb.commit()
def Menu():
20
input_dt = int(input("Please Select An Above Option: "))
if(input_dt== 1):
Add_Record()
elif (input_dt==2):
Rec_View()
elif (input_dt==3):
Vehicle_Detail()
elif (input_dt==4):
remove()
elif (input_dt==5):
Vehicle_View()
else:
Menu()
def runAgain():
while(runAgn.lower()=='y'):
if(platform.system()=='Windows'):
print(os.system('cls'))
else:
print(os.system('clear'))
Menu()
runAgain()
21
OUTPUT
22
23
TESTING
Software Testing is an empirical investigation conducted to provide stakeholders
with information about the quality of the product or service under test, with respect to
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
It can also be stated as the process of validating and verifying that a software
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
24
Black box testing treats the software as a "black box," without any knowledge of
boundary value analysis, all-pairs testing, fuzz testing, model-based testing, traceability
SPECIFICATION-BASED TESTING
the applicable requirements. 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 black box tester has no "bonds" with the code, and a tester's perception is
very simple: a code must have bugs. Using the principle, "Ask and you shall receive,"
black box testers find bugs where programmers don't. But, on the other hand, black box
testing has been said to be "like a walk in a dark labyrinth without a flashlight,"
because the tester doesn't know how the software being tested was constructed.
That's why there are situations when (1) a black box tester writes many test cases
to check something that can be tested by only one test case, and/or (2) some parts of
the back end are not tested at all. Therefore, black box testing has the advantage of "an
25
unaffiliated opinion," on the one hand, and the disadvantage of "blind exploring," on
the other.
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)
api testing - Testing of the application using Public and Private APIs.
For example, the test designer can create tests to cause all statements in the
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
26
Statement Coverage: Which reports on the number of lines executed to
4. RAM :512MB+
9. Printer :required
SOFTWARE REQUIREMENTS:
I. Windows OS
II. Python
III. MySQL
27
BIBLIOGRAPHY
2. Website: https://www.youtube.com
28