0% found this document useful (0 votes)
141 views18 pages

Konerulakshmaiah Education Foundation: A Project Based Lab Report On Booking Movie Tickets

This document is a project report submitted by a student for a course on coding technical skills. It outlines the development of an online movie ticket booking system. The system allows customers to purchase tickets and cancel reservations online. It also provides refund functionality by requiring user registration. Staff can manage the system by adding or removing movie data and viewing booking statistics. The project aims to provide a convenient ticket booking service for customers while reducing the workload for staff.
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)
141 views18 pages

Konerulakshmaiah Education Foundation: A Project Based Lab Report On Booking Movie Tickets

This document is a project report submitted by a student for a course on coding technical skills. It outlines the development of an online movie ticket booking system. The system allows customers to purchase tickets and cancel reservations online. It also provides refund functionality by requiring user registration. Staff can manage the system by adding or removing movie data and viewing booking statistics. The project aims to provide a convenient ticket booking service for customers while reducing the workload for staff.
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/ 18

KoneruLakshmaiah Education Foundation

(Deemed to be University)

FRESHMAN ENGINEERING DEPARTMENT


A Project Based Lab Report

On

BOOKING MOVIE TICKETS

SUBMITTED BY:

I.D NUMBER NAME

180040442 CH.JAGADEESH KUMAR

UNDER THE GUIDANCE OF

SARVANI VIEDELA

KL UNIVERSITY
Green fields, Vaddeswaram – 522 502
Guntur Dt., AP, India.
DEPARTMENT OF BASIC ENGINEERING SCIENCES-1

CERTIFICATE

This is to certify that the project based laboratory report entitled


“BOOKING MOVIE TICKETS” submitted by Mr. CH.JAGADEESH KUMAR bearing
Regd. No 180040442 to the Department of Basic Engineering Sciences-1, KL
University in partial fulfillment of the requirements for the completion of a
project based Laboratory in “TECHNICAL SKILLS-1(CODING)”course in I B Tech I
Semester, is a bonafide record of the work carried out by him/her under my
supervision during the academic year 2018 – 2 019.

PROJECT SUPERVISOR HEAD OF THE DEPARTMENT

Sarvani videla Dr. L. SRIDHARA RAO


ACKNOWLEDGEMENTS

It is great pleasure for me to express my gratitude to our honorable


President Sri. Koneru Satyanarayana, for giving the opportunity and platform
with facilities in accomplishing the project based laboratory report.

I express the sincere gratitude to our principal Dr. N.Venkataram for his
administration towards our academic growth.

I express sincere gratitude to HOD-BES-1Dr. L. SridharaRaofor his


leadership and constant motivation provided in successful completion of our
academic semester. I record it as my privilege to deeply thank for providing us
the efficient faculty and facilities to make our ideas into reality.

I express my sincere thanks to our project supervisor <name> for his/her


novel association of ideas, encouragement, appreciation and intellectual zeal
which motivated us to venture this project successfully.

Finally, it is pleased to acknowledge the indebtedness to all those who


devoted themselves directly or indirectly to make this project report success.

Name: CH.JAGADEESH KUMAR Regd.no:180040442


ABSTRACT

Our online E-Ticket System (ETS) is a web-based


system. The customers can buy ticket online and cancel
the seat at a suitable time (2 days before the show to
1hour before the show). To enhance the refund
function, all the customers have to registration become
a member before buying ticket.
Staff can use the system to insert and delete data (e.g.
film description, time table) which will update the
webpage (webpage are dynamic page, changing
according to the data in database). Also, staff can check
the statistic information from the system.
INDEX

S.NO TITLE PAGE NO

1 Introduction <pageno>

2 Aim of the Project <pageno>

2.1 Advantages & Disadvantages <pageno>

2.2 Future Implementation <pageno>

3 Software & Hardware Details <pageno>

4 Data Flow Diagram <pageno>

5 Implementation <pageno>

6 Algorithm <pageno>

7 Integration and System Testing <pageno>

8 Conclusion <pageno>
INTRODUCTION

Goals and Objectives:-


The main purpose of our online ticket booking system
is to provide an alternate and convenient way for a
customer to buy cinema tickets. It is an automatic
system. After the data has been fed into the database,
the staff does not need to do anything with the order
once it is received through the system. In fact, there is
similar system on the internet, but there is no refund
method found in the existing system. The goals of our
system are:
1 To provide a anytime anyplace service for the
customer
2 To minimize the number of staff at the ticket box
3 To promote the film on the internet
4 To increase the profit
5 To obtain statistic information from the booking
record.
AIM
To book movie tickets

