SlideShare ist ein Scribd-Unternehmen logo
1 von 83
Downloaden Sie, um offline zu lesen
SISHYA SCHOOL, HOSUR.
Certificate
This is to certify that
Master/Miss_____________________________________________________________,
student of class XII, Sishya School, Hosur., has successfully completed the project titled
_______________________________________________________________________
during the academic year 2016– 17 towards partial fulfillment of credit for the Computer
Science practical evaluation of AISSCE – 2016 – 17 under my supervision.
Date:________________________.
P.BHUVANESHWARI
Department of Science
Sishya School, Hosur.
Name of the Candidate :_________________________
Register Number :_________________________
Examination Centre : Sishya School, Hosur.
Date of Practical Examination : _________________________
Internal Examiner External Examiner
School Seal
1
INDEX
 ACKNOWLEDGEMENT.................................... 2
 OVERVIEW OF C++........................................ 3
 MAJOR C++ ENHANCEMENTS....................... 4
 OVERVIEW OF PROJECT............................... 5
 HEADER FILES ............................................. 8
 FUNCTIONS USED....................................... 8
 CLASSES USED.............................................. 10
 DATA FILES USED........................................ 10
 HARDWARE AND SOFTWARE
REQUIREMENTS........................................... 12
 SOURCE CODE............................................. 13
 SAMPLE OUTPUT......................................... 73
 CONCLUSION.............................................. 79
 BIBILIOGRAPHY......................................... 80
 END PAGE.................................................... 81
2
ACKNOWLEDGEMENT
This is our time to thank everyone who has
been a part of this project.
First, we show our sincere gratitude
towards our beloved Principal and
correspondent Dr.VasanthiThiagarajan,
who provided this opportunity to us.
Also, I am thankful to my partners,
Vishal.A and M.P.Yeshwanth, and my
parents who had given me their valuable
guidance and support.
Finally, we are much obliged to the
Central Board of Secondary Education
(CBSE) and our school management for
providing us such an opportunity and
proper facilities to proceed with our
thoughts and to complete it successfully...!
3
OVERVIEW OF C++
C++ was designed at AT&T Bell Labs by
BjarneStroustrup in the early 80’s.
The original cfront translated C++ into C
for portability.
However this was difficult to debug and
potentially in-efficient.
Many native host machine compilers now
exist.
Example: Microsoft Visual C++, GCC, Intel
etc…
C++ is mostly upwardly compatible
extension of C that provides.
Support for Data abstraction.
Support for generic programming.
Support for object oriented programming.
Stronger type checking.
4
MAJOR C++
ENHANCEMENTS
 C++ supports for data abstraction and
data encapsulation.
E.g.: Classes and name spaces
 C++ supports OOPS features.
E.g.: Abstract class inheritance and virtual
methods.
 C++ supports generic programming.
E.g.: parameterized types
 C++ supports sophisticated error handling
E.g.: Exceptional handling
 C++ supports identifying an object’s type at
runtime.
5
OVERVIEW OF THE PROJECT
Movie is considered the world all over by
many as an important art form. Movies
entertain, educate, enlighten and inspire
audiences. The visual elements of cinema
need no translation, giving the motion
picture a universal power of
communication.
Role of an IVR System
The problems faced in the
present scenario can be solved by the
deployment of an interactive voice
response (IVR) system to automate the
ticket reservations for movies and other
shows. This can replace labor-intensive
manual activities. The new system can
streamline and standardize the ticket
reservation process at a substantial cost
savings.
IVR based automated ticket reservation
6
systems in theatres using ordinary phones
are becoming very popular and affordable
these days. Instead of relying on word of
mouth or publications which are quickly
out of date and expensive, automatic
phone messaging lets you contact the right
point and get most accurate information
instantly!
There can be two scenarios where an IVR
system can be implemented for the
reservation of tickets for movies and other
shows. One, an agency can make use of an
IVR system to provide ticket reservations for
currently running movies in a particular
area. Two, a theatre management can
implement an IVR system for reserving the
tickets.
Advantages of an IVR System
 Automatically handle every call from
customers.
7
 Answer calls on the first ring, 7 days a
week, 24 hours a day.
 Speak to callers in human tone of voice.
 Optional multi-lingual prompts.
 Provide accurate and reliable
information, up to date.
 Resources your present personnel for more
productive work.
 Avoids viewer disappointments.
 Smoothens the ticket reservation process
