SlideShare una empresa de Scribd logo
1 de 83
Descargar para leer sin conexión
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

Más contenido relacionado

La actualidad más candente

Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game Pritam Samanta
 
computer science project class 12th
computer science project class 12thcomputer science project class 12th
computer science project class 12thNitesh Kushwaha
 
Library Management Project (computer science) class 12
Library Management Project (computer science) class 12Library Management Project (computer science) class 12
Library Management Project (computer science) class 12RithuJ
 
CS Project on Railway Tickect Reservation for class 12
CS Project on Railway Tickect Reservation for class 12CS Project on Railway Tickect Reservation for class 12
CS Project on Railway Tickect Reservation for class 12anekant28
 
computer science project on movie booking system
computer science project on movie booking systemcomputer science project on movie booking system
computer science project on movie booking systemAnurag Yadav
 
Computer science project work
Computer science project workComputer science project work
Computer science project workrahulchamp2345
 
C.S. project report on railway ticket reservation
C.S. project report on railway ticket reservationC.S. project report on railway ticket reservation
C.S. project report on railway ticket reservationVirat Prasad
 
PYTHON PROJECT ON CARSHOP SYSTEM
PYTHON PROJECT ON CARSHOP SYSTEMPYTHON PROJECT ON CARSHOP SYSTEM
PYTHON PROJECT ON CARSHOP SYSTEMvikram mahendra
 
CS Project-Source code for shopping inventory for CBSE 12th
CS Project-Source code for shopping inventory for CBSE 12thCS Project-Source code for shopping inventory for CBSE 12th
CS Project-Source code for shopping inventory for CBSE 12thSudhindra Mudhol
 
C s investigatory project on telephone directory
C s  investigatory project on telephone directoryC s  investigatory project on telephone directory
C s investigatory project on telephone directorySHUBHAM YADAV
 
Computer Science class 12
Computer Science  class 12Computer Science  class 12
Computer Science class 12Abhishek Sinha
 
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
 
Library Management Python, MySQL
Library Management Python, MySQLLibrary Management Python, MySQL
Library Management Python, MySQLDarshit Vaghasiya
 
IP Project for Class 12th CBSE
IP Project for Class 12th CBSEIP Project for Class 12th CBSE
IP Project for Class 12th CBSESylvester Correya
 
Computer Project for class 12 CBSE on school management
Computer Project for class 12 CBSE on school managementComputer Project for class 12 CBSE on school management
Computer Project for class 12 CBSE on school managementRemaDeosiSundi
 
IP Final project 12th
IP Final project 12thIP Final project 12th
IP Final project 12thSantySS
 
Student DATABASE MANAGeMEnT SysTEm
Student DATABASE MANAGeMEnT SysTEmStudent DATABASE MANAGeMEnT SysTEm
Student DATABASE MANAGeMEnT SysTEmhome
 
Major File On web Development
Major File On web Development Major File On web Development
Major File On web Development Love Kothari
 

La actualidad más candente (20)

Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game Computer Project For Class XII Topic - The Snake Game
Computer Project For Class XII Topic - The Snake Game
 
computer science project class 12th
computer science project class 12thcomputer science project class 12th
computer science project class 12th
 
Library Management Project (computer science) class 12
Library Management Project (computer science) class 12Library Management Project (computer science) class 12
Library Management Project (computer science) class 12
 
CS Project on Railway Tickect Reservation for class 12
CS Project on Railway Tickect Reservation for class 12CS Project on Railway Tickect Reservation for class 12
CS Project on Railway Tickect Reservation for class 12
 
computer science project on movie booking system
computer science project on movie booking systemcomputer science project on movie booking system
computer science project on movie booking system
 
Computer science project work
Computer science project workComputer science project work
Computer science project work
 
C.S. project report on railway ticket reservation
C.S. project report on railway ticket reservationC.S. project report on railway ticket reservation
C.S. project report on railway ticket reservation
 
PYTHON PROJECT ON CARSHOP SYSTEM
PYTHON PROJECT ON CARSHOP SYSTEMPYTHON PROJECT ON CARSHOP SYSTEM
PYTHON PROJECT ON CARSHOP SYSTEM
 
CS Project-Source code for shopping inventory for CBSE 12th
CS Project-Source code for shopping inventory for CBSE 12thCS Project-Source code for shopping inventory for CBSE 12th
CS Project-Source code for shopping inventory for CBSE 12th
 
School Management (c++)
School Management (c++) School Management (c++)
School Management (c++)
 
C s investigatory project on telephone directory
C s  investigatory project on telephone directoryC s  investigatory project on telephone directory
C s investigatory project on telephone directory
 
Computer Science class 12
Computer Science  class 12Computer Science  class 12
Computer Science class 12
 
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)
 
Library Management Python, MySQL
Library Management Python, MySQLLibrary Management Python, MySQL
Library Management Python, MySQL
 
IP Project for Class 12th CBSE
IP Project for Class 12th CBSEIP Project for Class 12th CBSE
IP Project for Class 12th CBSE
 
Project report
Project reportProject report
Project report
 
Computer Project for class 12 CBSE on school management
Computer Project for class 12 CBSE on school managementComputer Project for class 12 CBSE on school management
Computer Project for class 12 CBSE on school management
 
IP Final project 12th
IP Final project 12thIP Final project 12th
IP Final project 12th
 
Student DATABASE MANAGeMEnT SysTEm
Student DATABASE MANAGeMEnT SysTEmStudent DATABASE MANAGeMEnT SysTEm
Student DATABASE MANAGeMEnT SysTEm
 
Major File On web Development
Major File On web Development Major File On web Development
Major File On web Development
 

Destacado

Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)Debashis Rath
 
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
 

Destacado (7)

Railway reservation(c++ project)
Railway reservation(c++ project)Railway reservation(c++ project)
Railway reservation(c++ project)
 
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
 

Similar a 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
 
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
 
The Study of the Large Scale Twitter on Machine Learning
The Study of the Large Scale Twitter on Machine LearningThe Study of the Large Scale Twitter on Machine Learning
The Study of the Large Scale Twitter on Machine LearningIRJET Journal
 

Similar a MOVIE TICKET BOOKING-COMPUTER SCIENCE C++ PROJECT (20)

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
 
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
 
The Study of the Large Scale Twitter on Machine Learning
The Study of the Large Scale Twitter on Machine LearningThe Study of the Large Scale Twitter on Machine Learning
The Study of the Large Scale Twitter on Machine Learning
 
Ai Project ppt.pptx
Ai Project ppt.pptxAi Project ppt.pptx
Ai Project ppt.pptx
 
useR 2014 jskim
useR 2014 jskimuseR 2014 jskim
useR 2014 jskim
 

Último

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 

Último (20)

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 

MOVIE TICKET BOOKING-COMPUTER SCIENCE C++ PROJECT