Advantages:-
1. Quick to do

2. No need to travel anywhere (to book the tickets)


3. Real time process (if you book a seat, it will automatically
update it so no one else can take that seat. If you used an agent
that did not use computers, they would need to call other
agents saying “Seat X has been taken”)

Disadvantages:-

1. Need internet and PC experience


2. Might need a credit card or some other form of payment
3. Viruses/Trojans online that steal your information

Future enhancements
We can further improve it by making the
program , by which we can order the snacks at
interval, parking token at the movie theater etc..
SYSTEM REQUIREMENTS

 SOFTWARE REQUIREMENTS:

 Operating System :Windows


 Web Server : Tomcat
 Server side Technology : Servlets, JSP
 Client side Technology : HTML, Javascript
 Database : MySQL

 HARDWARE REQUIREMENTS:

The hardware requirements that map towards the


software are as follows:
 Pentium 4 processor
 1 GB RAM
 40 GB Hard Disk Space
Data Flow Diagram
ALGORITHM

Step 1: start
Step 2: press 123 to book your ticket
Step 3: select number of tickets
Step 4: select your row number and coloumn number
Step 5:if row<=3
Ticket cost=100
Else if row>3and row<=7
Ticket cost=80
Else
Ticket cost=50
Step 6: Enter your name
Step 7: Enter your phone number
Step 7:enter movie name
Step 9: collect your ticket
Step 9: Stop
IMPLEMENTATION

#include<stdio.h>
int main()
{
int a[10][10],b,c,d=100,e,f,sum=0,total_sum;

for(b=1;b<=10;b++)
{
for(c=1;c<=10;c++)
{
a[b][c]=1;
}
}
if(d>0)
{
printf("NUMBER 1->SEAT AVAILABLE 0->SEAT NOT
AVAILABLE");
printf(" GOLD=100 RS\n");}
for(b=1;b<=3;b++)
{
for(c=1;c<=10;c++)
{
printf("%d ",a[b][c]);
}
printf("\n");
}
printf(" SILVER=80 RS\n");
for(b=4;b<=7;b++)
{
for(c=1;c<=10;c++)
{
printf("%d ",a[b][c]);
}
printf("\n");
}
printf(" NELA TICKET=50 RS\n");
for(b=8;b<=10;b++)
{
for(c=1;c<=10;c++)
{
printf("%d ",a[b][c]);
}
printf("\n");
}
printf(" ______\n");
printf(" SCREEN\n");
printf("PRESS 123 TO BOOK YOUR TICKET:-");
scanf("%d",&e);
if(e==123)
{
printf("select no. of tickets:-");
scanf("%d",&f);
}
else
{
printf("PROCESS FAILED");

}
if(f<=6)
{
printf("SELECT YOUR ROW AND COLUMN:-");
scanf("%d%d",&b,&c);
}
if(b<=3)
{
sum=sum+100;
}
else if(b>3 && b<=7)
{
sum=sum+80;
}
else
{
sum=sum+50;
}
total_sum=f*sum;
printf("TOTAL PRICE=%d\n",total_sum);
char h[100];
unsigned long long int pn;
char j[100];
printf("USERNAME:-");
scanf("%s",h);
printf("MOBILE NUMBER:-");
scanf("%llu",&pn);
printf("MOVIE NAME:-");
scanf("%s",j);
printf("_______________________________________\n");
printf("----------------TICKET-----------------\n");
printf("USERNAME:-%s\n",h);
printf("MOBILE NUMBER:-%llu\n",pn);
printf("MOVIE NAME:-%s\n",j);
printf("NUMBER OF TICKETS=%d\n",f);
printf("ROW NUMBER=%d\n",b);
printf("COLUMN NUMBER=%d\n",c);
printf("---------------------------------------\n");
printf("AMOUNT=%d\n",total_sum
);
printf("---------THANK YOU-----------------------");
return 0;
}
OUTPUTS
Screen Shots:
CONCLUSION
Nowadays, traditional reservation ways of cinema ticketing
is dying. Its new age where technology dominates human
life. With the software and technological devices,
exceptions are reduced and even terminated. Also, people
prefer easy, quick and safe way for every part of his life.
This project is designed to meet the requirements of a
cinema ticket booking system.
In our project: with this cinema ticketing system; cinema
companies can satisfy comfortable facilities to their customers.
With this platform we developed, we are hoping to reduce time
wasting, avoid misunderstandings, provide easy data flow,
customer pleasure, and less hard work. We believe that we have
accomplished our goals and satisfied with the code we
developed.

********** THANK YOU***********

You might also like