thereby clearing unnecessary traffic jams.
Some Popular Online Movie Ticket Booking
Sites:
8
HEADER FILES USED:-
#include<string.h>
#include<stdio.h>
#include<stdlib.h>
#include<graphics.h>
#include<iostream.h>
#include<conio.h>
#include<dos.h>
#include<fstream.h>
FUNCTIONS USED:-
void mainmenu();
void crfile();
void pass();
void disp();
void owner();
void user();
void seat(char r);
void tq();
9
void bill1(char r,char row1[1],char
col1[1],char cl);
void bill2(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
cl);
void bill3(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char cl);
void bill4(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char
row4[1],char col4[1],char cl);
 void bill5(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char
row4[1],char col4[1],char
row5[1],char col5[1],char cl);
10
CLASSES USED:-
1.
class Movie
{
private:
char movnam[20];
char movlang[10];
char cast[20];
public:
char movid[8];
void input();
void output();
char retmona()
{
puts(movnam);
}
11
};
2.
class pvr
{
private:
int i,j,k,a,c;
public:
void intro();
void menu();
void name();
};
DATA FILES USED:-
1.
“MOVIE.TXT”.
12
HARDWARE AND SOFTWARE
REQUIREMENTS
HARDWARE REQUIREMENTS:-
->> Monitor
->> Keyboard
->> Mouse
->> Central Processing Unit
->> Minimum of 40 GB hard disk
SOFTWARE REQUIREMENTS:-
->> Turbo C++ IDE
->> Windows Operating System
13
SOURCE CODE
#include<string.h>
#include<stdio.h>
#include<stdlib.h>
#include<graphics.h>
#include<iostream.h>
#include<conio.h>
#include<dos.h>
#include<fstream.h>
void mainmenu();
void crfile();
void pass();
void disp();
void owner();
void user();
void seat(char r);
void tq();
14
void bill1(char r,char row1[1],char
col1[1],char cl);
void bill2(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char cl);
void bill3(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char cl);
void bill4(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char row4[1],char
col4[1],char cl);
void bill5(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char row4[1],char
col4[1],char row5[1],char col5[1],char cl);
int u;
class Movie
{
private:
char movnam[20];
char movlang[10];
15
char cast[20];
public:
char movid[8];
void input();
void output();
char retmona()
{
puts(movnam);
}
};
Movie ob1[10];
void Movie::input()
{
cleardevice();
16
randomize();
for(int i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
settextstyle(6,0,4);
setcolor(WHITE);
outtextxy(130,20,"Owners Page...");
settextstyle(3,0,2);
setcolor(CYAN);
outtextxy(30,60,"Enter Details Of Movie");
setcolor(10);
settextstyle(3,0,3);
outtextxy(30,83,"Movie ID:");
gotoxy(20,7);
gets(movid);
setcolor(11);
settextstyle(3,0,3);
17
outtextxy(30,115,"Movie Name:");
gotoxy(25,9);
gets(movnam);
setcolor(12);
settextstyle(3,0,3);
outtextxy(30,147,"Movie Language:");
gotoxy(28,11);
gets(movlang);
setcolor(13);
settextstyle(3,0,3);
outtextxy(30,179,"Cast:");
gotoxy(15,13);
gets(cast);
}
void Movie::output()
{
cleardevice();
randomize();
for(int i=0;i<=1100;i++)
{
18
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
settextstyle(6,0,4);
setcolor(WHITE);
outtextxy(130,20,"Users Page...");
settextstyle(3,0,2);
setcolor(CYAN);
outtextxy(30,60,"Details Of Movie");
setcolor(10);
settextstyle(3,0,3);
outtextxy(30,80,"Movie ID:");
outtextxy(200,80,movid);
setcolor(11);
settextstyle(3,0,3);
outtextxy(30,100,"Movie Name:");
outtextxy(200,100,movnam);
setcolor(12);
settextstyle(3,0,3);
19
outtextxy(30,120,"Movie Language:");
outtextxy(250,120,movlang);
setcolor(13);
settextstyle(3,0,3);
outtextxy(30,140,"Cast:");
outtextxy(150,140,cast);
}
void crfile()
{
ofstream f;
char ch;
f.open("MOVIE.txt",ios::out);
int u=0;
sleep(3);
do
{
ob1[u].input();
f.write((char*)&ob1[u],sizeof(ob1[u]));
cleardevice();
20
outtextxy(50,200,"Do You Want To
Continue???(y/(any other key))");
ch=getch();
u++;
}while(ch=='y'||ch=='Y');
f.close();
}
void disp()
{
ifstream f;
f.open("MOVIE.txt",ios::in);
f.seekg(0);
u=0;
char ch;
do
{
f.read((char*)&ob1[u],sizeof(ob1[u]));
ob1[u].output();
outtextxy(50,500,"Press 'y' To View
Details Of Next Film");
ch=getch();
21
cleardevice();
u++;
}while(ch=='y'||ch=='Y');
f.close();
}
void pass()
{
l:
cleardevice();
char pass[100],p[1];
settextstyle(6,0,5);
setcolor(WHITE);
outtextxy(150,30,"OWNER'S PAGE...");
settextstyle(5,0,3);
setcolor(GREEN);
outtextxy(30,115,"Enter Password...");
outtextxy(10,300,"Press 'Esc' To Go Back To
Main Menu...");
char c;
int e;
22
for(int t=0,y=250;;t++,y=y+10)
{
c=getch();
e=c;
if(e==13)
{
goto ll;
}
if(e==27)
{
exit(1);
}
pass[t]=c;
outtextxy(y,118,"*");
}
ll:
for(t=0;t<9;t++)
{
p[t]=pass[t];
}
23
if(strcmp(p,"blacksavy")==0)
{
setcolor(LIGHTMAGENTA);
settextstyle(7,0,5);
outtextxy(100,240,"Login Successful...");
sleep(2);
owner();
}
else
{
setcolor(4);
outtextxy(100,240,"Login Aborted...
Incorrect Password...");
sleep(3);
goto l;
}
}
class pvr
{
private:
24
int i,j,k,a,c;
public:
void intro();
void menu();
void name();
};
void pvr::intro()
{
cleardevice();
setcolor(3);
settextstyle(5,0,7);
for(k=1;k<=90;k++)
{
cleardevice();
outtextxy(105,k,"WELCOME TO");
delay(25);
}
25
outtextxy(124,150,"*****************");
settextstyle(5,0,4);
setcolor(WHITE);
outtextxy(120,250," FIVE STAR MOVIES ");
setcolor(10);
outtextxy(117,300,"**************************
****");
delay(50);
for(i=6;i<=500;i=i+30)
{
for(j=0;j<=10;j++)
{
setcolor (i+j);
circle(35,i,j+20);
circle(605,i,j+20);
delay(35);
}
}
for(i=5;i<=630;i=i+10)
{
26
for(j=0;j<=5;j=j+1)
{
setcolor(j);
circle(i,460,j+15);
circle(i,460,j+1);
circle(i,20,j+15);
circle(i,20,j+1);
delay(10);
}
}
}
void pvr::name()
{
cleardevice();
randomize();
for(int i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
27
delay(5);
}
for(i=0;i<=40;i++)
{
setcolor(i);
circle(65,40,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,140,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,240,i);
delay(10);
}
28
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,340,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,440,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(165,440,i);
delay(10);
}
for( i=0;i<=40;i++)
{
29
setcolor(i);
circle(265,440,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(365,440,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(465,440,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,440,i);
30
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,340,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,240,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,140,i);
delay(10);
}
31
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,40,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(465,40,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(365,40,i);
delay(10);
}
for( i=0;i<=40;i++)
{
32
setcolor(i);
circle(265,40,i);
delay(10);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(165,40,i);
delay(10);
}
settextstyle(7,0,3);
setcolor(11);
outtextxy(260,100,"PROJECT BY :-)");
setcolor(14);
outtextxy(250,130,"********************");
settextstyle(7,0,4);
setcolor(10);
outtextxy(100,260,"*** KAARTHIK
***");
sleep(3);
33
}
void pvr::menu()
{
cleardevice();
randomize();
for(i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
for(i=0;i<=40;i++)
{
setcolor(i);
circle(65,40,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,140,i);
34
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,240,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,340,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,440,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(165,440,i);
35
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(265,440,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(365,440,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(465,440,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,440,i);
36
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,340,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,240,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,140,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,40,i);
37
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(465,40,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(365,40,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(265,40,i);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(165,40,i);
38
}
settextstyle(4,0,7);
setcolor(6);
outtextxy(150,150,"WELCOME");
setcolor(14);
sleep(2);
cleardevice();
randomize();
for(int ij=1;ij<=40;ij++)
{
delay(50);
cleardevice();
for(i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
settextstyle(4,0,7);
outtextxy(150,150,"Loading...");
39
}
sleep(1);
cleardevice();
settextstyle(5,0,5);
setcolor(3);
outtextxy(100,100,"Hit Any Key To
Continue...");
getch();
}
void mainmenu()
{
y:
int n;
cleardevice();
char h[1];
for(int i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
40
settextstyle(6,0,5);
setcolor(11);
outtextxy(200,30,"MAIN MENU...");
settextstyle(4,0,6);
setcolor(12);
outtextxy(100,100,"1.OWNER'S PAGE");
setcolor(LIGHTGREEN);
outtextxy(100,200,"2.USERS'S PAGE");
setcolor(LIGHTCYAN);
outtextxy(100,300,"3.EXIT");
gets(h);
if(strcmp(h,"1")==0)
{
pass();
}
else if(strcmp(h,"2")==0)
{
user();
}
else if(strcmp(h,"3")==0)
41
{
exit(1);
}
else
{
goto y;
}
}
void owner()
{
pvr p;
crfile();
t:
cleardevice();
for(int i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
42
settextstyle(6,0,5);
outtextxy(50,200,"Press 'Esc' To Return To
Main Menu");
char a;
int u;
a=getch();
u=a;
if(u==27)
{
mainmenu();
}
else
{
goto t;
}
}
void user()
{
int e;
char q[1],m[1];
43
cleardevice();
for(int i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
settextstyle(6,0,5);
setcolor(WHITE);
outtextxy(150,30,"USER'S PAGE...");
settextstyle(6,0,3);
outtextxy(75,100,"View Different Movies By
Using 'y' Key...");
outtextxy(75,150,"Note Down The Movie Id Of
The Movie That You");
outtextxy(75,200,"Wish To Watch...");
outtextxy(75,250,"Press 'Esc' Go To Main
Menu...");
sleep(5);
cleardevice();
disp();
44
sleep(2);
settextstyle(3,0,4);
setcolor(CYAN);
outtextxy(100,179,"Enter Id Of Desired
Movie...");
gotoxy(15,45);
gets(q);
cleardevice();
ifstream ff;
ff.open("MOVIE.txt",ios::in);
ff.seekg(0);
int ch;
settextstyle(3,0,3);
setcolor(CYAN);
for(int t=0;t<u;t++)
{
ff.read((char*)&ob1[u],sizeof(ob1[u]));
if(strcmp(q,ob1[t].movid)==0)
{
outtextxy(80,100,"Details Of ");
45
gotoxy(10,10);
ob1[t].retmona();
ob1[u].output();
outtextxy(100,200,"Hit 'Enter' To
Proceed To Seat Selection...");
ch=getch();
}
}
ff.close();
if(ch==13)
{
char q;
char a[100],b[2];
cleardevice();
outtextxy(50,100,"Enter Number Of
Seats(Max. 5)...");
q=getch();
seat(q);
}
else
{
46
exit(1);
}
}
void seat(char r)
{
cleardevice();
outtextxy(50,200,"Note Down The Seat Number
And Press Any Key...");
settextstyle(3,0,4);
setcolor(RED);
sleep(3);
cleardevice();
outtextxy(500,20,"| EXIT |");
outtextxy(500,375,"| EXIT |");
setcolor(WHITE);
outtextxy(70,370," SCREEN ");
outtextxy(25,375,"|___________________|");
setcolor(CYAN);
outtextxy(24,50,"____________________");
47
outtextxy(25,80,"|A1|A2|A3|A4|A5|A6|A7|A8|A9|
");
outtextxy(24,90,"____________________");
outtextxy(24,100,"___________________");
outtextxy(28,130,"|B1|B2|B3|B4|B5|B6|B7|B8|B9
|");
outtextxy(24,140,"___________________");
outtextxy(28,150,"___________________");
outtextxy(25,180,"|C1|C2|C3|C4|C5|C6|C7|C8|C9
|");
outtextxy(28,190,"___________________");
outtextxy(24,200,"___________________");
outtextxy(25,230,"|D1|D2|D3|D4|D5|D6|D7|D8|D9
|");
outtextxy(24,240,"___________________");
outtextxy(24,250,"__________________");
outtextxy(25,280,"|E1|E2|E3|E4|E5|E6|E7|E8|E9
|");
48
outtextxy(24,290,"__________________");
getch();
char
row1[1],col1[1],row2[1],col2[1],row3[1],col3[
1],row4[1],col4[1],row5[1],col5[1],cl;
cleardevice();
settextstyle(4,0,3);
setcolor(CYAN);
if(r=='0')
{
outtextxy(50,100,"No Seats
Available!!!");
getch();
exit(1);
}
if(r=='1')
{
outtextxy(50,50,"Select Row(A-E):->");
gets(row1);
outtextxy(50,100,"Select Column(1-9):-
>");
49
gets(col1);
outtextxy(50,150,"Gold Class(g) or
Platinum Class(p)");
cl=getch();
bill1(r,row1,col1,cl);
}
if(r=='2')
{
outtextxy(50,50,"Select Row(A-E) For
Seat-1:->");
gets(row1);
outtextxy(50,100,"Select Column(1-9) For
Seat-1:->");
gets(col1);
setcolor(MAGENTA);
outtextxy(50,150,"Select Row(A-E) For
Seat-2:->");
gets(row2);
outtextxy(50,200,"Select Column(1-9) For
Seat-2:->");
gets(col2);
50
outtextxy(50,250,"Gold Class(g) or
Platinum Class(p)");
cl=getch();
bill2(r,row1,col1,row2,col2,cl);
}
if(r=='3')
{
outtextxy(50,50,"Select Row(A-E) For
Seat-1:->");
gets(row1);
outtextxy(50,100,"Select Column(1-9) For
Seat-1:->");
gets(col1);
setcolor(MAGENTA);
outtextxy(50,150,"Select Row(A-E) For
Seat-2:->");
gets(row2);
outtextxy(50,200,"Select Column(1-9) For
Seat-2:->");
gets(col2);
setcolor(YELLOW);
51
outtextxy(50,250,"Select Row(A-E) For
Seat-3:->");
gets(row3);
outtextxy(50,300,"Select Column(1-9) For
Seat-3:->");
gets(col3);
outtextxy(50,350,"Gold Class(g) or
Platinum Class(p)");
cl=getch();
bill3(r,row1,col1,row2,col2,row3,col3,cl);
}
if(r=='4')
{
outtextxy(50,50,"Select Row(A-E) For
Seat-1:->");
gets(row1);
outtextxy(50,100,"Select Column(1-9) For
Seat-1:->");
gets(col1);
setcolor(MAGENTA);
52
outtextxy(50,150,"Select Row(A-E) For
Seat-2:->");
gets(row2);
outtextxy(50,200,"Select Column(1-9) For
Seat-2:->");
gets(col2);
setcolor(YELLOW);
outtextxy(50,250,"Select Row(A-E) For
Seat-3:->");
gets(row3);
outtextxy(50,300,"Select Column(1-9) For
Seat-3:->");
gets(col3);
cleardevice();
setcolor(GREEN);
outtextxy(50,50,"Select Row(A-E) For
Seat-4:->");
gets(row4);
outtextxy(50,100,"Select Column(1-9) For
Seat-4:->");
gets(col4);
53
outtextxy(50,150,"Gold Class(g) or
Platinum Class(p)");
cl=getch();
bill4(r,row1,col1,row2,col2,row3,col3,row4,co
l4,cl);
}
if(r=='5')
{
outtextxy(50,100,"Select Row(A-E) For
Seat-1:->");
gets(row1);
outtextxy(50,150,"Select Column(1-9) For
Seat-1:->");
gets(col1);
setcolor(MAGENTA);
outtextxy(50,200,"Select Row(A-E) For
Seat-2:->");
gets(row2);
outtextxy(50,250,"Select Column(1-9) For
Seat-2:->");
gets(col2);
54
setcolor(YELLOW);
outtextxy(50,300,"Select Row(A-E) For
Seat-3:->");
gets(row3);
outtextxy(50,350,"Select Column(1-9) For
Seat-3:->");
gets(col3);
cleardevice();
setcolor(GREEN);
outtextxy(50,50,"Select Row(A-E) For
Seat-4:->");
gets(row4);
outtextxy(50,100,"Select Column(1-9) For
Seat-4:->");
gets(col4);
setcolor(BROWN);
outtextxy(50,150,"Select Row(A-E) For
Seat-5:->");
gets(row5);
outtextxy(50,200,"Select Column(1-9) For
Seat-5:->");
gets(col5);
55
outtextxy(50,250,"Gold Class(g) or
Platinum Class(p)");
bill5(r,row1,col1,row2,col2,row3,col3,row4,co
l4,row5,col5,cl);
}
}
void bill1(char r,char row1[1],char
col1[1],char cl)
{
cleardevice();
int rs;
settextstyle(3,0,3);
setcolor(CYAN);
outtextxy(50,20,"-----FIVE STAR MOVIES-----
");
outtextxy(50,50," ---BILL---
");
outtextxy(100,85,"Number Of Seats: ");
gotoxy(40,7);
printf("%d",(r-48));
outtextxy(105,110,"Seat Numbers: ");
56
outtextxy(290,110,row1);
outtextxy(305,110,col1);
outtextxy(100,150,"Cost Per Ticket...");
if(cl=='g')
{
rs=(r-48)*300;
outtextxy(300,150," Rs.300");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
if(cl=='p')
{
rs=(r-48)*500;
outtextxy(300,150," Rs.500");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
outtextxy(50,250,"----------------------");
57
getch();
tq();
}
void bill2(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char cl)
{
cleardevice();
int rs;
settextstyle(3,0,3);
setcolor(CYAN);
outtextxy(50,20,"-----FIVE STAR MOVIES-----
");
outtextxy(50,50," ---BILL---
");
outtextxy(100,85,"Number Of Seats: ");
gotoxy(40,7);
printf("%d",(r-48));
outtextxy(105,110,"Seat Numbers: ");
outtextxy(290,110,row1);
outtextxy(305,110,col1);
outtextxy(330,110,row2);
58
outtextxy(345,110,col2);
outtextxy(100,150,"Cost Per Ticket...");
if(cl=='g')
{
rs=(r-48)*300;
outtextxy(300,150," Rs.300");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
if(cl=='p')
{
rs=(r-48)*500;
outtextxy(300,150," Rs.500");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
outtextxy(50,250,"----------------------");
getch();
59
tq();
}
void bill3(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char cl)
{
cleardevice();
int rs;
settextstyle(3,0,3);
setcolor(CYAN);
outtextxy(50,20,"-----FIVE STAR MOVIES-----
");
outtextxy(50,50," ---BILL---
");
outtextxy(100,85,"Number Of Seats: ");
gotoxy(40,7);
printf("%d",(r-48));
outtextxy(105,110,"Seat Numbers: ");
outtextxy(290,110,row1);
outtextxy(305,110,col1);
outtextxy(330,110,row2);
60
outtextxy(345,110,col2);
outtextxy(370,110,row3);
outtextxy(385,110,col3);
outtextxy(100,150,"Cost Per Ticket...");
if(cl=='g')
{
rs=(r-48)*300;
outtextxy(300,150," Rs.300");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
if(cl=='p')
{
rs=(r-48)*500;
outtextxy(300,150," Rs.500");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
61
outtextxy(50,250,"----------------------");
getch();
tq();
}
void bill4(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char row4[1],char
col4[1],char cl)
{
cleardevice();
int rs;
settextstyle(3,0,3);
setcolor(CYAN);
outtextxy(50,20,"-----FIVE STAR MOVIES-----
");
outtextxy(50,50," ---BILL---
");
outtextxy(100,85,"Number Of Seats: ");
gotoxy(40,7);
printf("%d",(r-48));
outtextxy(105,110,"Seat Numbers: ");
62
outtextxy(290,110,row1);
outtextxy(305,110,col1);
outtextxy(330,110,row2);
outtextxy(345,110,col2);
outtextxy(370,110,row3);
outtextxy(385,110,col3);
outtextxy(410,110,row4);
outtextxy(425,110,col4);
outtextxy(100,150,"Cost Per Ticket...");
if(cl=='g')
{
rs=(r-48)*300;
outtextxy(300,150," Rs.300");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
if(cl=='p')
{
rs=(r-48)*500;
63
outtextxy(300,150," Rs.500");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
outtextxy(50,250,"----------------------");
getch();
tq();
}
void bill5(char r,char row1[1],char
col1[1],char row2[1],char col2[1],char
row3[1],char col3[1],char row4[1],char
col4[1],char row5[1],char col5[1],char cl)
{
cleardevice();
int rs;
settextstyle(3,0,3);
setcolor(CYAN);
outtextxy(50,20,"-----FIVE STAR MOVIES-----
");
64
outtextxy(50,50," ---BILL---
");
outtextxy(100,85,"Number Of Seats: ");
gotoxy(40,7);
printf("%d",(r-48));
outtextxy(105,110,"Seat Numbers: ");
outtextxy(290,110,row1);
outtextxy(305,110,col1);
outtextxy(330,110,row2);
outtextxy(345,110,col2);
outtextxy(370,110,row3);
outtextxy(385,110,col3);
outtextxy(410,110,row4);
outtextxy(425,110,col4);
outtextxy(450,110,row5);
outtextxy(465,110,col5);
outtextxy(100,150,"Cost Per Ticket...");
if(cl=='g')
{
rs=(r-48)*300;
65
outtextxy(300,150," Rs.300");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
if(cl=='p')
{
rs=(r-48)*500;
outtextxy(300,150," Rs.500");
outtextxy(100,210,"Net Bill Amount...");
gotoxy(38,15);
printf("%d",rs);
}
outtextxy(50,250,"----------------------");
getch();
tq();
}
void tq()
{
cleardevice();
66
randomize();
for(int i=0;i<=1100;i++)
{
settextstyle(3,1,1);
putpixel(random(720),random(500),random(15));
}
for(i=0;i<=40;i++)
{
setcolor(i);
circle(65,40,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,140,i);
delay(1);
}
for( i=0;i<=40;i++)
67
{
setcolor(i);
circle(65,240,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,340,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(65,440,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
68
circle(165,440,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(265,440,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(365,440,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(465,440,i);
delay(1);
69
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,440,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,340,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,240,i);
delay(1);
}
for( i=0;i<=40;i++)
70
{
setcolor(i);
circle(565,140,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(565,40,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(465,40,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
71
circle(365,40,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(265,40,i);
delay(1);
}
for( i=0;i<=40;i++)
{
setcolor(i);
circle(165,40,i);
delay(1);
}
setcolor(CYAN);
settextstyle(5,0,8);
outtextxy(150,100,"THANK");
setcolor(MAGENTA);
settextstyle(5,0,8);
72
outtextxy(200,200,"YOU...");
getch();
exit(1);
}
void main()
{
int gdriver=DETECT,gmode;
initgraph(&gdriver,&gmode,"");
pvr p;
Movie m;
p.intro();
p.menu();
p.name();
mainmenu();
tq();
getch();
}
73
SAMPLE OUTPUT
74
75
76
77
78
79
CONCLUSION...
From this project, I would like to conclude
that online movie ticket booking soft wares
have been an integral part in the
development of film industry. This is also a
solution to stop movie piracy. So, use my soft
ware to book tickets and enjoy your favorite
movies.
80
BIBLIOGRAPHY...
www.google.com
www.google.co.in/imghp?hl=en&tab=wi&e
i=tBuEWNXnKcbrvgTog5ZA&ved=0EKouCB
QoAQ
http://www.xtendtech.com/ivr/application
s/movie.htm
81

Weitere ähnliche Inhalte

Was ist angesagt?

Hotel network scenario implementation by using cisco packet tracer
Hotel network scenario implementation by using cisco packet tracerHotel network scenario implementation by using cisco packet tracer
Hotel network scenario implementation by using cisco packet tracerHome
 
Computer science Project for class 11th and 12th(library management system)
Computer science Project for class 11th and 12th(library management system)Computer science Project for class 11th and 12th(library management system)
Computer science Project for class 11th and 12th(library management system)lokesh meena
 
Computer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market BillingComputer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market BillingHarsh Kumar
 
Online movie ticket booking system
Online movie ticket booking systemOnline movie ticket booking system
Online movie ticket booking systemSikandar Pandit
 
computer science project for class 12 on telephone billing
computer science project for class 12 on telephone billingcomputer science project for class 12 on telephone billing
computer science project for class 12 on telephone billinganshi acharya
 
Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...
Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...
Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...ArkaSarkar23
 
Online movie tickets
Online movie ticketsOnline movie tickets
Online movie ticketsJAI BAMORIYA
 
C++ COMPUTER SCIENCE PROJECT
C++ COMPUTER SCIENCE PROJECTC++ COMPUTER SCIENCE PROJECT
C++ COMPUTER SCIENCE PROJECTAbhishek Shukla
 
Project for Student Result System
Project for Student Result SystemProject for Student Result System
Project for Student Result SystemKuMaR AnAnD
 
Report Card making BY Mitul Patel
Report Card making BY Mitul PatelReport Card making BY Mitul Patel
Report Card making BY Mitul PatelMitul Patel
 
Online Movie Ticket Booking
Online Movie Ticket BookingOnline Movie Ticket Booking
Online Movie Ticket BookingAstha Patel
 
Iimsr student management system
Iimsr student management systemIimsr student management system
Iimsr student management systemSHUJA SHABBIR
 
Online movie ticket booking system
Online movie ticket booking systemOnline movie ticket booking system
Online movie ticket booking systemnidhi bhardwaj
 
computer science with python project for class 12 cbse
computer science with python project for class 12 cbsecomputer science with python project for class 12 cbse
computer science with python project for class 12 cbsemanishjain598
 
Software Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing SystemSoftware Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing Systemsabafarheen
 
National Hackathon - Problem Statements
National Hackathon - Problem StatementsNational Hackathon - Problem Statements
National Hackathon - Problem StatementsZaki Haider
 
Snake game powerpoint presentation by rohit malav
Snake game powerpoint presentation by rohit malavSnake game powerpoint presentation by rohit malav
Snake game powerpoint presentation by rohit malavRohit malav
 

Was ist angesagt? (20)

Students report card for C++ project..
Students report card for C++ project..Students report card for C++ project..
Students report card for C++ project..
 
Hotel network scenario implementation by using cisco packet tracer
Hotel network scenario implementation by using cisco packet tracerHotel network scenario implementation by using cisco packet tracer
Hotel network scenario implementation by using cisco packet tracer
 
Computer science Project for class 11th and 12th(library management system)
Computer science Project for class 11th and 12th(library management system)Computer science Project for class 11th and 12th(library management system)
Computer science Project for class 11th and 12th(library management system)
 
Computer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market BillingComputer science class 12 project on Super Market Billing
Computer science class 12 project on Super Market Billing
 
Online movie ticket booking system
Online movie ticket booking systemOnline movie ticket booking system
Online movie ticket booking system
 
computer science project for class 12 on telephone billing
computer science project for class 12 on telephone billingcomputer science project for class 12 on telephone billing
computer science project for class 12 on telephone billing
 
Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...
Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...
Computer Science Investigatory Project Class XII CBSE(Latest Syllabus)(Python...
 
Online movie tickets
Online movie ticketsOnline movie tickets
Online movie tickets
 
C++ COMPUTER SCIENCE PROJECT
C++ COMPUTER SCIENCE PROJECTC++ COMPUTER SCIENCE PROJECT
C++ COMPUTER SCIENCE PROJECT
 
Project for Student Result System
Project for Student Result SystemProject for Student Result System
Project for Student Result System
 
android report
android reportandroid report
android report
 
Report Card making BY Mitul Patel
Report Card making BY Mitul PatelReport Card making BY Mitul Patel
Report Card making BY Mitul Patel
 
Synopsis tic tac toe
Synopsis tic tac toeSynopsis tic tac toe
Synopsis tic tac toe
 
Online Movie Ticket Booking
Online Movie Ticket BookingOnline Movie Ticket Booking
Online Movie Ticket Booking
 
Iimsr student management system
Iimsr student management systemIimsr student management system
Iimsr student management system
 
Online movie ticket booking system
Online movie ticket booking systemOnline movie ticket booking system
Online movie ticket booking system
 
computer science with python project for class 12 cbse
computer science with python project for class 12 cbsecomputer science with python project for class 12 cbse
computer science with python project for class 12 cbse
 
Software Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing SystemSoftware Requirement Specification on Online Purchasing System
Software Requirement Specification on Online Purchasing System
 
National Hackathon - Problem Statements
National Hackathon - Problem StatementsNational Hackathon - Problem Statements
National Hackathon - Problem Statements
 
Snake game powerpoint presentation by rohit malav
Snake game powerpoint presentation by rohit malavSnake game powerpoint presentation by rohit malav
Snake game powerpoint presentation by rohit malav
 

Andere mochten auch

Computer science project work
Computer science project workComputer science project work
Computer science project workrahulchamp2345
 
documentation on bank management system
documentation on bank management systemdocumentation on bank management system
documentation on bank management systemUnsa Jawaid
 
c++ report file for theatre management project
c++ report file for theatre management projectc++ report file for theatre management project
c++ report file for theatre management projectRajesh Gangireddy
 
SYNOPSIS ON BANK MANAGEMENT SYSTEM
SYNOPSIS ON BANK MANAGEMENT SYSTEMSYNOPSIS ON BANK MANAGEMENT SYSTEM
SYNOPSIS ON BANK MANAGEMENT SYSTEMNitish Xavier Tirkey
 
Distributed blood bank management system database
Distributed blood bank management system databaseDistributed blood bank management system database
Distributed blood bank management system databaseSaimunur Rahman
 

Andere mochten auch (8)

Computer science project work
Computer science project workComputer science project work
Computer science project work
 
Bank Management System
Bank Management SystemBank Management System
Bank Management System
 
documentation on bank management system
documentation on bank management systemdocumentation on bank management system
documentation on bank management system
 
c++ report file for theatre management project
c++ report file for theatre management projectc++ report file for theatre management project
c++ report file for theatre management project
 
SYNOPSIS ON BANK MANAGEMENT SYSTEM
SYNOPSIS ON BANK MANAGEMENT SYSTEMSYNOPSIS ON BANK MANAGEMENT SYSTEM
SYNOPSIS ON BANK MANAGEMENT SYSTEM
 
Distributed blood bank management system database
Distributed blood bank management system databaseDistributed blood bank management system database
Distributed blood bank management system database
 
BLOOD BANK SOFTWARE PRESENTATION
BLOOD BANK SOFTWARE PRESENTATIONBLOOD BANK SOFTWARE PRESENTATION
BLOOD BANK SOFTWARE PRESENTATION
 
Project report
Project reportProject report
Project report
 

Ähnlich wie MOVIE TICKET BOOKING-COMPUTER SCIENCE C++ PROJECT

Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)Debashis Rath
 
Zubeda Singh_3+Years_Exp_Mainframe_Developer
Zubeda Singh_3+Years_Exp_Mainframe_DeveloperZubeda Singh_3+Years_Exp_Mainframe_Developer
Zubeda Singh_3+Years_Exp_Mainframe_DeveloperZubeda Abdulla
 
student-data-management-1-2.doc
student-data-management-1-2.docstudent-data-management-1-2.doc
student-data-management-1-2.docJagaBehera1
 
Final documentation second year project
Final documentation second year projectFinal documentation second year project
Final documentation second year projectOtieno Julie
 
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...rahulmonikasharma
 
Pratyush Pandab UX Researcher Portfolio
Pratyush Pandab UX Researcher PortfolioPratyush Pandab UX Researcher Portfolio
Pratyush Pandab UX Researcher PortfolioPratyush Pandab
 
IRJET- Virtual Vision for Blinds
IRJET- Virtual Vision for BlindsIRJET- Virtual Vision for Blinds
IRJET- Virtual Vision for BlindsIRJET Journal
 
Medical store management system
Medical store management systemMedical store management system
Medical store management systemUpendra Sengar
 
Harshit Resume May 2019
Harshit Resume May 2019Harshit Resume May 2019
Harshit Resume May 2019Harshitoberoi7
 
Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...
Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...
Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...Inspirient
 
Marek_Moreno_Resume
Marek_Moreno_ResumeMarek_Moreno_Resume
Marek_Moreno_ResumeMarek Moreno
 
computer science project class 12th
computer science project class 12thcomputer science project class 12th
computer science project class 12thNitesh Kushwaha
 
12th CBSE Computer Science Project
12th CBSE Computer Science Project12th CBSE Computer Science Project
12th CBSE Computer Science ProjectAshwin Francis
 
Omar mohamed abdel latif resume
Omar mohamed abdel latif resumeOmar mohamed abdel latif resume
Omar mohamed abdel latif resumeOmar Mohamed
 
IRJET- Monument Informatica Application using AR
IRJET-  	  Monument Informatica Application using ARIRJET-  	  Monument Informatica Application using AR
IRJET- Monument Informatica Application using ARIRJET Journal
 
Hotel Management Presentation by Aryan Singh Dhiman
Hotel Management Presentation by Aryan Singh DhimanHotel Management Presentation by Aryan Singh Dhiman
Hotel Management Presentation by Aryan Singh DhimanAryanSinghDhiman
 

Ähnlich wie MOVIE TICKET BOOKING-COMPUTER SCIENCE C++ PROJECT (20)

School Management (c++)
School Management (c++) School Management (c++)
School Management (c++)
 
Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
 
Zubeda Singh_3+Years_Exp_Mainframe_Developer
Zubeda Singh_3+Years_Exp_Mainframe_DeveloperZubeda Singh_3+Years_Exp_Mainframe_Developer
Zubeda Singh_3+Years_Exp_Mainframe_Developer
 
Hemit-CV
Hemit-CVHemit-CV
Hemit-CV
 
student-data-management-1-2.doc
student-data-management-1-2.docstudent-data-management-1-2.doc
student-data-management-1-2.doc
 
Final documentation second year project
Final documentation second year projectFinal documentation second year project
Final documentation second year project
 
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
A Review on Real Time Integrated CCTV System Using Face Detection for Vehicle...
 
Pratyush Pandab UX Researcher Portfolio
Pratyush Pandab UX Researcher PortfolioPratyush Pandab UX Researcher Portfolio
Pratyush Pandab UX Researcher Portfolio
 
IRJET- Virtual Vision for Blinds
IRJET- Virtual Vision for BlindsIRJET- Virtual Vision for Blinds
IRJET- Virtual Vision for Blinds
 
Medical store management system
Medical store management systemMedical store management system
Medical store management system
 
Harshit Resume May 2019
Harshit Resume May 2019Harshit Resume May 2019
Harshit Resume May 2019
 
Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...
Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...
Standardized Annotations for Survey Datasets: Enabling Automated Quality Assu...
 
CV_RaphaelCampos_en
CV_RaphaelCampos_enCV_RaphaelCampos_en
CV_RaphaelCampos_en
 
Gesture detection
Gesture detectionGesture detection
Gesture detection
 
Marek_Moreno_Resume
Marek_Moreno_ResumeMarek_Moreno_Resume
Marek_Moreno_Resume
 
computer science project class 12th
computer science project class 12thcomputer science project class 12th
computer science project class 12th
 
12th CBSE Computer Science Project
12th CBSE Computer Science Project12th CBSE Computer Science Project
12th CBSE Computer Science Project
 
Omar mohamed abdel latif resume
Omar mohamed abdel latif resumeOmar mohamed abdel latif resume
Omar mohamed abdel latif resume
 
IRJET- Monument Informatica Application using AR
IRJET-  	  Monument Informatica Application using ARIRJET-  	  Monument Informatica Application using AR
IRJET- Monument Informatica Application using AR
 
Hotel Management Presentation by Aryan Singh Dhiman
Hotel Management Presentation by Aryan Singh DhimanHotel Management Presentation by Aryan Singh Dhiman
Hotel Management Presentation by Aryan Singh Dhiman
 

Kürzlich hochgeladen

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfNirmal Dwivedi
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsMebane Rash
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17Celine George
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxPooja Bhuva
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxPooja Bhuva
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 

Kürzlich hochgeladen (20)

UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 

MOVIE TICKET BOOKING-COMPUTER SCIENCE C++ PROJECT