-
Notifications
You must be signed in to change notification settings - Fork 1
/
combined.cpp
1420 lines (1332 loc) · 68.7 KB
/
combined.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//Smart city//
#include<iostream>
#include<stdlib.h>
#include<iostream>
#include<string.h>
#include<conio.h>
using namespace std;
//Tourism class//
class tourism
{
public:
void intro();
void tourist_attractions();
};
void tourism::intro()
{
cout<<"With history, culture, cuisine, nature and heritage, Kota has a lot on offer for your perusal."
" The desert city cites an attractive historical beginning and has seen a lot of valour, majesty,"
" courtliness and grandeur, etching India’s glorious monarchy. Proud Rajput kings once ruled over western"
" India adding to this country’s glory and richness. Kota is within the Hadoti region located in the south"
" eastern part of Rajasthan. The River Chambal cools the town as it flows through it. "<<endl<<endl;
}
void tourism::tourist_attractions()
{
cout<<" TOURIST ATTRACTIONS IN KOTA"<<endl;
cout<<"1. Forts and Palaces"<<endl;
cout<<"2. Gardens"<<endl;
cout<<"3. Temples"<<endl;
cout<<"4. Lakes & Waterfalls"<<endl;
}
class forts_and_palaces
{ public:
void display()
{
cout<<"FORTS AND PALACES"<<endl;
cout<<"1. Kotah Garh City Palace"<<endl;
cout<<"2. Jagmandir Palace"<<endl;
cout<<"3. Raniji Ki Baoli"<<endl;
cout<<"4. Abheda Mahal"<<endl;
}
void CityPalace()
{
cout<<" Kotah Garh City Palace"<<endl<<endl;
cout<<"A confabulation of Mughal and Rajasthani architecture and art, the City Palace is a monument "
"of the glorious royal past of the Kota city. City palace is a fantastic landmark in Kota attracting"
" thousands of tourists every year.\n\n"
"The palace is adorned with imposing wall paintings, mirror walls, mirror ceilings, hanging illuminated "
"lights and floral decorations. Breathtaking marble floorings and walls and stylish fashioned entrance,"
" all these make City Palace a memorable location. The attractive garden around the palace adds the beauty"
" of the Palace."<<endl<<endl;
cout<<"It is 5 km from city center"<<endl;
cout<<"Timings: All days of the week 10:00 AM - 5:00 PM"<<endl;
cout<<"Restaurants near City Palace: "<<endl;
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tKota's Zaika\t\t\tNayapura, Hotel Saraswati Palace, Near Ratan Kachori and sweets"<<endl;
cout<<"\tKota castle restaurant\t\t hn 29 cenal road land mark city opp to shri hari hospital"<<endl;
}
void JagmandirPalace()
{
cout<<"Jagmandir Palace"<<endl<<endl;
cout<<"This is one of the most popular destinations in Kota. Located in the middle of Kishor Sagar Lake"
" in Kota, one can scarcely believe at the marvellous engineering which made this creation possible."
" Built in the 1740s by one of the queens of Kota, Jagmandir Palace was once a summer retreat for the"
" rulers of Kota, with the pristine waters of Kishore Sagar Lake inviting scores of tourists to the same."<<endl<<endl;
cout<<"4 km from city center"<<endl<<endl;
cout<<"Popular for: History Buffs, God Lovers and Photo Fanatics"<<endl;
cout<<"Things to do around Jagmandir Palace:\n Central Square Mall \n Swarn Rajat Market \n Jawahar Market"<<endl;
cout<<"Restaurants near Jagmandir Palace:\n";
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tSwagat Restaurant\t\tSurya Royal Hotel, 11, Jhalawar Road"<<endl;
cout<<"\tEatos Restaurant\t\t12-C, Nursery Scheme, Talwandi, Kota-5, Kota-Rajasthan 324004, India"<<endl<<endl;
}
void RanijiKiBaoli()
{
cout<<"Raniji Ki Baoli"<<endl<<endl;
cout<<"Raniji Ki Baoli is an ancient baoli (stepwell) near Kota in Bundi. It was built by the Rajputs and "
"boasts of a striking architecture. The baoli has a narrow gateway lined with four sturdy pillars and slender "
"arched on the high roof. A flight of stairs descend into a part well, part temple and part palace with scarce "
"water reserves. Raniji Ki Baoli is an important heritage monument of the city."<<endl<<endl;
cout<<"It is 34 km from city center."<<endl;
cout<<"Entry Fee: Free"<<endl;
cout<<"Popular for: Historic Places"<<endl;
cout<<"Things to do near Raniji ki Baoli: \n Aquagreens Waterpark \n City Mall \n Radhika Resort and Waterpark \n Ahluwalias's The Great Mall of Kota"<<endl;
}
void AbhedaMahal()
{
cout<<"Abheda Mahal"<<endl<<endl;
cout<<"Abheda Mahal is situated near the Chambal river of Kota. The palace was established by Ummed Maharaj,"
"and it has a great history and many different stories behind it's establishment. The palace has a pond which"
" houses beautiful lotus flowers, turtles. It is said that earlier this pond also contained many crocodiles. The"
" palace has a great architecture and is a perfect place for picnic and for photography. The palace image falls on the "
"water in the pond which reflects it's image which gives a great view."<<endl;
cout<<"Popular for: History Buffs"<<endl;
cout<<"Entry Fee : \n Rs 20/- "<<endl;
cout<<"Things to do around Abheda Mahal: \n Lakshman Jhoola \n Purana Cinema Hall \n Hanuman Mandir "<<endl;
cout<<"Restaurants near Abheda Mahal: "<<endl;
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tTamku Restaurant\t\t\tKota, Rajasthan 323021"<<endl;
cout<<"\tHariyali Garden restaurant\t\t Sawan Phuhar water park ,Bundi road,NH-12,Kota, Kota, Rajasthan, India"<<endl;
cout<<"\tFlavour Restaurant\t\t\tOm Cineplex, 11, Indra Vihar Opera Hospital Road, Kota, India"<<endl;
}
};
class gardens
{
public:
void display()
{
cout<<"GARDENS IN KOTA"<<endl;
cout<<"1. Seven Wonders Park"<<endl;
cout<<"2. Kota Zoological Park"<<endl;
cout<<"3. Chatra Vilas Garden"<<endl;
cout<<"4. Darrah Wildlife Sanctuary"<<endl;
}
void SevenWondersPark()
{
cout<<"Seven Wonders Park"<<endl<<endl;
cout<<"Seven Wonders Park in Kota comprises of miniatures of all the Seven Wonders of the World."
"These include Taj Mahal, Great Pyramid, Eiffel Tower, Leaning Tower, Christ the Redeemer of Brazil,"
" Colosseum, and Statue of Liberty. These miniatures have been built on the bank of the Kishore Sagar"
" Lake thereby enhancing its beauty. The park was built at a mind-blowing cost of 20 crores by the Urban"
" Development Department."<<endl<<endl;
cout<<"Ranked 2 out of many sightseeing in Kota"<<endl;
cout<<"Situated in: Ballabhbari"<<endl;
cout<<"Entry fee: free"<<endl<<endl;
cout<<"Best time to visit: During sunset"<<endl;
cout<<"Restaurants near Seven Wonder's Park:\n"<<endl;
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tThe Right Place Cafe\t\tC-11, Vallabh Bari Opposite 7 Wonders Park"<<endl;
cout<<"\tSheesha Restaurant\t\tKotri Rd Police Chowki, Gumanpura"<<endl<<endl;
}
void Zoo()
{
cout<<"Kota Zoological Park"<<endl<<endl;
cout<<"Kota Zoological Park is positioned near Kishore Sagar Lake and is one of the should-see locations in Kota."
" This zoological park is a domestic to the diverse mammalian species including the tiger, undergo, leopard, "
"panther, black dollar, macaque, rabbit and many others. This park additionally affords a safe haven to the "
"avifauna like the Brahminy eagle, lark, woodpecker, cuckoo, owl etc. Kota Zoological Park is understood for its "
"unspoiled green surroundings.October-March is the quality season for visiting this zoological park as it's miles "
"the period whilst the weather is appropriate and the animals welcome their babies."<<endl<<endl;
cout<<"Timings: All days of the week (except Tuesday) 9:00 AM - 6:30 PM"<<endl;
cout<<"Entry Fee : \n For Indians: Rs 20/- per head \n For Foreign Nationals: Rs 40/- per head"<<endl<<endl;
}
void ChatraVilas()
{
cout<<"Chatra Vilas Garden"<<endl<<endl;
cout<<"Chatra Vilas Garden is a well-known visitor attraction in Kota. Along with the beauty of the garden, the "
"vacationers can also see masses of royal cenotaphs in the lawn."<<endl<<endl;
cout<<"Things to do around Chatra Vilas Garden:\n Saiman Plaza \n Ghoomar Beer Bar \n Gma Plaza Market \n Central Square mall"<<endl<<endl;
cout<<"Restaurants near Chatra Vilas Garden:\n";
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tSwagat Restaurant\t\tSurya Royal Hotel, 11, Jhalawar Road"<<endl;
cout<<"\tMaheshwari Restaurant\t\t384, Rajiv Gandhi Nagar, Kota, Rajasthan, India"<<endl<<endl;
}
void Darrah()
{
cout<<"Darrah Wildlife Sanctuary"<<endl;
cout<<"Darrah Wildlife Sanctuary is situated around 56 kms away from Kota near Bundi. The sanctuary boasts of a"
" rich wildlife and is home to asiatic elephant, sambar deer, elks etc among several other exotic animal and plant"
" species. The sanctuary is mostly popular for wildlife safaris, treks and sightseeing. Initially it was used as"
" a hunting ground by the Royal families."<<endl<<endl;
cout<<"Its is 0 km from city center"<<endl;
cout<<"Timings : 7:00 AM - 5:00 PM"<<endl;
cout<<"Entry Fee : Indians - INR 20 Foreigners - INR 100"<<endl<<endl;
}
};
class temples
{
public:
void display()
{
cout<<"TEMPLES IN KOTA"<<endl;
cout<<"1. Garadia Mahadev Temple"<<endl;
cout<<"2. Shivpuri Dham"<<endl;
cout<<"3. Godavri Dham Temple"<<endl;
cout<<"4. Kansua Shiv Mandir"<<endl;
}
void GaradiaMahadev()
{
cout<<"Garadia Mahadev Temple"<<endl<<endl;
cout<<"Situated in Daulatganj near Kota, Garadiya Mahadev Temple is not just a revered Hindu temple"
" but also a popular tourist spot because of its location at the scenic Chambal gorge."
" The presence of several peacocks and other avian species attract a lot of birdwatchers and photography "
"buffs. Considered to be the best place to relax and unwind, the vantage point is surely a must- visit."<<endl<<endl;
cout<<"Entry fee: INR 0"<<endl;
cout<<"Timings: 5:00 AM to 7PM"<<endl;
cout<<"Popular for: God Lovers and Nirvana Seekers"<<endl;
cout<<"Things to do around Garadia Mahadev Temple:\n Chambal River Cruise \n Mahaveer Dharamshala Market \n Sawan Puhar Waterpark \n Central Square mall"<<endl<<endl;
cout<<"Restaurants near Garadia Mahadev Temple:\n";
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tKota's Zaika\t\t\tNayapura, Hotel Saraswati Palace, Near Ratan Kachori and sweets"<<endl;
cout<<"\tThe Highway King\t\tNear St.John's School, Gyan Sarovar Kunhadi, Kota, Rajasthan 324008"<<endl;
cout<<"\tKota Castle Restaurant\t\tHn 29 Central Road Landmark City Opp to Shri Hari Hospital"<<endl;
cout<<"\tAmar Dhaba\t\t\tBhimganj Mandi, Kota, Rajasthan, India"<<endl<<endl;
}
void Shivpuri()
{
cout<<"Shivpuri Dham"<<endl<<endl;
cout<<"Shivpuri Dham is one the ancient most and unique temple in Kota. It has as many as 525 shivalingas "
"at one place. The place is thronged by pilgrims and devotees all through the year; however, the busiest "
"time of the year is Shivratri or Rasleela. Between the shivalingas, there is a huge statue of God Pashupati Nath."<<endl<<endl;
cout<<"Entry Fee : No entry fee"<<endl;
cout<<"Popular for: God Lovers"<<endl;
cout<<"Things to do around Shivpuri Dham:\n Lodha Market \n City Mall \n Z Cine Mall \n Central Square mall"<<endl<<endl;
cout<<"Restaurants near Shivpuri Dham:\n";
cout<<"\t\tName\t\t\tAddress"<<endl;
cout<<"\tNatural Restaurant\t\tVigyan Nagar, Kota, Rajasthan, India"<<endl;
cout<<"\tRoyal Firdous Restaurant\tSH 51, Dhanmandi, Kota, Rajasthan, India"<<endl;
}
void GodavriDham()
{
cout<<"Godavri Dham Temple"<<endl<<endl;
cout<<"Located in Dadabari in Kota, Godavari Dham Temple is dedicated to Lord Hanuman and is based on the"
" banks of river Chambal. The temple hosts a special morning and midnight aarti on Tuesdays and Saturdays "
"which is attended by hundreds of pilgrims. Besides, the temple also houses idols of several other gods "
"and goddesses including Lord Shiva, Bhairav, Ganpati etc."<<endl<<endl;
cout<<"It is 8 km from city center"<<endl;
cout<<"Popular for: God Lovers"<<endl;
cout<<"Timings: All days of the week 7:00 AM - 8:00 PM"<<endl;
cout<<"Entry Fee : No entry fee"<<endl;
cout<<"Things to do around Godavri Dham Temple:\n New Motor Market \n Central Square Mall \n Lakshmi Narayan Market \n Saiman Plaza"<<endl<<endl;
}
void Kansua()
{
cout<<"Kansua Shiv Mandir"<<endl<<endl;
cout<<"Kansua Temple is one of the most ancient temples near Bundi in Kota which is enshrined by Lord Shiva."
" The temple houses a shivalinga which has four heads; it is believed that the shrine was constructed by the"
" Pandavas when they visited Kota during their exile. The temple is built just right by River Chambal and is"
" also known as Karneshwar Temple."<<endl;
cout<<"It is 8 km from city center."<<endl;
cout<<"Timings : 6:00 AM - 7:00 PM"<<endl;
cout<<"Entry Fee : No entry fee"<<endl;
}
};
class lakes_and_waterfalls
{
public:
void display()
{
cout<<"LAKES AND WATERFALLS IN KOTA"<<endl;
cout<<"1. Kishore Sagar Lake"<<endl;
cout<<"2. Kota Barrage"<<endl;
}
void KishoreSagar()
{
cout<<"Kishore Sagar lake"<<endl<<endl;
cout<<"Kishore Sagar is an artificial picturesque lake dating back to 1346 constructed by the Bundi"
" Prince Dehra Deh. It located by the side of attractive Brij Vilas palace museum."<<endl<<endl;
cout<<"4 km from city center"<<endl;
cout<<"Popular for: Nature Lovers & Photo Fanatics"<<endl;
cout<<"Things to do around Kishore Sagar Lake:\n Gma Plaza Market \n New Sarafa Market \n Central Square Mall \n Blue Sea Bar"<<endl<<endl;
cout<<"Restaurants near Kishore Sagar Lake:\n"<<endl;
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tMaheshwari Restaurant\t\t384,Rajeev Ghandi Nagar, Kota, Rajasthan, India"<<endl;
cout<<"\tFlavour Restaurant\t\tOm Cineplex, 11, Indra Vihar Opera Hospital Road, Kota, India"<<endl;
cout<<"\tEatos Restaurant\t\t12-C, Nursery Scheme, Talwandi, Kota-5, Kota-Rajasthan 324004, India"<<endl<<endl;
}
void KotaBarrage()
{
cout<<"Kota Barrage"<<endl<<endl;
cout<<"Kota Barrage was certainly not constructed keeping tourism in mind. However, its majestic appeal has "
"turned it into one over the years. The gushing flow of foaming white water is an absolute treat for the eyes "
"from atop the bridge. Visitors flock here to enjoy this majestic scene, especially in monsoon when the gates "
"are all open. The area is characterised by a cool, relaxing breeze because of the proximity of the water. It "
"is one of those places where you can keep quiet and let the place make the noise. Kota Barrage is a favourite "
"evening time gathering. You will find people in couples or groups standing along the railings enjoying the view "
"and spending quality time with their family and loved ones."<<endl<<endl;
cout<<"It is 6 km from city center."<<endl;
cout<<"Timings : 24 hours"<<endl;
cout<<"Entry Fee : No entry fee"<<endl;
cout<<"Restaurants near Kota Barrage:\n"<<endl;
cout<<"\t\tName\t\t\t\tAddress"<<endl;
cout<<"\tMaheshwari Restaurant\t\t384,Rajeev Ghandi Nagar, Kota, Rajasthan, India"<<endl;
cout<<"\tShri Gautam Restaurant\t\tShop No-09, Thermal Main Road"<<endl;
cout<<"\tDesh Sevak Bhojnalaya\t\tOpposite Police Chouki"<<endl<<endl;
}
};
tourism t;
forts_and_palaces fp;
gardens g;
temples temp;
lakes_and_waterfalls lw;
void goto_temples()
{
cout<<" ";
}
//Housing class//
class housing
{
protected:
char name[30];
long int adhaarno;
long int phone;
public:
char room_type[30];
int days;
void input() //general housing details//
{
cout<<"Enter name,adhaar number and contact number ";
cin>>name>>adhaarno>>phone;
cout<<"Enter room type and number of days you want to stay ";
cin>>room_type;
cin>>days;
}
virtual void display(char *){};
};
class hostel:public housing //derived class of housing//
{
protected:
float price; //total price//
public:
int input1(char hostel_name[30]);
void display(char *);
};
int hostel::input1(char hostel_name[30])
{
if(strcmpi(hostel_name,"rajniwas")==0)
{
if(strcmpi(room_type,"twin")==0)
{
price=days * 250;
cout<<"Room is available.Your price according to twin sharing basis in hostel=Rs."<<price;
return 0;
}
else if(strcmpi(room_type,"quad")==0)
{
price=days * 150;
cout<<"Room is available.Your price according to quad sharing basis in hostel=Rs."<<price;
return 0;
}
else
{
cout<<"!Room not available in Raj niwas hostel!";
return -1;
}
}
else if(strcmp(hostel_name,"krishna")==0)
{
if(strcmpi(room_type,"twin")==0)
{
price=days * 220;
cout<<"Room is available.Your price according to twin sharing basis in hostel=Rs."<<price;
return 0;
}
else if(strcmpi(room_type,"quad")==0)
{
price=days * 180;
cout<<"Room is available.Your price according to quad sharing basis in hostel=Rs."<<price;
return 0;
}
else
{
cout<<"!Room not available in Krishna hostel!";
return -1;
}
}
return 0;
}
void hostel:: display(char hostel_name[30])
{
cout<<endl<<"Your details:"<<endl;
cout<<"Name:"<<name<<endl<<"Adhaar no:"<<adhaarno<<endl<<"Phone no:"<<phone<<endl<<"Days:"<<days<<endl<<"Room type:"<<room_type<<endl<<"Hostel name:"<<hostel_name<<endl<<"Price:"<<price;
}
class pg:public housing //derived class of housing//
{
protected:
float price1; //price per month//
public:
int input2(char pg_name[30]);
void display(char *);
};
int pg::input2(char pg_name[30])
{
if(strcmpi(pg_name,"prateek")==0)
{
if(strcmpi(room_type,"twin")==0)
{
price1=days * 500;
cout<<"Room is available.Your price according to twin sharing basis in PG=Rs."<<price1;
return 0;
}
else if(strcmpi(room_type,"quad")==0)
{
price1=days * 400;
cout<<"Room is available.Your price according to quad sharing basis in PG=Rs."<<price1;
return 0;
}
else
{
cout<<"!Room not available in Prateek PG!";
return -1;
}
}
else if(strcmpi(pg_name,"aastha")==0)
{
if(strcmpi(room_type,"twin")==0)
{
price1=days * 450;
cout<<"Room is available.Your price according to twin sharing basis in PG=Rs."<<price1;
return 0;
}
else if(strcmpi(room_type,"quad")==0)
{
price1=days * 500;
cout<<"Room is available.Your price according to quad sharing basis in PG=Rs."<<price1;
return 0;
}
else
{
cout<<"!Room not available in Aastha PG!";
return -1;
}
}
return 0;
}
void pg::display(char pg_name[30])
{
cout<<endl<<"Your details:"<<endl;
cout<<"Name:"<<name<<endl<<"Adhaar no:"<<adhaarno<<endl<<"Phone no:"<<phone<<endl<<"Days:"<<days<<endl<<"Room type:"<<room_type<<endl<<"PG name:"<<pg_name<<endl<<"Price:"<<price1;
}
class hotel:public housing //derived class of housing//
{
protected:
float price2; //price per day//
public:
int input3(char hotel_name[30]);
void display(char *);
};
int hotel::input3(char hotel_name[30])
{
if(strcmpi(hotel_name,"international_grand")==0)
{
if(strcmpi(room_type,"single")==0)
{
price2=days * 3000;
cout<<"Room is available.Your price according to single stay basis in hotel=Rs."<<price2;
return 0;
}
else if(strcmpi(room_type,"twin")==0)
{
price2=days * 2000;
cout<<"Room is available.Your price according to twin sharing basis in hotel=Rs."<<price2;
return 0;
}
else if(strcmpi(room_type,"quad")==0)
{
price2=days * 1500;
cout<<"Room is available.Your price according to quad sharing basis in hotel=Rs."<<price2;
return 0;
}
else
{
cout<<"!Room not available in International grand hotel!";
return -1;
}
}
else if(strcmpi(hotel_name,"country_inn")==0)
{
if(strcmpi(room_type,"single")==0)
{
price2=days * 5000;
cout<<"Your price according to single stay basis in hotel=Rs."<<price2;
return 0;
}
else if(strcmpi(room_type,"twin")==0)
{
price2=days * 3000;
cout<<"Your price according to twin sharing basis in hotel=Rs."<<price2;
return 0;
}
else if(strcmpi(room_type,"quad")==0)
{
price2=days * 2000;
cout<<"Your price according to quad sharing basis in hotel=Rs."<<price2;
return 0;
}
else
{
cout<<"!Room not available in Country inn hotel!";
return -1;
}
}
return 0;
}
void hotel::display(char hotel_name[30])
{
cout<<endl<<"Your details:"<<endl;
cout<<"Name:"<<name<<endl<<"Adhaar no:"<<adhaarno<<endl<<"Phone no:"<<phone<<endl<<"Days:"<<days<<endl<<"Room type:"<<room_type<<endl<<"Hotel name:"<<hotel_name<<endl<<"Price:"<<price2;
}
class carent:public housing
{
protected:
int rent;
char carname[30];
char model[30];
public:
void input4(char carname[30]);
void display(char*);
};
void carent:: input4(char carname[30])
{
cout<<"Enter car model ";
cin>>model;
if(strcmpi(carname,"Maruti_suzuki")==0)
{
if(strcmp(model,"RJ-20")==0)
rent=days*100;
else if(strcmp(model,"RJ-34")==0)
rent=days*120;
else if(strcmp(model,"RJ-40")==0)
rent=days*200;
}
if(strcmpi(carname,"Wagon_R")==0)
{
if(strcmp(model,"RJ-22")==0)
rent=days*120;
else if(strcmp(model,"RJ-30")==0)
rent=days*180;
else if(strcmp(model,"RJ-10")==0)
rent=days*100;
}
}
void carent::display(char carname[30])
{
cout<<"Car model:"<<model<<endl<<"Car name:"<<carname<<endl<<"Rent="<<rent<<endl;
}
//Job seeking class//
class resume
{
public:
char name[30];
int age;
int phone;
void input()
{
cout<<endl<<"Enter name, age and contact number ";
cin>>name>>age>>phone;
}
virtual void display(){};
};
class teaching:public resume
{
protected:
char qualification1[30];
int prev_jobexperience1; //in years
char applyingforpost1[50];
public:
void input1()
{
cout<<endl<<"Enter your qualifications,previous job experience and the post you are applying for:";
cin>>qualification1>>prev_jobexperience1>>applyingforpost1;
cout<<endl<<"Minimum job experience should be 2 years";
if(prev_jobexperience1<1)
{
cout<<endl<<"Not eligible";
}
else
{
cout<<endl<<"Eligible";
if(prev_jobexperience1==2)
{
cout<<endl<< "Salary = 10,000 per month";
}
else if( prev_jobexperience1>2 && prev_jobexperience1<5)
{
cout<<endl<< " Salary = 15,000 per month";
}
else
{
cout<<endl<<" salary = 20,000 per month";
}
}
}
void display()
{
cout<<endl<<name<<endl<<age<<endl<<phone<<endl<<qualification1<<endl<<prev_jobexperience1<<endl<<applyingforpost1;
}
};
class engineer:public resume
{
public:
char qualification3[30];
int prev_jobexperience3; //in years
char applyingforpost3[50];
int skills;
void input3()
{
cout<<endl<<"Enter your qualifications,previous job experience and the post you are applying for:";
cin>>qualification3>>prev_jobexperience3>>applyingforpost3;
cout<<endl<<"Minimum skills known should be 3";
if(skills<3)
{
cout<<"Not eligible";
}
else
{
cout<<"Eligible";
if(skills==3)
{
cout<<"Salary1= 20,000 per month";
}
else if( skills>3 && skills<5)
{
cout<<endl<<"Salary= 25,000-30,000 per month";
}
else
{
cout<<endl<<"salary 40,000-50,000 per month";
}
}
}
void display()
{
cout<<endl<<name<<endl<<age<<endl<<phone<<endl<<qualification3<<endl<<prev_jobexperience3<<endl<<applyingforpost3;
}
};
class doctor:public resume
{
public:
char qualification2[30];
int prev_jobexperience2; //in years
char applyingforpost2[50];
void input2()
{
cout<<"Minimum job experience should be 3 years";
if(prev_jobexperience2<3)
{
cout<<"Not eligible";
}
else
{
cout<<"Eligible";
if(prev_jobexperience2==3)
{
cout<< "Salary = 100,000 per month";
}
else if( prev_jobexperience2>3 && prev_jobexperience2<7)
{
cout<<"Salary = 200000-300000 per month";
}
else
{
cout<<"salary = 300000-400000 per month";
}
}
}
void display()
{
cout<<endl<<name<<endl<<age<<endl<<phone<<endl<<qualification2<<endl<<prev_jobexperience2<<endl<<applyingforpost2;
}
};
//Education//
class student
{
protected:
char name[30];
int mobileno;
int age;
char city[30];
char email[50];
public:
int Class; //class is a keyword hence can't be used as a variable name so use Class or sth else
char dropper;
void input()
{
//cout<<endl<<"enter name,age,mobileno,city,emailaddress,class"; take inputs one by one
//cout<<"are you a dropper";
//cin>>ans; ans is a char variable it can't store so much info
cout<<endl<<"Enter name:";
cin>>name;
cout<<"Enter mobile no:";
cin>>mobileno;
cout<<"Enter age:";
cin>>age;
cout<<"enter city:";
cin>>city;
cout<<"Enter Email:";
cin>>email;
cout<<"enter class:";
cin>>Class;
cout<<"Are you a dropper?(enter y or n):";
cin>>dropper;
}
};
class institutes:public student
{
public:
void institutenames()
{
cout<<"The following institues have vacancy:"; //semicolon missing
cout<<"\n"<<"1.Prodigy"<<endl;
cout<<"2.Allen"<<endl;
}
};
class courses:public institutes
{
public:
char stream[30];
char typeofcourse[20];
int standard;
char type[10];
void input2()
{
cout<<"enter stream(med/non med)";
cin>>stream;
cout<<"enter standard";
cin>>standard;
cout<<"enter the type of student(dropper or regular)";
cin>>type;
cout<<"enter type of course you want";
cin>>typeofcourse;
}
void display()
{
char instiname[30];
cout<<"enter institute's name for its courses";
cin>>instiname;
if(strcmp(instiname,"prodigy")==0) //srcmp not strcmp
{
cout<<" REGULAR COURSES ";
cout<<" FOUNDATION(BOTH MED/NON MED) ";
cout<<" CLASS 6- LITTLE GENIE ";
cout<<" CLASS 7- UDAYA TWO YEAR ";
cout<<" CLASS 8- UDAYA ONE YEAR "<<endl<<endl;
cout<<" NON- MED REGULAR COURSES ";
cout<<" CLASS 9- PINNACLE1 " ;
cout<<" CLASS 10- PINNACLE2 ";
cout<<" CLASS 11- PINNACLE3 ";
cout<<" CLASS 12- PINNACLE4 ";
cout<<" DROPPER- ROCKSTAR "<<endl<<endl;
cout<<" MED REGULAR COURSES ";
cout<<" CLASS 9- SHIKSHA1 " ;
cout<<" CLASS 10- SHIKSHA2 ";
cout<<" CLASS 11- SHIKSHA3 ";
cout<<" CLASS 12- SHIKSHA4 ";
cout<<" DROPPER- MEDDI "<<endl<<endl;
}
else if(strcmp(instiname,"allen")==0)
{
cout<<" REGULAR COURSES ";
cout<<" FOUNDATION(BOTH MED/NON MED) ";
cout<<" CLASS 6- LITTLE GENIE ";
cout<<" CLASS 7- UDAYA TWO YEAR ";
cout<<" CLASS 8- UDAYA ONE YEAR "<<endl<<endl;
cout<<" NON- MED REGULAR COURSES ";
cout<<" CLASS 9- PINNACLE1 " ;
cout<<" CLASS 10- PINNACLE2 ";
cout<<" CLASS 11- PINNACLE3 ";
cout<<" CLASS 12- PINNACLE4 ";
cout<<" DROPPER- ROCKSTAR "<<endl<<endl;
cout<<" MED REGULAR COURSES ";
cout<<" CLASS 9- SHIKSHA1 " ;
cout<<" CLASS 10- SHIKSHA2 ";
cout<<" CLASS 11- SHIKSHA3 ";
cout<<" CLASS 12- SHIKSHA4 ";
cout<<" DROPPER- MEDDI "<<endl<<endl;
}
}
void displaycoursedetails()
{
char names[50];
cout<<"enter the name of the course you want the details of";
cin.ignore();
cin.getline(names,50); //cin doesnt take input after space use cin.getline
if(strcmp(names,"Little Genie")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else
if(strcmp(names,"Udaya Two Year")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"Udaya One year")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"PINNACLE1")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if (strcmp(names,"PINNACLE2")==0) //if written twice
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"PINNACLE3")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"PINNACLE4")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"ROCKSTAR")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"SHIKSHA1")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"SHIKSHA2")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;
cout<<"Success Potential Index (SPI): We are the only institute in India having the capability to predict Success Potential Index (SPI) of a student. We constantly encourage our students to emulate their Success Potential Index (SPI)."<<endl;
cout<<"Students also gain important exam practice through quizzes, phase tests, & mock tests (conducted in a simulated environment giving the students a ‘feel’ of the real exam) that can help them improve their examination temperament a necessary element for success in any competitive exam"<<endl;
cout<<"Regular feedback & Test Analysis Sessions."<<endl;
cout<<"Dedicated academic operations team provides feedback at any point of time apart from scheduled parent teacher meetings."<<endl;
cout<<"DURATION :"<<endl;
cout<<"About 175 hrs. Including classroom interaction and tests."<<endl;
}
else if(strcmp(names,"SHIKSHA3")==0)
{
cout<<"COURSE STRUCTURE :"<<endl;
cout<<"Entire course will be covered in 4 phases."<<endl;
cout<<"Subjects covered will be Science (Physics, Chemistry & Biology), Mathematics and Mental Ability."<<endl;
cout<<"Single comprehensive study material. Additional problems will be supplemented wherever necessary students should not require any additional books etc."<<endl;
cout<<"Work Books for Home Assignment."<<endl;
cout<<"Common Phase Tests across the country."<<endl;
cout<<"Chapter Practice Problems (CPP): On each chapter Students will be given Chapter Practice Problems which they have to attempt and submit before the beginning of the next chapter. These solutions will be checked by the faculty and will be returned to the Students with remarks and suggestions. Thus helping every Student to have a very strong command over fundamental concept knowledge very crucial for getting Top ranks."<<endl;
cout<<"Class Learning Improvement Program (CLIP): Icing on the cake of every class will be done through Class Learning Improvement Program for those who have completed all assignments to further help them get a higher Rank in Competitive Exams."<<endl;