-
Notifications
You must be signed in to change notification settings - Fork 1
/
events.json
1024 lines (1021 loc) · 141 KB
/
events.json
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
{
"1": {
"name": "Splash",
"thumb": "splash.png",
"coordinators": "[{\"name\":\"User 1\",\"number\":123456},{\"name\":\"User 2\",\"number\":123456}]",
"events": [{
"id": "101",
"name": "TRASHION",
"category": "1",
"type": "2",
"title": "trashion",
"about": "Make an apparel (clothing and 'outfitting' which includes equipment/accessories worn or carried for function or decoration) out of items which are normally thrown out as trash.",
"rules": "<ol><li>Participants in a team of at most 3 and minimum 2 are required to make an outfit from the material provided by the organizers (limited material).</li><li>Materials would be given by organizers prior to event and any other material is not allowed.</li><li>Decision of judges shall be final and binding.</li><li>One of the team members may wear the dress after completion.</li><li>Two round will be take place.</li><li>Only 1 additional material will provide in limited amount, if required.</li><li>Time Limit : 2.5 Hours</li></ol>",
"fees": "Entry Fee : ₹300 for a team of upto 3 members",
"thumbnail": "splash/trashion.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 9:30 AM to 11:30 AM\r\n<b>Venue: </b> LT-7 B Block",
"prize": "1st Prize : ₹1800 \r\n 2nd Prize : ₹1200",
"coordinators": "Abha Kabra : +91-9414444533\r\nKashish Jindal\r\nHarshit Sharma : +91-9694188467\r\nMegha Sharma",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "102",
"name": "Antakshiri",
"category": "1",
"type": "2",
"title": "antakshiri",
"about": "Antakshri is a spoken parlor game played in India, Bangladesh, Pakistan and Nepal.Each contestant sings the first verse of movie(Bollywood songs) that begins with the Hindustani consonant on which the previous consonant’s song selection ended.\r\n\r\nRound 1: Meri awaz suno\r\nRound 2: Main hoon kon\r\nRound 3: Jodi round \r\nRound 4: Shabd Jaal",
"rules": "<ol><li>Songs have to be started from the last sound of the previous song</li><li>Only songs from the Bollywood movies are allowed by default</li><li>At least the first verse of the song must be sung</li><li>If a singer does not remember it entirely, they cannot sing the song</li><li>No song is repeated again in the game</li></ol>",
"fees": "Entry Fee : ₹150 for a team of upto 3 members",
"thumbnail": "splash/antakshiri.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 12:00 PM to 3:00 PM\r\n<b>Venue: </b> Quadrangle A-Block",
"prize": "1st Prize : ₹2000 \r\n 2nd Prize : ₹1000 ",
"coordinators": "Surya Veer Singh : +91-7727850085\r\nPreksha Jain\r\nShivangi Nangia\r\nAyushi Aeran\r\nAshwini Jain",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "103",
"name": "RAP ZAP",
"category": "1",
"type": "1",
"title": "rap-zap",
"about": "So you got Rapping and Rhymes in your Blood? Here is the event RAP-ZAP for your Rapping Skills!\r\nGrab the Stage To Kick some Rhymes with Sick Beats.\r\nRap Zap gets you audience, music, stage; then it’s you and Your Raps, and cheering crowd!\r\n\r\n1st ROUND : ELIMINATION ROUND\r\n2nd ROUND : FINAL ROUND",
"rules": "<ol><li>Entries for solo and duo.</li><li>No vulgarity shall be included in the rap.</li><li>Arguments with the judges may cancel your participation.</li><li>No age limit.</li><li>All participants must prepare 2 raps which they are going to perform on stage.</li><li>Participants should bring their background music along with themselves.</li></ol>",
"fees": "Entry Fee : ₹200",
"thumbnail": "splash/rap-zap.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 12:00 NOON to 3:00 PM\r\n<b>Venue: </b> Auditorium A Block",
"prize": "1st Prize : ₹3500 \r\n 2nd Prize : ₹1500 ",
"coordinators": "Gaurav Gupta : +91-7891072568\r\nDamini Chauhan\r\nAashi Vashishth\r\nMegha Gupta",
"class": "col-sm-4 col-xs-6"
}, {
"id": "104",
"name": "Beat The Beats",
"category": "1",
"type": "1",
"title": "beat-the-beats",
"about": "One thing good about beats.. When it hits you, you Feel! The character of instrumental music let the emotion radiate and shine in their own character.",
"rules": "<b>Round I:</b> In round one, participant will be given time for 210 seconds (3.5 min.) to play any instrument in which he has excelled his skills and enthrall the audience and judges with his melodious performance.\r\n\r\n<b>Round II:</b> The participants selected in the 1st round will move ahead and will get a chance to make their 2nd appearance at the stage. In this round the participants will be given 300 seconds (5 min.) and they have to match their tone on the instruments with a track playing in the background. Participants needs yo carry their own tracks in pen drives. Sounds more fun!",
"fees": "Entry Fee : ₹200",
"thumbnail": "splash/beat-the-beats.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 12:30 PM\r\n<b>Venue: </b> Auditorium A Block",
"prize": "1st Prize : ₹1500\r\n 2nd Prize : ₹1000 ",
"coordinators": "Akhil Singhal : +91-8107394437\r\nShreyansh Chopra : +91-8233506444\r\nGaurav Pareek : +91-7023166507\r\nHitendra Dubey : +91-9509657682",
"class": "col-sm-4 col-xs-6"
}, {
"id": "105",
"name": "Pillow Fight",
"category": "1",
"type": "2",
"title": "pillow-fight",
"about": "A fun event focusing on giving an entertainment quotient by having normal pillow fight with a twist. Twist starts when there is no ground base to act. People will find themselves at a certain height of 5-6 feet above the ground managing to attain a grip and at the same time trying to knock-out their worthy opponent.",
"rules": "<ol><li>At the start a minute or two will be given for adjusting and forming grip.</li><li>A span of 5 minutes would be given for the knockout process.</li><li>No crossing of legs or any other form of grip attaining technique allowed.</li><li>If no trying of knockout process observed within two minutes, then contestants will be disqualified.</li><li>Fighting with pillows is entertained only.</li></ol>",
"fees": "Entry Fee : ₹30",
"thumbnail": "splash/pillow-fight.png",
"venue": "<b>Date: </b> 8th March, 2017 and 11th March, 2017\r\n<b>Time: </b> 11:30 AM to 4:30 PM and 11:30 AM to 2:30PM respectively\r\n<b>Venue: </b> BH-2 Lawn",
"prize": "kinds",
"coordinators": "Bhaskar Sharma : +91-9309443567\r\nSuman Kanwar",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "106",
"name": "Face painting",
"category": "1",
"type": "2",
"title": "face-painting",
"about": "Face painting is about showing creativity by painting on face on a given theme.\r\nBest creation will be awarded.face painting can be hobby for some or even a full blown career for many talented artist.\r\nIn the team one member will do the painting on other team member.Competition will consist of two rounds.\r\nFirst Round will be of 2 hours,according to a given THEME, face painting is done.\r\nour jugdes will select top 5 teams.Then second round will be a SOCIAL round .",
"rules": "<ol><li>Each team consist of 2 players.</li><li>competition will consist of two rounds.</li><li>Teams should complete their work in the given time limit.</li><li>Team is not allowed to bring extra material.</li><li>Material required is provided.</li></ol>",
"fees": "Entry Fee : ₹200",
"thumbnail": "splash/face-painting.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 10:00 AM to 1:00 PM\r\n<b>Venue: </b> Hawa mahal",
"prize": "1st Prize : ₹1200 \r\n 2nd Prize : ₹800 ",
"coordinators": "Garvit Mittal : +91-7737521979\r\nAshita Bansal\r\nAkansha Gupta",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "107",
"name": "Minute to Win",
"category": "1",
"type": "2",
"title": "minute-to-win",
"about": "MINUTE TO WIN features competitors facing various challenges that escalate in level of difficulty using everyday household items. Each game has a one-minute time limit and failure to finish the task on time will eliminate the contestant. But it'll take nerves of steel to complete all the tasks to win the grand prize.\r\n\r\nSo get ready to bang on because you got only a MINUTE TO WIN.",
"rules": "Each team consisting of 2 members.\r\nThe game consisting of 5 rounds. Each round is a elimination.",
"fees": "Entry Fee : ₹100",
"thumbnail": "splash/minute-to-win.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 9:30 AM to 11:30 PM\r\n<b>Venue: </b> Quadrangle A-Block",
"prize": "1st Prize : ₹1000 \r\n 2nd Prize : ₹500 ",
"coordinators": "Raunak Agarwal : +91-9829490896\r\nAshish Sharma : +91-8440920920",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "108",
"name": "AGENT 221",
"category": "1",
"type": "2",
"title": "agent-221",
"about": "Are you a SHERLOCK FAN? Do you love solving mysteries? Bring it on guys ! Here we are up with an event AGENT 221. Be the first SHERLOKIAN of JECRC and get #SHERLOCKED !",
"rules": "<ol><li>There will be a defined time limit for every round.</li><li>Decorum maitainance is must!</li></ol><b>Round I: (BRAINSTROMER)</b>Show us what you got !\r\nQuestions related to basic crime investigation.\r\n\r\n<b>Round II: ( CASE STUDY )</b>\r\nParticipants will be given a case , suspects and clues to solve the mystery in limited time frame.\r\n\r\n<b>Round III: ( GET SHERLOCKED )</b>\r\nTeams will act as detective and will find the culprit by given leads. participants must find all the clues related to case.",
"fees": "Entry Fee : ₹150 (3 members)",
"thumbnail": "splash/agent-221.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 11:30 AM to 2:00 PM\r\n<b>Venue: </b> C-501 C-Block",
"prize": "1st Prize : ₹1500\r\n2nd Prize : ₹1000",
"coordinators": "Shivam Khandelwal : +91-9413360008\r\nEra Sharma ",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "109",
"name": "Campus Roadies",
"category": "1",
"type": "2",
"title": "campus-roadies",
"about": "In this Competition, Each participating team has to face four rounds which basically checks individual’s physical and mental strength. This competition is based on the theme of reality show ”ROADIES”.",
"rules": "<ol><li>Each Team consists of 4 members each.</li><li>Atleast one member should be a girl.</li><li>Decision of judges would be final.</li><li>Materials required for the task would be provided by the organizers and no other material is allowed.</li><li>Each team has to report at the correct time failing to which would result in the disqualification of the team.</li></ol>",
"fees": "Entry Fee : ₹400 (4 members)",
"thumbnail": "splash/campus-roadies.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 12:00 NOON to 3:30 PM\r\n<b>Venue: </b> Central Lawn",
"prize": "1st Prize : ₹3000 \r\n 2nd Prize : ₹1800 ",
"coordinators": "Prateek Chaurasiya : +91-8562840270\r\nHarshit Sharma : +91- 8769563355\r\nDhruval Bharadwaj : +91-9672830652 \r\nVarsha Chaturvedi\r\nKajal Khandelwal",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "110",
"name": "Shootout Zone (Paintball)",
"category": "1",
"type": "2",
"title": "shootout-zone",
"about": "Paintball is a variation on tag that involves players on competing teams shooting paint-filled balls at each other using air-powered guns. Paintball is a very fun game and very safe if players will just wear their masks.\r\n\r\nThe basic game of paintball consists of players trying to hit members of the other team with paintballs which will break and \"mark\" or \"eliminate\" that player. The first team with all its players eliminated loses. There are countless variations of this basic game including capture the flag.\r\n\r\nPaintball has been played since the early 1980s and is enjoyed by millions of players across the world. It is an exciting sport that encourages sportsmanship, requires strategy, and is a great way to exercise and meet new friends.\r\n\r\nIf you haven't ever tried paintball, it's time to head to Renaissance'16 and try out this great sport.",
"rules": "<ol><li>Each team consist of 5 players.</li><li>Paintball purchase cant be reimbursed.</li><li>Players must play within the boundries allocated to their teams.</li><li>players can prevent themselves being hit by the balls.</li><li>Players are not allowed to move with their barricates.</li></ol>",
"fees": "Entry Fee : ₹600 per team\r\nTotal 100 shots",
"thumbnail": "splash/shootout-zone.png",
"venue": "<b>Date: </b> 9th to 11th March, 2017\r\n<b>Time: </b> 9:30 AM to 4:30 PM\r\n<b>Venue: </b> GH Lawn",
"prize": "will be updated soon",
"coordinators": "Kartik : +91-7877696859\r\nRishabh : +91-9509393263",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "111",
"name": "Street Football",
"category": "1",
"type": "2",
"title": "street-football",
"about": "Do you have what it takes to bring the field on fire ? Is football the game u live ??Do you have a Leo Messi or Neymar Jr. 11 inside you?? Then for you, the countdown begins !!",
"rules": "<ol><li>Every team consists of 5 Players + 2 Subs .</li><li>10-2-10 minutes playing time .</li><li>Goal scored from inside the D will not be valid .</li><li>Free kick would be awarded from centre line, only GK is allowed to stop the ball .</li><li>GK should not touch the ball with hand .</li><li>On Handball of GK, penalty will be awarded .</li><li>If match ends in a draw, the result will be decided from penalties .</li><li>No Offside rule .</li><li>The decision of referee will be considered final .</li><li>Any misbehaviour will lead to team disqualification .</li><li>All players must carry their college id’s with them .</li><li>The team players must report 15 minutes prior to the match time. </li></ol>",
"fees": "Entry Fee : ₹700 per team",
"thumbnail": "splash/street-football.png",
"venue": "<b>Date: </b> 10th and 11th March, 2017\r\n<b>Time: </b> 9:30 AM to 6:30 PM\r\n<b>Venue: </b> C-Block Lawns",
"prize": "1st prize : 4000(Boys) 2500(Girls) \r\n 2nd Prize : ₹2000(Boys) 1000(Girls) ",
"coordinators": "Rishabh Bhardwaj : +91-7568322492\r\nDeepak Choudhary : +91-8058003131\r\nShobit Yadav : +91-9571945667\r\nSanidhya Mahovia : +91-9928436850\r\nVedant Sharma : +91-7023278489",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "112",
"name": "Mad House",
"category": "1",
"type": "1",
"title": "mad-house",
"about": "A cool event full of madness & excitement. Participate, play some crazy games & experience total madness with your friend.\r\nPagalpanti bhi zarori h...Kyuki there is no genius without some touch of madness.\r\nExplore the madness in you this Renaissance.",
"rules": "<ol><li>Participation in a team of two members is necessary .</li><li>Decision of Judges shall be final.</li><li>Three round will take place</li><li>Follow all the instructiions which were given by the organiser</li></ol>\r\n\r\n\r\n<b>Round 1:</b> Face the cookies ,ballon blow,cold drinkstraw with poney, spoonge,sari\r\n\r\n<b>Round 2:</b> Collect the things \r\nDress up boy by girl\r\n\r\n<b>Round 3:</b> blind fold",
"fees": "Entry Fee : ₹100 (2 members)",
"thumbnail": "splash/mad-house.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 2:00 AM to 4:30 PM\r\n<b>Venue: </b> B 301 & LT 7 B Block",
"prize": "1st Prize : ₹1,200 \r\n 2nd Prize : ₹ 800",
"coordinators": "Rahul Yadav : +91-7023252990\r\nAttika Sharma\r\nYash rawat : +91-9782862495\r\nDeekshant : +91-9782978096",
"class": "col-sm-4 col-xs-6"
}, {
"id": "113",
"name": "Gully Cricket",
"category": "1",
"type": "2",
"title": "gully-cricket",
"about": "This cricket game is set in the back streets of the city. \r\nGet down and dirty with this gully cricket game. ",
"rules": "<ol><li>wicket-keeper from batting team.</li><li>no runs behind the wickets.</li><li>no LBWs.</li><li>mini overs (4 balls per over).</li><li>maximum 2 over only for 1 bowler</li><li>5 overs per inning (baby overs).</li><li>5 players per team.</li><li>Every wide ball has free hit</li><li>one hand one-bounce catch.</li><li>boundary out (without bounce).</li></ol>",
"fees": "Entry Fee : ₹250 (5 members)",
"thumbnail": "splash/gully-cricket.png",
"venue": "<b>Date: </b> 8th and 9th March, 2017\r\n<b>Time: </b> 11:30 AM to 4:30 PM\r\n<b>Venue: </b> BH 2 Lawn, C Block Lawns",
"prize": "1st Prize : ₹2500 \r\n 2nd Prize : ₹1500",
"coordinators": "Ashish Jha: +91-7073295152\r\nAnmol Bhatnagar: +91-9462904377\r\nKumar Sanu : +91-7073662153\r\nNikhil garg : +91-7791900859\r\nZeeshan Ansari : +91-8504996564",
"class": "col-sm-5ths col-xs-6"
}, {
"id": "114",
"name": "The Hunting Writers",
"category": "1",
"type": "1",
"title": "the-hunting-writers",
"about": "<b>Round I:</b>\r\nThe LONE HUNTERS: Hunt for the objects with a friend of yours mentioned in the list. Search and find them across the nations, with your jet if you have one, else BEG BORROW STEAL in the campus. It can be as easy as a leaf, or something that ll take years,a 2 number shoe.\r\n\r\n<b>Round II:</b>\r\nTHE HUNTING WRITERS: THE FINALE: Har shikaar ki jese ek kahaani hoti hai, vese hi iss shikaar ki bhi ek kahaani hogi. Bring the list of objects to life. The successful hunters would now write a story, on a theme given to them, but the catch is, all objects that you have hunted, have to be included somehow in story. Don't forget to bring spark of your imagination.",
"rules": "<b>Round I:</b>\r\n<ol><li>This round is about BEG BORROW STEAL, so the only rule is \"HUNT FOR ALL OBJECTS\", participants would be judged on basis of no.of successful items hunted.</li></ol>\r\n\r\n<b>Round II:</b>\r\n<ol><li>No.of objects mentioned in the story, will be the primary judging criteria.</li><li>Separate points would be earned on the basis of creativity and humor and also the style of writing.</li><li>Language is no boundation.</li><li>Judges decision would be final.</li></ol>",
"fees": "Entry Fee : ₹150 (2 members)",
"thumbnail": "splash/the-hunting-writers.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 2:00 PM to 4:30 PM\r\n<b>Venue: </b> C 401 C Block",
"prize": "1st Prize : ₹2000 \r\n 2nd Prize : ₹1000",
"coordinators": "Hemant Khandelwal : +91- 8963824692 \r\nMegha Chabra\r\nAparna Tripathi\r\nRishabh Singhal : +91-9461080982",
"class": "col-sm-4 col-xs-6"
}, {
"id": "115",
"name": "PIC A SPEAKO",
"category": "1",
"type": "1",
"title": "pic-a-speako",
"about": "<b>Round I:</b>\r\nGive words to a pair of changing pictures displayed for 2 minutes with the best partner you can get and test both of your's compatibility.\r\n\r\n<b>Round II:</b>\r\nEVER WONDERED? What would happen when SUPERMAN meets JETHALAL? Stop wondering, create the scene. Pick any 2 characters from a set of 50 characters given to you, and in a given preparation time of 15 minutes, create an action packed dialogue of a minute or two. STOP STOP STOP, Your mimicry or your acting wouldn't be tested here, your creativity and mind skills would be.",
"rules": "<ol><li>There should be team of two members.</li><li>The activity can be performed in English, Hindi or both.</li><li>Uses of props is not just allowed but will be appreciated.</li><li>Judges decision would be final.</li></ol>",
"fees": "Entry Fee : ₹150 (2 members)",
"thumbnail": "splash/pic-a-speako.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 1:30 PM to 4:30 PM\r\n<b>Venue: </b> C 401 C Block",
"prize": "1st Prize : ₹1000 \r\n 2nd Prize : ₹500",
"coordinators": "Shivani Gupta\r\nAyushi dravid\r\nKavya Chaturvedi\r\nShubham Singh : +91-8559890072",
"class": "col-sm-4 col-xs-6"
}, {
"id": "116",
"name": "Lan Gaming",
"category": "1",
"type": "1",
"title": "lan-gaming",
"about": "<ol><li>Counter Strike1.6</li><li>Counter Strike GO</li><li>DOTA 2</li><li>FIFA 15</li><li>NFS-MW</li><li>Call of duty(modern warlfare)(single,multiple)</li><li>Tekken 5</li><li>Mini Militia</li></ol>",
"rules": "<h3>Counter Strike:</h3>\r\n<ol><li>5 vs. 5 (team play, 5 players per team)</li><li>Version - counter strike 1.6 & Counter strike GO</li><li>Shotguns, shields, automatic sniper are not allowed</li></ol>\r\n<b>Victory condition:</b>\r\nThe first team to win 16 rounds is declared the winner. (8 as CT and 8 as T) \r\n<b>Maps to be used:</b>\r\n<ol><li>On the spot map will be given</li><li>There will be a toss to decide which map to play. There will be a knife round to decide the side (CTT)</li></ol>\r\n<b>Game settings:</b>\r\n<ol><li>Round time - 1 minute 45 seconds</li><li>C4 timer - 35 seconds</li><li>C4 timer - 35 seconds</li><li>Players are allowed to bring their gaming accessories- keyboard, mouse, mouse pad)fsnrv</li><li>Default skins must be used</li><li>Any other use of map or program bugs can result in a warning at the minimum or loss by default for the offending team after deliberation and decision bybthe board or referees at its sole discretion.</li><li>Initial start money USD 800</li><li>In case of tie breaker further 6 rounds will be played (3 as CT and 3 as T)</li></ol><hr>\r\n<h3>DOTA 2:</h3>\r\n<ol><li>A Team has to consist of Max 5 participants. Those persons will be called \"team members\" or \"members\" of the team in the following.</li><li>All teams have to provide the administration the following information upon request: full names of all members and identity of the captain.</li><li>The hero pool always consists of all heroes the game mode allows and might therefore change several times during the competition. The game must not be paused during the draft, unless a drafter disconnects.</li><li>If any serious bugs occur, the game has to be paused immediately and the administration decides how to continue. Knowingly abusing a bug is strictly forbidden.</li><li>The usage of any Dota-related tool aside from Steam and Dota 2 during a match is strictly forbidden.</li><li>A game is finished, when an Ancient Fortress is destroyed, when the majority of a team leaves on purpose, or when the administration decides on it. (note: A game is not forfeited, when a player types \"gg\" or \"ff\". Always wait for the ancient to be destroyed!)</li><li>Legal proceedings are not permitted.</li><li>By attending the competition participants acknowledge without limitation to comply with the rules and regulations, official announcement, and with the statements and decisions made by the referees.</li><li>Every participant has to show the needed respect towards referees and other participants. Insults and unfair or disrespectful behaviour towards anyone are not tolerated and will be punished.</li></ol><hr>\r\n<h3>FIFA 14:</h3>\r\n<b>Attendance</b>\r\n<ol><li>Players need to be ready to play at the allotted start time or will forfeit match.</li><li>We suggest if players know they are running late that they should contact the venue and inform them to ensure that they do not lose their place in the event.</li><li>If a player turns up late OR fails to complete a fixture with no valid excuse, then a win is awarded to opponent.</li></ol>\r\n<b>Controllers and Settings</b>\r\n<ol><li>Players are advised to bring their own controllers if they prefer.</li><li>Players are responsible to ensure their controller configuration is correct at all times.</li></ol>\r\n<b>Game Settings</b>\r\n<ol><li>Match</li><li>Half Length: 6 minutes (Variable)</li><li>Difficulty Level: World Class</li><li>Referee: Random</li><li>Stadium: Wembley Stadium</li><li>Time of Day: Day</li><li>Weather: Dry</li><li>Game Speed: Normal</li><li>Ball: Default</li><li>Knockout stages: If draw extra time followed by penalties</li><li>Camera</li><li>Tele Broadcast or to be agreed by both players before match</li><li>Rules</li><li>Injuries: Off</li><li>Offsides: On</li><li>Bookings: On</li><li>Handball: Off</li><li>Teams = Players can use any \"real\" teams in the game (excluding fantasy teams) and may also swap teams during the event. Any others = Default</li></ol>\r\n<b>Admin Rights</b>\r\n<ol><li>Admins reserve the right to add to, or amend the rules at any time.</li><li>In the course of any disputes the Admins decision will be final and all players involved must abide by the ruling given, any player failing to do so risks being removed from the event.</li></ol><hr>\r\n<h3>NFS-MW:</h3>\r\n<b>Attendance</b>\r\n<ol><li>The participant needs to be ready to play at the allotted time otherwise he/she will be disqualified effective immediately.</li><li>If the participant knows that it can be late to attend the game at the allotted time, then he/she must inform the coordinator immediately so as to get a new allotment of time. </li><li>If the participant is a FINALE candidate and fails to make it to the match then he/she will be disqualified and the opponent will be declared as WINNER.</li></ol>\r\n<b>Controllers</b>\r\n<ol><li>The participants are allowed to bring their own console/keyboard if they want to.</li><li>If the participant’s controller gets lost or they forget to take them back, they will be responsible for their loss themselves.</li><li>If the participant’s controller is not working properly, they are advised toinform before the match starts otherwise it will be considered as an excuse.</li></ol>\r\n<b>During Match</b>\r\n<ol><li>If the participant gets caught using any sort of cheat codes, he/she will be disqualified effective immediately.</li><li>If it is found that the match/match settings has been tampered with, all the players of that match will be disqualified effective immediately.</li></ol>\r\n<b>GAME SETTINGS</b>\r\nTracks : CLASSIFIED\r\nCars Selection : By the Coordinator.\r\nNitrous : Disabled\r\nCollision Impact : Enabled\r\nTypes of tracks : Circuit, Sprint\r\nOther Settings : Default\r\n<b>ADMIN RIGHTS</b>\r\nIn case of any error or system malfunctions, the admin’s decision will be the final one.\r\nThe participants have to obey the Admin’s decision, no questions asked.",
"fees": "<b>Entry Fee :</b>\r\n\r\n<ul><li>Counter Strike1.6 : ₹600 per team</li><li>DOTA 2 : ₹600 per team</li><li>FIFA 14 : ₹150</li><li>NFS-MW : ₹100</li><li>Mili Militia : ₹40</li><li>Teken 5 : ₹50</li><li>COD Single Player : ₹100</li><li>COD Multi player : ₹400</li><li>CS GO : ₹600</li></ul>",
"thumbnail": "splash/lan-gaming.png",
"venue": "<b>Date: </b> 8th to 10th March, 2017\r\n<b>Time: </b> 11:30 AM to 4:30 PM\r\n<b>Venue: </b> CP-21,22,23 ",
"prize": "<b>1st PRIZE :</b>\r\n\r\n<ul><li>Counter Strike1.6 : ₹5000 per team</li><li>DOTA 2 : ₹1500 per team</li><li>FIFA 14 : ₹1500</li><li>NFS-MW : ₹1500</li><li>Teken 5 : ₹1000</li><li>COD Single Player : ₹1000</li><li>COD Multi player : ₹6000</li><li>CS GO : ₹4500</li></ul>",
"coordinators": "Vishal Verma : +91-8233663390\r\nUdit Koolwal : +91-8502874309\r\nShubham Kalani : +91-7597377782\r\nDiwanshu Soni : +91-9602235988 \r\n Ayush gandhi : +91-7014851810 ",
"class": "col-sm-4 col-xs-6"
}]
},
"2": {
"name": "Quanta",
"thumb": "quanta.png",
"coordinators": "[{\"name\":\"Akshit Gupta\",\"number\":917727827113},{\"name\":\"Atul Upadhayay\",\"number\":917728909503},{\"name\":\"Saurabh Kumar Vats\",\"number\":917740821876},{\"name\":\"Mohit Singh Chauhan\",\"number\":0},{\"name\":\"Ayushi Jain\",\"number\":917728909200},{\"name\":\"Akansh ",
"events": [{
"id": "201",
"name": "JUST C",
"category": "2",
"type": "1",
"title": "just-c",
"about": "Just C is an event based on C programming language. It will provide you a platform to test and enhance your programming skills. It will be conducted by HackerEarth (an online competitive platform). For more info, check event’s <a href=\"https://www.facebook.com/renaissance.justc\" target=\"_blank\">Facebook page</a>",
"rules": "Two rounds will be conducted.\r\n\r\n<b>Round 1</b> \r\n 1. Each participant has to participate individually. \r\n 2. Each participant has to solve multiple choice questions. \r\n 3. Time duration will be of 45 min. \r\n 4. Only the shortlisted candidates of this round will be eligible for Round 2, which is the final round. \r\n<b> Round 2</b> \r\n1. This round will consist of coding questions ONLY. \r\n2. Candidates are required to program ONLY in C language. No other language will be entertained. \r\n3. Candidates completing task in minimum time will be awarded. \r\n4. Decision of the judges will be final.",
"fees": "Entry Fee : ₹100 per candidate.",
"thumbnail": "quanta/just-c.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 9:30 AM to 3:30 PM\r\n<b>Venue: </b> CP1 to CP8, Block A",
"prize": "1st Prize : ₹Rs. 5,000/- cash prize.\r\n10 Consolation prizes of Rs. 500/- each.",
"coordinators": "Aayush Garg : +91-7597140740\r\nFiroz Khan : +91-9001584686\r\nKapil Khandelwal : +91-8766101160\r\nDaksha Humad : +91-7877822824",
"class": "col-sm-3 col-xs-6"
},{
"id": "202",
"name": "Subito",
"category": "2",
"type": "1",
"title": "subito",
"about": "An event based on the theme based web, mobile app development. Participants have to prepare the app and have to show case their app in the front of panel of judges.",
"rules":"1. Maximum 2 team members are allowed per team .Solo \r\n participation is also valid. \r\n 2. A theme will be provided, and you have to build an app according to that theme. Theme will announced later. \r\n 3. The event will be of 7 hour’s duration. \r\n 4. Teams will be provided with refreshments during the event. \r\n 5. Participating team can choose any platform out of these- Web or App Development.\r\n 6. On the main day, they have to create the app or website under the event time .They may bring their own laptops if not they can also work on college provided system. \r\n 7. They will be given a problem, challenge. \r\n 8. During the event, questions may be asked to them regarding \r\n their application. \r\n 9. Internet access will be provided. <b>Judgement criteria (read all points carefully)</b> \r\n 1. Any programming language can be used. \r\n 2. Uniqueness of idea .Innovation and creativity will be a major factor in decision. \r\n 3. Clarity of concepts about programming. Person having good concepts will be preferred. \r\n 4. Level of programming (Clarity in code, easy to understand. Proper usage of syntax and validations, security features. GOOD CODED C SOFTWARE>>BAD CODED E COMMERCE WEBSITE) \r\n 5. User Interface and simplicity i.e. ease of use. \r\n 6. Implementation and usage of developed app. The developed application should be useful and commercially viable. \r\n 7. The successful completion of challenges given by the judges can be used as a tiebreaker.",
"fees": "Entry Fee : ₹200 per team",
"thumbnail": "quanta/subito.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 9:30 AM to 4:30 PM\r\n<b>Venue: </b> A-Block IBM Lab",
"prize": "1st Prize : ₹2500\r\n2nd Prize : ₹1500",
"coordinators": "Atul Modi : +91-9460822240 \r\nPushpendra Singh : +91-9828882078 \r\n Keshav Modi : +91-9414628611 \r\n Aman Jain : +91-8233298222 \r\n Prakhar Khandelwal : 91-7976592903",
"class": "col-sm-3 col-xs-6"
},
{
"id": "252",
"name": "Catch The Phrase",
"category": "2",
"type": "1",
"title": "catch-the-phrase",
"about": "An intriguing quiz that will test your rudimentary technical knowledge and enthrall you throughout with exciting and innovative rounds.",
"rules":"Round 1- Jumbled words!\r\n1.) Participants will be given certain number ofjumbled words related to technical and non-technical field which has to be solved in limited time.\r\n2.) It will be a pen and paper test.\r\n3.) Marks will be allotted on the basis of correct answers and few teams will qualify for the next and final round of the game.\r\nRound 2- The Taboo!\r\n1.) The objective of the game is for one player to have their partners guess the word on the players card without using the word itself. That word will be the forbidden word known as the taboo word.\r\n2.) Participants, if fail to guess, can pass and move on to the next word.\r\n3.) Winner of the game will be decided on the basis of maximum correct answers in specific time.",
"fees": "Entry Fee : ₹150",
"thumbnail": "quanta/let-me-speak.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 12:00 PM\r\n<b>Venue: </b> Venue: C- 501",
"prize": "1st Prize : ₹3000\r\n2nd Prize : ₹1000",
"coordinators": "Nikita Gaur : +91-7597394087 \r\n Himani Sharma : +91-8440956575\r\nLokesh Soni : +91-9829571189\r\nAsmita Goswami : +91-7297905935\r\n Amit Agarwal : +91-8094556013",
"class": "col-sm-3 col-xs-6"
},
{
"id": "203",
"name": "JAVA LETS",
"category": "2",
"type": "1",
"title": "java-lets",
"about": "A technical event involving concepts of Core JAVA only. The event will consist of 2 rounds. Rounds description is as follows:\r\n\r\n<b>Round 1:</b>\r\nMCQ Problems.\r\n30 MCQs problems\r\nMarking Scheme: 3 marks on correct answers and -1 on incorrect.Time Limit: 20 mins\r\n\r\n<b>Round 2:</b>\r\nOnline Contest(HackerEarth) Timing : 75 mins. For more info, check event’s <a href=\"https://www.facebook.com/javalets\" target=\"_blank\">Facebook page</a>",
"rules": "<ol><li>One Computer would be provided to each team.</li><li>Maximum 2 members per team.</li><li>You will be allowed to code in Core JAVA only.</li><li>The competition will take place through the online competitive websites (e.g. Hackerearth, hackerrank) </li><li>50% of the total participants will be promoted to Second round on the basis of First round.</li><li>The team who will top the leaderboard will be declared as winner.</li><li>Programs will be verified by judges and their jurisdiction will be final.</li></ol>",
"fees": "Entry Fee : ₹200 per team",
"thumbnail": "quanta/java-lets.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 12:30 NOON to 2:30 PM\r\n<b>Venue:</b> IBM Lab",
"prize": "1st Prize : ₹3000\r\n2nd Prize : ₹2000",
"coordinators": "Saurabh Modi : +91-9509088668\r\nAditya Gurjar : +91-9928981600\r\nAbhishek Pandey : +91-7597867068\r\nAbhishek Sarawag : +91-9610616042\r\nPranav Dua : +91-8739958037\r\nAnkur Jain : +91-8003207444",
"class": "col-sm-3 col-xs-6"
},{
"id": "204",
"name": "Embryo mechanical",
"category": "2",
"type": "2",
"title": "embryo mech",
"about": "This Embryo is aiming to tap the minds of budding mechanical engineers. In this regard, we have enclosed the poster of the Embryo. The events like paper presentation in the symposium helps students to think and come up with innovative ideas ,also enhancing the on stage skills of the students Few events challenging the students ability apart from academic proficiency, helps in bringing out professionalism and volunteeringtraits from the individuals.",
"rules": "1. The first stage involves the uploading of abstracts online \"manishsrivastava.me@jecrc.ac.in\". The entries selected for the second round are required to present their paper at JECRC JAIPUR during RENAISSANCE-17.\r\n2. Participants from different institutions can also form a team.\r\n3. A maximum of 2 students per team are allowed to present a paper. In case of team participation, both the members are required to be present at the time of the event.\r\n4. The decision of the judges will be final and binding. <b>Guidelines:</b>\r\n1. Presentations should be in .ppt or .pptx format.\r\n2. For the presentations, a LCD projector, a computer, a mike and speakers will be provided.\r\n3. The time for one presentation will be 5-7 minutes. One buzzer will be rung after 5 minutes to remind the participants about the time and final buzzer will be rung after 7 minutes.\r\n4. Any extension in the allotted time will result in the loss of points.\r\n5. No request regarding change in schedule and date of paper presentation will be entertained under any circumstances.<b>The papers will be judged on the basis of their innovation, in depth knowledge of the field and presentation skills. The decision of the judges will be final and binding.</b>",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/embryo.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 11:00 AM to 4:00 PM\r\n<b>Venue: </b> C-401",
"prize": "1st Prize : ₹2500\r\n2nd Prize : ₹1500",
"coordinators": "Shahjade Alam : +91-8947910251\r\nDhruv Laddha : +91-7597923778\r\nDevendra : +91-8107632175\r\nShahrukh Khan : +91-8562075358",
"class": "col-sm-4 col-xs-6"
}, {
"id": "206",
"name": "CAD MANIA mechanical",
"category": "2",
"type": "2",
"title": "cad-mania",
"about": "In this event participant challenged to design 3-D object on AutoCAD.",
"rules": "<b>Stage I:</b>\r\nIt is divided into two parts.\r\n<ol><li>Quiz (15 question/15 marks/10 min.)</li><li>2D-drawing (1 drawing/25 marks/30 min.)</li></ol>\r\n\r\n<b>Stage II:</b>\r\nThe student who qualifies 1st stage will only move to the second stage.\r\nContestants will be given a 3D drawing and its all three views (F.V., T.V., S.V.) would have to be drawn with dimensions in 90 min. (60 marks)\r\n\r\n<b>Final result will be declared on the basis of both stages.</b>\r\n\r\n<b>Evaluation Criteria:</b>\r\n<ul><li>Time</li><li>Accuracy</li></ul>\r\n\r\n<b>Guidelines :</b>\r\n<ul><li>It is individual participant’s event.</li><li>No other accessories will be provided rather than Question Paper.</li><li>No external electronic devices will be allowed.</li><li>If system problem occurs, it will be short out at the time of event.</li><li>Decision of judges will be final, cannot be argued.</li></ul>",
"fees": "Entry Fee : ₹150",
"thumbnail": "quanta/cad-mania.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 2:00 PM to 4:30 PM\r\n<b>Venue: </b> BF-08 (Mechanical Cad Lab)",
"prize": "1st Prize : ₹2000\r\n2nd Prize : ₹1000",
"coordinators": "Vivek Sharma-7737355997\r\nShubham Rathi : +91-8890111910\r\nDilip Jajoo : +91-8107424409\r\nHimanshu Guneshwar : +91-9460554144",
"class": "col-sm-4 col-xs-6"
}, {
"id": "208",
"name": "Fork lifter",
"category": "2",
"type": "2",
"title": "fork-lifter",
"about": "Fork lifter is about building a crane using wooden material suitable enough to place the given weights on a platform using only hydraulic mechanism.",
"rules": "1. Crane should be made of wooden material. The weight of the crane should not exceed 5 kilograms. \r\n2. No additional support should be provided in any way. \r\n3. The crane should works on hydraulic mechanism only. Locomotion of any part of the machine should be powered by hydraulic force (you can move the syringe by hand if required). \r\n4. The crane should be controlled by fluid containing syringes. \r\n5. Use of batteries and other power sources is prohibited. \r\n6. Only Adhesives (Synthetic white adhesive or single component cyano-acrylate adhesive) can be used to build the structure. Use of M-Seal and Cello-tape is prohibited. Use of threads is permitted. Ice-cream/pop-sickle sticks can be stacked to make stronger elements.<b>Round 1:</b> In this round points will be given to each crane on the basis of maximum weight it can lift for 5 sec. Points of this round will be added in the final score.<b>Round 2: </b>In this round teams will be given a task to perform, the task will be of picking up blocks andplacing them on the specified location.<b>Round 3:</b> \r\n• Selected teams will have to build a building with blocks in given time \r\n• Point will be given on basis of height and stability of building. \r\n<b> General Rules: </b> \r\n1. The maximum time of 5 minutes is given to each team to lift as much weight as they can. \r\n2. Team members are not allowed to touch any part of crane, except the controlling syringes. So they should be mounted separately. \r\n3. Maximum of 4 members per team is allowed. Maximum of two people will be allowed to control the machine at any point of time. \r\n4. Use pin joints only. \r\n5. The organizers reserve all rights to change any of the above rules as they deem fit. Change in rules, if any will be highlighted on the website. \r\n6. In case of any discrepancy the decision of the judges will be final and binding to all.",
"fees": "Entry Fee : ₹250",
"thumbnail": "quanta/fork-lifter.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 12:30 PM to 3:30 PM\r\n<b>Venue: </b> B-BLOCK FOUNTAIN",
"prize": "1st Prize : ₹2500\r\n2nd Prize : ₹1500",
"coordinators": "Girish Khandelwal : +91-7737833541 \r\nRaushan Kumar : +91-8440980043 \r\nOm Prakash Yadav : +91-7062756792 \r\nPrince Kumar : +91-9828941454 \r\nShubham Wadhwa : +91-9116490811 \r\nVikash Jain : +91-8058406306",
"class": "col-sm-4 col-xs-6"
}, {
"id": "209",
"name": "MIGHTY THROTTLE",
"category": "2",
"type": "2",
"title": "mighty-throttle",
"about": "This event requires racing of your RC cars on a race track. Although it may look simple to you but you will face cut-throat competition, and finally it is the quality of the car and driver ability which will decide the winner.\r\n\r\n<b>PROBLEM STATEMENT</b>\r\nBuild a Remote Controlled IC engine powered car to traverse a race track in the minimum possible time. The time track may be composed of several turns with increasing difficulty levels. The teams with the top best time to lap this track qualify for racing. Final round will be a race.",
"rules": "<b>General Rules:</b>\r\n<ol><li>The team will have a maximum of 5 students.</li><li>Teams would be given specific slots to practise in the arena. Teams are supposed to come during their practice slot and use the track. The slots will be given on a first come, first serve basis. Any request regarding extension of slots or exchange of slots will not be entertained.</li><li>The teams must adhere to the spirit of healthy competition. The teams must not damage the opponent's machine in any way. Judges reserve the right to disqualify any team indulged in misbehaviour.</li><li>The participants will have to submit the set of questions on their working model before the competition. Only the teams who have submitted this would be considered during the event in renaissance, 2017.</li><li>The participants have to control their model car in the arena with the help of 2.4 GHz frequency remote control from a platform. Only one team member is allowed to be on the platform.</li><li>No power supply would be provided.</li><li>The teams are not allowed to leave any loose part(s) on the arena. If found, they would be immediately disqualified.</li><li>The organizers reserve all rights to change any or all of the above rules. Change in any rule, if any, will be highlighted on the website.</li><li>All rounds of the event will be held at JECRC during renaissance, 2017.</li><li>If the car runs away from the track, topples or halts, the team member present on the arena can reset the car from the nearest check post. The member should keep the car behind the check post; time would be running during this.</li><li>Teams are not allowed to damage the model car of other teams on or off the arena. If found doing so, the team would be disqualified. This will be subject to the judges’ discretion and would be final.</li><li>The track will be an all-terrain track with sharp turns and big jumps. In this edition of Race, both speed and control will be important. The car should be able to cross bumps, rough patches on the track and out do the opponent’s car while maintaining its stability and not compromising with its pace. The track will be an off road track. Most parts of the track will be made up of mud and grass, however at a few places wood and or pebble like materials may be used to create obstacles.</li><li>Despite organizer’s efforts to keep the track’s quality intact, the track is subjected to undergo wear and tear as machines run over it. The machine is expected to be able to perform on such a weakened track as well.</li><li>Multiple machines will race on a single lane track at a time.</li><li>A lap of the track is completed when the machine comes back to the start-finish line.</li><li>round 1- technical inspection and qualifiers.</li><li>round 2 - challenge round. race of 2 teams at a time.</li><li>round 3 - semi finals. </li><li>round 4- finals</li></ol>\r\n\r\n<b>Machine Specification:</b>\r\n<ol><li>Machine should fit in a box of dimensions 700mm x 500mm x 600mm at any moment of time during the race. The external device which is used to control the machine is not included in the size constraint.</li><li>The machine should be controlled by a wireless remote control mechanism throughout the race.</li><li>Maximum displacement of engine will be 4.5cc.</li><li>Maximum percentage of nitro methane in fuel must be 20%.</li><li>The machine parts may be roughly classified into structural and functional parts: Functional parts - Gears, differential gear, engine, springs, shock absorbers, servo motors (non propulsion purposes only), batteries, wheels and wheel hub can be directly used as available in the market. Structural parts - Chassis, steering mechanism, shock towers and suspension (excluding upper suspension arm, suspension spring and shock absorbers), if built by the participants themselves, extra points will be awarded.</li><li>The tires must have a minimum diameter of 3 inch. You are advised to use tires of good width for better performance on dirt tracks.</li><li>Brake Mechanism: It is compulsory to incorporate braking mechanism in the car. Any other part used in braking mechanism (including the brake disk).</li><li>Steering Mechanism: Any part which is connected to steering rod rigidly i.e. has no degrees Susof freedom with respect to steering rod will be considered as part of steering rod.</li><li>pension mechanism: Any part rigidly connected to suspension arms or one with no degrees of freedom with respect to suspension arm will be considered as its part. For example both the heim joint for the upper suspension arm and the stud rigidly connected to the wheel hub can be bought from the market.</li><li>If there are parts used in the concerned joint which are neither rigidly connected with suspension or the hub, steering system or hub; they can be used ready - made from the market.</li></ol>",
"fees": "Entry Fee : ₹1000",
"thumbnail": "quanta/mighty-throttle.png",
"venue": "<b>Date: </b> 9th March, 2017(1st Round) and 10th March, 2017(2nd Round)\r\n<b>Time: </b> 9:30 AM to 3:30 PM and 9:30 to 12:30 PM respectively\t\r\n<b>Venue: </b> C-Block Lawn",
"prize": "1st Prize : ₹15,000\r\n2nd Prize : ₹10,000",
"coordinators": "Mohit Pareek : +91-9782941104\r\nRahul Gupta : +91-8561844204\r\nGovind Vyas : +91-9610488491\r\nSatyam Jain : +91-7737436129\r\nGagan Jindal: +91-9602085058",
"class": "col-sm-4 col-xs-6"
}, {
"id": "249",
"category": "2",
"name": "Combatant War Tech REN-17",
"type": "4",
"title": "Combatant war",
"about": "The idea and concept that come here are simply awesome. Great platform for a bit fun and a bit play with tones of knowledge that you take away. This event will consist of two rounds. First one is objective questions round and second one is designing and testing of circuit on breadboard using various components.",
"rules": "1. Maximum number of participants in a team is 3. \r\n 2. Bring your college Id cards and receipt of participation on event day. \r\n 3. Mobile phones and calculators are not allowed during the event. \r\n 4. The teams will get 30 minutes for objective paper. \r\n 5. The topics of the objective paper will be from basic electrical, aptitude and related streams. \r\n 6. Person from the different colleges may be in the same team, but one person may not be a part of two teams in the same event. \r\n 7. The decision of the judges will be final and no arguments will be entertained.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/combatant.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 12:30 PM to 3:30PM\r\n<b>Venue: </b>PE Lab ( EE Department , B Block)",
"prize": "1st Prize : ₹1200\r\n2nd Prize : ₹800 ",
"coordinators": "Aamir Sadik khan : +91-9024366147\r\n Aditya Sharma : +91-9571603402\r\n Arun Gahlot : +91-8114466747\r\n Chandraveer Singh Rathore : +91-8955721733",
"class": "col-sm-4 col-xs-6"
},
{
"id": "210",
"name": "FORMULA ZERO",
"category": "2",
"type": "3",
"title": "formula-zero",
"about": "<b>Task:</b><ol><li>Teams must build a manually controlled machine which can run on the track provided with minimum time.</li><li>The bot can be wired or wireless. In case the participants use wireless mechanism, they must use dual frequency remote.</li></ol><b>Arena:</b>\r\nThe arena consists of the following:\r\n<ol><li>Track filled with pebbles, sand, water, spikes, soil, etc.</li><li>Five ramps, with inclination of 20 degrees and 30 degrees.</li><li>Semi cylindrical shaped hurdle of diameter 500 mm.</li></ol><b>Note:</b>\r\n The dimensions of the arena will be accurate to within 5% or 20mm, whichever is less.\r\n The diameter of the pipe may vary within +/- 10 mm.\r\n\r\n<a href=\"/assets/img/logo/events/quanta/formula-zero.jpg\" target=\"_blank\"><b>CHECK TRACK HERE</b></a>\r\n<i>The arena may be slightly different.</i>\r\n\r\n<b>Bot Specifications:</b><ol><li>The dimensions of the bot should be less than or equal to 300 mm X 300 mm X 300 mm ,failing which the team will be disqualified from the competition.</li><li>The bot should be controlled manually.</li><li>Teams can use both wired as well as wireless control mechanisms. In case of wired bots, the length of wire should be minimum 2 meters so that the wire remains slack at any instant of time. If the participants use wireless mechanism then it is mandatory to use a dual frequency remote.</li><li>The dimensions of the remote are not included in the size constraint of the bot.</li><li>Bot can have an on-board or off-board power supply.</li><li>Irrespective of the mechanism used, only one person will be allowed to control the bot.</li></ol><b>Power Supply:</b><ol><li>The participants can use an on-board or off-board electric power supply. However the power source must be non-polluting and must satisfy the safety constraints determined by the organizers.</li><li>The voltage between any two points should be less than or equal to 24V DC at all times during the run.</li><li>In case of off-board power supply, participants have to manage on their own.</li></ol><b>Gameplay:</b><ol><li>The bot must start from the START line.</li><li>There are 10 Test Modules in the track.</li><li>Each Test Modules has specified points, viz.<ul><li>Test Modules 1 : 30 points.</li><li>Test Modules 2 : 30 points.</li><li>Test Modules 3: 40 points.</li><li>Test Module: 40 points.</li><li>Test Modules 5 : 50 points.</li><li>Test Modules 6: 50 points.</li><li>Test Modules 7 : 60 points.</li><li>Test Modules 8: 60 points.</li><li>Test Modules 9 : 70 points.</li><li>Test Modules 10 : 70 points.</li></ul></li><li>The bot has to cross each level in the given order only.</li><li>If bot is not able to cross a particular level then it can skip that level.</li><li>Maximum number of skips allowed is THREE, failing which will result into disqualification.</li><li>Points of the skipped levels will not be counted.</li><li>It is a time based game, the timer will start when the bot starts running from the START point.</li><li>The timer will not stop while skipping process.</li><li>The timer will count till bot reaches the FINISH point.</li></ol>",
"rules": "<b>Game Rules:</b><ol><li>The machine would be checked for its safety before the run and will be disqualified if found unsafe for other participants.</li><li>Only two team members are allowed to enter in the arena, however only one member is allowed to control the bot. Other team members are not allowed to enter the arena.</li><li>The bot will be liable for disqualification if it causes any kind of damage to the arena.</li><li>In case the bot gets stuck at any place and at any point of time for more than 10 sec, then the bot will be placed back to the initial start position of that Level .The timer won’t be stopped during this process.</li><li>Maximum of 8 minutes will be given for each team for completing the track.</li></ol><b>General Rules:</b><ol><li>The teams must adhere with the spirit of healthy competition.</li><li>Organizers reserve the right to disqualify any team indulging in misbehavior or violating any rules.</li><li>Any team that is not ready at the specified time will be disqualified from the competition automatically.</li><li>The time measured by the organizers will be final and will be used for scoring the teams.</li><li>Time measured by any contestant by any means will not be accepted for scoring.</li><li>In case of any disputes/discrepancies, the organizers' decision will be final and binding.</li><li>The organizers reserve the rights to change any or all of the above rules as they deem fit. Change in rules, if any will be announced before the gameplay.</li><li>Note that at any point of time, the latest information will be that which is given on the day of event. The information provided in the PDF downloaded earlier may not be the latest. However, registered participants will be informed before the game play.</li><li>All decisions taken by the organizing team will be final. No argue will be encouraged.</li></ol><b>Scoring:</b>\r\n<ol><li>Points will be awarded for crossing individual levels as given above.</li><li>Total points for completing track will be 500 points without any skip.</li><li>In skip, equivalent point is added in the participant track completion time as penalty time. </li><li>Total score = Total points + Number of seconds left from 480 seconds (Number of seconds will be accounted only if the bot has crossed the FINISH line).</li><li>The team with maximum points will be the winner.</li></ol><b>Team Specification:</b>\r\nA team may consist of a maximum of 5 members. Students from different educational institutes can form a team.\r\n\r\n<b>Eligibility:</b>\r\nAll students with a valid identity card of their respective educational institutes are eligible to participate in the event.\r\n\r\n<b>Certificate Policy:</b>\r\n<ol><li>Top two teams will be rewarded and given prizes.</li><li>Certificate of participation will be given to all the teams.</li></ol>",
"fees": "Entry Fee : ₹500",
"thumbnail": "quanta/formula-zero.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 12:30 AM to 4:00 PM\r\n<b>Venue: </b> Quadrangle A-Block",
"prize": "1st Prize : ₹5000 + Goodies\r\n2nd Prize : ₹3000 + Goodies",
"coordinators": "Jitendra Sharma: +91-9251642109\r\n Aashutosh Modi: +91-9772019008",
"class": "col-sm-3 col-xs-6"
}, {
"id": "211",
"name": "LINE Follower",
"category": "2",
"type": "3",
"title": "line-follower",
"about": "If the sound of an engine is your daily music and mechanics your religion, we invite you to show the extent of your passion. Let these mind blowing machines hit the track and fight out in the most diverse conditions .They must find their way through several turns while the clock ticks away.",
"rules": "<ol><li>A team may consist of a maximum of 4 members.</li><li>The robot would be checked for their safety before the run and would be discarded if found unsafe for other participants and spectators.</li><li>Participants should not dismantle their robots before the completion of the whole competition as the robots might need to be verified by the judges at a later stage to ensure that the participants have not violated any of the rules.</li><li>Judges' decision shall be treated as final and binding on all.</li><li>The organizers reserve the right to change any or all of the above rules as they deem fit. Change in rules, if any, will be highlighted on the website and notified to the registered participants.</li></ol>\r\n<b>Bot Specification:</b>\r\n<ol><li>Each team is allowed to have only one bot.</li><li>The bot must fit into a cube of dimensions 25cm * 25cm * 25cm.</li><li>The bot can use onboard power supply as well as external offboard power supply.</li><li>The max voltage difference between any two points must not exceed 12V</li><li>The bot must be fully autonomous with all powering and motoring mechanisms self contained.</li><li>Any manual (by switch) or wireless input is not allowed after turning on the power supply.</li><li>Human operators are not permitted to enter any information into the bot during the event.</li></ol>\r\n<b>Arena Specification:</b>\r\nThe competition platform has been designed with a white line on a black surface. The bot will have to move on this line. The line width will be 3.0 cm.\r\n<i>Note: Track will be revealed during the event.</i>\r\n\r\n<b>Scoring:</b>\r\nComplete task in minimum time with clearing all the checkpoints.",
"fees": "Entry Fee : ₹500",
"thumbnail": "quanta/line-follower.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 12:30 PM\r\n<b>Venue: </b> B-301",
"prize": "1st Prize : ₹5000 + Goodies\r\n2nd Prize : ₹3000 + Goodies",
"coordinators": "Mithlesh Yadav: +91-7877217118\r\nChitrangana Singh : +91-7611898897",
"class": "col-sm-3 col-xs-6"
}, {
"id": "212",
"name": "ROBO WAR",
"category": "2",
"type": "3",
"title": "robo-war",
"about": "Robowar is a combat robotics championship, where two custom-build machines use varied methods of destroying or immobilising the other. Robowar promises to be an ultimate battlefield where the bots fight for life and the survival is the only victory. Build the fiercest, meanest, toughest and strongest bot to pave your way through the arena and defeat the opponent in this one-on-one combat. ",
"rules": "<h3>TEAM SPECIFICATIONS AND ELIGIBILITY</h3>\r\n<b>Eligibility:</b> Students of any recognized engineering college are eligible to participate.\r\n\r\n<b>Team Specification:</b> Any team can participate in Robowar. A team may consist of a maximum of 6 participants. These participants can be from same or different institutes.\r\n\r\n<h3>BOT SPECIFICATIONS</h3>\r\n<b>Dimensions and Fabrications:</b>\r\n<ol><li>The machine should fit in a box of dimensions 750mm x 750mm x 1000 mm (l x b x h) at any given point during the match. The external device used to control the machine or any External tank is not included in the size constraint.</li><li>The machine should not exceed 60 kg in weight including the weight of pneumatics source/tank. Weight of power source device(battery,transformer,adapter) excluded.</li></ol>\r\n\r\n<b>Power Sources:</b>\r\n<ol><li>The machine can be powered electrically only. Use of an IC engine in any form is not allowed.</li><li>Each team must prepare its own power sources. Only 220V volt AC sources will be provided at the arena, but can only be used in the form of DC voltage. The teams have to bring their own battery eliminators.</li><li>The voltage difference between any two points in the machine should not be more than 36V DC at any point of time.</li><li>All connections should be made safe to prevent short circuits and battery fires. Any unsafe circuitry may be asked to be replaced; failure to do so will result in disqualification.</li><li>Use of damaged, non-leak proof batteries may lead to disqualification.</li><li>Change of battery will not be allowed during the match.</li><li>It is suggested to have extra batteries ready and charged up during competition so that on advancing to next level, you don't have to wait or suffer due to uncharged battery. If teams don't show up on allotted slot, they will be disqualified.</li></ol>\r\n\r\n<b>Mobility:</b>\r\n<ol><li>All robots must have clearly visible and controlled mobility mechanism in order to compete.</li><li>Methods of mobility may include:<ul><li>Rolling (wheels, tracks or the whole robot).</li><li>Walking (linear actuated legs with no rolling or cam operated motion).</li><li>Shuffling (rotational cam operated legs).</li></ul></li><li>Jumping and hopping is not allowed.</li><li>Flying (using aerofoil, helium balloons, ornithopters, etc.) is not allowed.</li><li>Any other method of mobility which leads the robot to lose contact with the ground is not allowed.</li></ol>\r\n\r\n<b>Robot control requirements:</b>\r\n<ol><li>Both wired and wireless remote controls are allowed in the event.</li><li>All wires coming out of the robot should be bundled as a single unit.</li><li>The wires should be properly protected and insulated.</li><li>The wire should be sufficiently long so as to remain slack at all time during the competition.</li><li>In case of wireless remote controls, the remote should have at least two frequency operations to prevent interference with other team.</li><li>Teams are recommended to attach a pipe to bot in vertical direction through which wires come out. The length of pipe will not be considered in bot dimension.</li></ol>\r\n\r\n<b>Pnumatics and hydraulics:</b>\r\n<ol><li>The robot must use non-inflammable and non-corrosive fluids to power pneumatic and hydraulic devices.</li><li>Maximum pressure in the tank containing pneumatic fluid should not exceed the limit of 8 bars and there should be a provision to check the pressure in the tank.</li><li>All hydraulic liquids are required to be non-corrosive and your device should be leak proof. The maximum pressure in cylinder should not exceed the rated pressure at any point of time.</li><li>Participants must be able to indicate the used pressure with integrated or temporarily fitted pressure gauge.</li><li>You must have a safe way of refilling the system</li><li>All pneumatic components on board a robot must be securely mounted. Care must be taken while mounting the pressure vessel and armour, to ensure that if ruptured it will not escape the robot.</li></ol>\r\n\r\n<h3>Victory Criteria</h3>\r\n<ol><li>A robot is declared victorious if its opponent is immobilized.</li><li>A robot will be declared immobile if it cannot display satisfactory motion of at least 6 inch in a timed period of 30 seconds.</li><li>In case both the robots remain mobile after the end of the round then the winner will be decided subjectively.</li><li>A robot that is deemed unsafe by the judges after the match has begun will be disqualified and therefore declared the loser. The match will be immediately halted and the opponent will be awarded a win.</li><li>If two or more robots become entangled or a crushing or gripping weapon is employed and becomes trapped within another robot, then the competitors should make the timekeeper aware, the fight should be stopped and the robots separated by the safest means.</li><li>Therefore declared the loser. The match will be immediately halted and the opponent will be awarded a win.</li><li>Robots cannot win by pinning or lifting their opponents. Organizers will allow pinning or lifting for a maximum of 20 seconds per pin/lift then the robots will be instructed by the organisers to release. If, after being instructed to do so, the attacker wants to release but does not, their robot may be disqualified. If two or more robots become entangled or a crushing or gripping weapon is employed and becomes trapped within another robot, then the competitors should make the timekeeper aware, the fight should be stopped and the robots separated by the safest means.</li></ol>\r\n\r\n<h3>General Rules</h3>\r\n<ol><li>There will be three rounds of two and half minutes each.</li><li>Any team that is not ready at the time specified will be disqualified.</li><li>In no case should the arena be damaged by any bot. The competition will be played on a knock-out basis.</li><li>A BOT will be declared 'KNOCKED-OUT' if it is unable to travel a distance of 6 inches in 30 seconds.</li><li>If no bot is immobilized then winner will be declared on the basis of the points scored.</li><li>The organizers reserve the rights to change any or all of the above rules as they deem fit. Change in rules, if any will be highlighted on the website and notified to the registered teams.</li><li>Violation of any of the above rules will lead to disqualification.</li><li>Decision of organizers will be final and binding on all.</li></ol>\r\n\r\n<h3>Safety Rules</h3>\r\nCompliance with all event rules is mandatory. It is expected that competitors stay within the rules and procedures of their own accord and do not require constant policing.\r\n<ol><li>Special care should be taken to protect the on-board batteries and pneumatics, robot without proper protection will not be allowed to compete.</li><li>If you have a robot or weapon design that does not fit within the categories set forth in these rules or is in some way ambiguous or borderline, please contact the event organizers. Safe innovation is always encouraged, but surprising the organizers with your brilliant exploitation of a loophole may cause your robot to be disqualified before it even competes.</li><li>Each event has safety inspections. It is at their sole discretion that your robot is allowed to compete. As a builder you are obligated to disclose all operating principles and potential dangers to the inspection staff.</li><li>Proper activation and deactivation of robots is critical. Robots must only be activated in the arena, testing areas, or with expressed consent of the event coordinators.</li><li>All weapons must have a safety cover on any sharp edges.</li><li>All participants build and operate robots at their own risk. Combat robotics is inherently dangerous. There is no amount of regulation that can encompass all the dangers involved. Please take care to not hurt yourself or others when building, testing and competing. Any kind of activity (repairing, battery handling, pneumatics systems etc.) which may cause damage to the surroundings during the stay of the teams in the competition area should not be carried out without the consent of organizers. Not following this rule may result in disqualification.</li><li>All the resources provided at the time of competition from the organizers should be strictly used only after the consent of the organizers.</li><li>Once the robots should enter into the arena, no team member can enter into the arena at any point of time. In case if a fight has to be halted in between and some changes have to be done in the arena or condition on the robot(s), it will be done by organizers only</li></ol>\r\n<b>NOTE: Qualification of a robot to next level is subjective and totally on the decision of the judges. A robot winning in a round against its opponent doesn’t guarantee its entrance into the next round. If the judges found the winner robot incompetent to enter into the next round, it may get disqualified. Judges can disqualify both the robots of a match from advancing to the next round.</b>",
"fees": "Entry Fee : ₹800",
"thumbnail": "quanta/robo-war.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 11:00 AM to 4:30 PM\r\n<b>Venue: </b> Quadrangle A-Block",
"prize": "1st Prize : ₹10,000 + Goodies\r\n2nd Prize : ₹5,000 + Goodies",
"coordinators": "Harish Sharma : +91-8824896963\r\nGaurav Gupta : +91-7791841742",
"class": "col-sm-3 col-xs-6"
}, {
"id": "214",
"name": "COMBATANT ece",
"category": "2",
"type": "3",
"title": "combatant-ece",
"about": "Renovator is a technical event that falls right into the core of engineering. It emphasis on the basic circuits that are involve in the course of engineering. It also disperses light onto the innovation and creativity. Show cases your imagination with circuits to redesign by searching the missing components. The right or wrong selection may lead to new functioning of the circuit.\r\nTo make it simple, the event consist of two rounds, first about the identification of circuit elements and second about the design of already studied circuit",
"rules": "<strong>Round 1: Duration 1 hr</strong>\r\n1 The team size is two.\r\n2 The participant will be having a choice to choose a circuit.\r\n3. Participant will be given 45 minutes to study the circuit and identify missing components and Connects.\r\n4. Teams whose components and connects match nearest will be move to next round.\r\n5. All the circuits are taken from the electronic, electrical, communication, and engineering physics and are the simple illusion of the basic circuitry.\r\n<strong>Round 2: Duration 2 hr</strong>\r\n1 Participants will have to implement the circuit in round one on bread and after verification the circuit has to be transformed on fiber.\r\n2. The soldering, neatness, area used and queries and the output with proper functioning etc will be criteria to evaluate the circuit.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/combatant.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 12:30 PM to 3:30 PM\r\n<b>Venue: </b> Communication Lab (BG-04)",
"prize": "1st Prize : ₹2500\r\n2nd Prize : ₹1500",
"coordinators": "Sanjay Kumar Jain : +91-9982216768\r\nRaveena Shrama : +91-8385917061\r\nRohit Verma : +91-7597628111\r\nRonak Khandelwal : +91-9983632868\r\nNikita Agarwal : +91-9983632868\r\nNeha Kumari : +91-8696759896",
"class": "col-sm-3 col-xs-6"
}, {
"id": "220",
"name": "Propello",
"category": "2",
"type": "2",
"title": "propello",
"about": "Propello is an event of making propulsion device with the use of compressed air.",
"rules": "1. Maximum number of members in each team is 3.\r\n 2. Material for construction will be provided on the spot.\r\n 3. Participants have to construct the device within time limits.\r\n 4. Judging will be done on the basis of the performance of the device.\r\n <b>Guidelines:</b> Propulsion rocket powered with the help of pressurised water. Judging will be done on the basis of time of flight, distance of path covered and trajectory of the device.",
"fees": "Entry Fee : ₹250",
"thumbnail": "quanta/propello.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 9:30 AM to 12:30 PM\r\n<b>Venue: </b>C-BLOCK LAWN",
"prize": "1st Prize : ₹2500\r\n2nd Prize : ₹1500",
"coordinators": "Dinesh Kumar Jain : +91-7611048565\r\nVishvendra kumar : +91-7014690417\r\nNirankar Singh : +91-7732898891",
"class": "col-sm-4 col-xs-6"
}, {
"id": "221",
"name": "Reverse Engineering",
"category": "2",
"type": "3",
"title": "reverse-engineering",
"about": "<strong>\"CASH THE ASH\"</strong>, In this event students have to develop a working model from the available components of a non working or discarded device according their innovative idea. Creating is not finding of a thing but making something out of it after it is found so get your mind work to create something innovative from the ASH.",
"rules": "Participants will have to redesign and invent a working model from non-working projects or things not being utilized per their choice this may be their own (any non-working device at their home).\r\n Participants will demonstrate their working model on the event day.\r\n The teams are expected to make necessary arrangements for demonstration of the working model.\r\n Judges may change and add the rule and guidelines on day of event.\r\n The decision of the judges will be final.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/reverse-engineering.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 3:30 PM\r\n<b>Venue: </b> Electronics Workshop",
"prize": "1st Prize : ₹3000\r\n2nd Prize : ₹2000",
"coordinators": "Prashant Jha : +91-9799953278\r\nRavi Ranjan Pathak : +91-7062424606\r\nPrachi Khandelwal : +91-8739969517\r\nAbhimanyu : +91-8385052586\r\nShambhavi : +91-7240689577\r\nKunal Soni : +91-8955936536",
"class": "col-sm-4 col-xs-6"
}, {
"id": "222",
"name": "Reverse Engineering mechanical",
"category": "2",
"type": "2",
"title": "reverse-engineering-mech",
"about": "Do you think... You know everything about Automobile Engine. This event requires in depth knowledg about various components involved in the assembly of an Automobile Engine.",
"rules": "This event is divided into two stages. In the first stage each team (Two Members) has to clear an objective type test paper, only the qualified teams will be allowed to enter in the second stage. In the second stage each team will be provided an Automobile Engine which they have to disassemble and then again assembleit to the original state. Detailed description of each stage is as follows:\r\n<b>Round 1:</b>\r\n1. This stage is to test the technical skills of the participants.\r\n2. Each team should answer 20 questions (objective type) each carrying 3 marks and 1 mark will bededucted for wrong answer.\r\n3. Duration: 15 minutes.<b>Round 2:</b>\r\n This Stage will be further divided into two phases i.e.<b>Phase-1:</b>\r\n1. An Automobile Engine and a tool kit will be provided to each team.\r\n2. Teams have to disassemble the Automobile Engine up to the last component, identify and note its components.\r\n3. Duration: 30 minutes<b>Phase-2:</b>\r\n1. In this phase teams have to assemble the Automobile Engine to the original state.\r\n2. Upon the completion of the task, a judge will test the knowledge of the participants and awardmarks.\r\n3. It should be clearly kept in mind that any damage caused to the device, no matter how insignificant,will lead to disqualification.\r\n4. Duration: 20 minutes",
"fees": "Entry Fee : ₹150",
"thumbnail": "quanta/reverse-engineering.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 3:30 PM\r\n<b>Venue: </b> Badminton Court",
"prize": "1st Prize : ₹2500\r\n2nd Prize : ₹1500",
"coordinators": "Mohit P.Saini : +91-9782291197\r\nRaja Janmejay : +91-9887520333\r\nAbhijeet Sharma : +91-9462120331\r\nVijaykant gaur : +91-8561031898\r\nArpit Jain : +91-9057972772",
"class": "col-sm-4 col-xs-6"
}
, {
"id": "223",
"name": "NEW VENTURE",
"category": "2",
"type": "1",
"title": "new-venture",
"about": "“NEW VENTURE” is the annual Business Plan competition organized by E-Cell JECRC. \r\nThe event looks for ideas that bridge the divide between a need and the marketplace. The event is judged by a panel of been-there-done-that entrepreneurs, ANGEL’s, SEED FUNDERS and legal experts.\r\n\r\n<h3>3 PHASE OF NEW VENTURE</h3>\r\n<b>1. ONLINE REGISTRATION</b>\r\n your team and tell us about your idea.\r\n\r\n<b>2. TOP 10 B-PLAN SHORTLISTED</b>\r\nIf you got selected, you will get mentored.\r\n\r\n<b>3. FINAL ROUND </b>\r\nShowcase your b-plan in front of investors at our campus.",
"rules": "<ol><li>Participants are required to register and submit b plan online.</li><li>Length- Maximum of 1 pages.</li><li>Submission should contain the name of the business, team members and the institution.</li><li>File should be saved as a PDF with the name ‘NewVenture_team name’.</li><li>Submissions should be mailed to edc@jecrc.ac.in on or before 03rd March,2017 (11:59PM). </li><li>The subject line of the e-mail should read as ‘NewVenture_TeamName’.</li><li>Submissions received after the above mentioned date would not be considered.</li><li>Participants from different colleges in a team is allowed.</li><li>A team can have one or more members with a maximum of 3 in a team. </li><li>Only one submission per student is allowed.</li></ol><b>WHY TO TAKE PART?</b>\r\n1. There's a chance of getting SEED FUND\r\n2. PRIZE MONEY : Winner- Rs. 10000/-\r\n3. Consolation prizes worth Rs. 3000/-\r\n4. INVESTORS AND MARKETING TEAM\r\n\r\n<b>PHASES OF NEW VENTURE</b>\r\n1) ONLINE REGISTRATION : Register your team and tell us about your idea(i.e.The abstract)!!!\r\n2) TOP B-PLANS TO BE SHORTLISTED : Shortlisted teams will present their ideas in front of the investors",
"fees": "Entry Fee : ₹400",
"thumbnail": "quanta/new-venture.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 10:00 AM to 2:00 PM\r\n<b>Venue: </b> C 401 ",
"prize": "1st Prize : ₹10,000\r\n5 Consolation prizes worth ₹3000/-",
"coordinators": "Radhika Sharma : +91-7891538238\r\nAnisha Goyal : +91-9784016561\r\nArpita Jalori : +91-9785107067\r\nRonak Patni : +91-7597344484\r\nShubham Khandelwal : +91-8290395377\r\nAnjali Agarwal : +91-7727900245S\r\nSamarth Tholia : +91-7568088929\r\nShubham Serva : +91-9024886356",
"class": "col-sm-3 col-xs-6"
}, {
"id": "224",
"name": "Best Out Of Waste",
"category": "2",
"type": "5",
"title": "best-out-of-waste(junkyard-war)",
"about": "As the name itself explains “Best Out of Waste”. This is an event in which participants are suppose to make anything to their creativity from the waste products given to them. We will be providing them with the materials from which they need to make any 3D model. To highlight the importance of 3R’s i.e reduce, reuse & recycle for a better future.",
"rules": "<ol><li>Maximum 2 members in a team.</li><li>Use of any kind of mechanical or electrical things and waste materials other than provided is strictly prohibited.</li><li>Participants must reach half an hour prior to the commencement of the event.</li><li>The model created must consist 70% of waste.</li><li>The judge’s decision will be final and cannot be challenged.</li></ol>",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/junkyard-war.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 3:30 PM to 6:30 PM\r\n<b>Venue: </b> Volleyball Court",
"prize": "1st Prize : ₹1500\r\n2nd Prize : ₹800",
"coordinators": "Sukanya Sharma: +91-9119301141\r\nPrabhad Saraswat : +91-7297926655",
"class": "col-sm-4 col-xs-6"
}, {
"id": "225",
"name": "Dexterity- “Bridge O Mania",
"category": "2",
"type": "5",
"title": "Dexterity",
"about": "The event here explores the creativity of participant and his/her understanding off the structure by implementing simple theories of structure and a little mathematics. In this event, participants have to construct a bridge of given dimensions using popsicle sticks.",
"rules": "<ol><li>Maximum 3 members in a team.</li><li>Adhesice and 200 popsicle sticks will be provided on the spot.</li><li>It is not mandatory to use all the popsicle sticks.</li><li>Use of material other than given is not permitted.</li><li>The organizer have all the rights to change any rule at any point of the event.</li><li>Dimensions : Lendht(span)- 50 cm \r\nClearance - 5cm on each side \r\n Width- 10 cm\r\n limiting to an error of 2 cm in width & 4cm in length</li><li.If the structure fails to satisfy any of the above constraints then it will be rejected</li><li>The bridge that meets the above constraints and dimensions supporting maximum weight at center will be declared as the winner \r\n Efficeincy Ratio: Load takesn/weight of the bridge</li></ol>",
"fees": "Entry Fee : ₹250",
"thumbnail": "quanta/dexterity.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 11:00 AM to 2:00 PM\r\n<b>Venue: </b> Basket Ball Court",
"prize": "1st Prize : ₹3000\r\n2nd Prize : ₹2000",
"coordinators": "Hansraj Togara: +91-9001687626\r\nMohit Sharma : +91-8385947312",
"class": "col-sm-4 col-xs-6"
}, {
"id": "226",
"name": "Manthan",
"category": "2",
"type": "5",
"title": "manthan(brain-wiz)",
"about": "The event here explores the basic civil engineering knowledge. This event is a quiz competition comprising of three rounds. First round will be having multiple choice questions followed by second round which is a buzzer round and then a target round which will be having questions from yearly syllabus only.",
"rules": "<ol><li>A team can consist of maximum 2 paticipants.</li><li>Use of mobile phones, calculator or any other electrical accessories is prohibited.</li><li>All forms must be submitted to “www.tinyurl.com/jecrc-manthan” before the dead line.</li><li>The judge’s decision will be final and can’t be argued.</li></ol>",
"fees": "Entry Fee : ₹150",
"thumbnail": "quanta/brain-wiz.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 12:30 PM to 4:30 PM\r\n<b>Venue: </b> C Block - CG 06",
"prize": "1st Prize : ₹2000\r\n2nd Prize : ₹1000",
"coordinators": "Himanshu: +91-9649379551\r\nJasveer : +91-8696784154",
"class": "col-sm-4 col-xs-6"
}, {
"id": "227",
"name": "Pradarshini - How Creative You Are",
"category": "2",
"type": "5",
"title": "pradarshini(poster making)",
"about": "The Event is all about the creativity that one can portray beautifully on the drawing sheet/ cardboard. In this event participants have to convey the messages through drawings on different themes(Environmental issues, Save Girl Child, Modernisation).",
"rules": "1. Interested participant can participate individually or in a team of two.\r\n2. Participants have to bring their own drawing materials as per their requirements.\r\n3. Decision of Judges will be final and cannot be challenged or questioned.",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/poster-making.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 9:30 AM to 1:30 PM\r\n<b>Venue: </b> MD (CE LAB)",
"prize": "1st Prize : ₹1000\r\n2nd Prize : ₹800",
"coordinators": "Poorna: +91-7597925257\r\nRadhika: +91-7062622845",
"class": "col-sm-4 col-xs-6"
}, {
"id": "228",
"name": "ROBO SOCCER",
"category": "2",
"type": "3",
"title": "ROBO SOCCER",
"about": "For all who have passion in Robotics or Sports, RENAISSANCE͛17 presents ͚Robo soccer. This competitions to show how good and swift robot of yours can be by playing soccer using it and scoring more goals.",
"rules":"<b>General Rules:</b>\r\n 1. The robot will get input signals wired/wireless from outside the arena. \r\n 2. Only one team member can control one robot throughout the event. So, at one time, only two team members will be controlling the robots. \r\n 3. No ready-made components should be employed in making the robot. (Except controllers) \r\n 4. If any team is found harming the arena, the team will be disqualified on the spot. \r\n 5. In case of wireless robot, it should contain its own power supply of 12V. \r\n 6. Our team will not be responsible for any damage done to the robot in the arena. \r\n 7. Our team will not be responsible for the noises created due to same frequencies in wireless communication between two teams during game. \r\n 8. Teams have to be present on scheduled time and delay will not be entertained. \r\n 9. In case of any discrepancies, the decision of the event coordinators will be final. \r\n <b> Preliminary Stage: </b> \r\n 1. The teams will have to push maximum number of balls from their arena to the opponent’s arena. \r\n 2. At the same time, teams must also try to push opponent’s ball into to the opponent’s arena. \r\n 3. At the end of given time, team which has the maximum number of ball at the opponents arena will be judged as the winner. \r\n 4. There will be some Partitions in the Arena with different weightage of points and at the end of the time marks will be given according to the position of your balls. \r\n 5. In this stage your main aim is to push maximum number of falls to opponent’s arena. So, you can use your both bots as defender or striker. \r\n 6. The preliminary stage will have two halves, each of 3 min with a break time of 1 min between the two halves. \r\n 7. Any team member is not allowed to touch the robot during the match except during break time. \r\n 8. In case of tie, additional 1 min will be provided for competing. <b>Knock-Out Stage:</b> \r\n 1. The team should score maximum number of goals in order to win the game. \r\n 2. Kicking mechanism can be used here to pass or to score goals. \r\n 3. In this stage, you have to use one of your robot as striker and another as defender. \r\n 4. The knock-out stage will have two halves, each of 4 min with a break time of 1 min between the two halves. \r\n 5. The striker can move in the whole arena but can’t go inside the D line of opponent’s arena whereas the defender of your team cannot cross the half way. \r\n 6. The striker of Team A can make a goal only by hitting the ball from outside of D Line of Team B and vice versa. In case the robot crosses the D Line then there will be negative marking. \r\n 7. In case of tie, additional 2 min will be given for competing. If tie still persists, judges will decide the winner on the basis of performance. \r\n 8. In case the robot of Team A gets stuck to robot of Team B during the match then all the robots will be replaced to the starting position. Violation of any of the above rules will lead to disqualification \r\n <b>Specifications</b> \r\n 1. Dimensions of the robot should be 30cm x 30cm x25cm. (l x b x h) \r\n 2. Weight of the robot should not exceed 2 kg. \r\n 3. Any mechanism of robot should not damage the arena. \r\n 4. Any mechanism should not be used to harm opponent’s robots. \r\n 5. Maximum voltage in the circuit should not exceed 12V at any time. \r\n 6. Current should not exceed 2 Amperes for both wireless and wired. \r\n 7. The RPM of motors used to make the robots should not exceed 200 rpm. The rpm of motors would tested by us using Tachometer. \r\n 8. To avoid noises between the wireless communication during event, team can use remote of 2.4GHz. (optional) \r\n 9. All decisions taken by the organizing team will be deemed as final, and no \r\n more changes will be encouraged, thus holding the full authority to change \r\n any of the above rules as per circumstance. ",
"fees": "Entry Fee : ₹500",
"thumbnail": "quanta/robo-soccer.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 11:30 AM to 3:30 PM\r\n<b>Venue: </b> A block Quadrangle",
"prize": "1st Prize : ₹5000\r\n2nd Prize : ₹3000",
"coordinators": "RISHABH ANAND : +91-9660792263\r\nMAYANK GUPTA : +91-8426094295",
"class": "col-sm-4 col-xs-6"
}, {
"id": "229",
"name": "GAMES OF DRONES",
"category": "2",
"type": "3",
"title": "Drone Dangal",
"about": "Build your Drone to travel from source to destination crossing various interruptions,hurdles, etc., along the path of journey. This is an open event for all (but should not be from any industry or a professional).",
"rules": "\r\nGeneral Rules:\r\n<ol><li>The Drone Copter will be evaluated with various stages of designing, construction,implementation of innovation and flying.</li><li>Each and every part will be observed for judging which includes the connection of various parts, fixing of components, materials used, how the stuff is implemented, etc.</li><li> The timer will start from the moment the countdown finish.</li><li>The timer will stop only when the drone finally comes to start zone. </li><li>The electric voltage anywhere in the machine should not be more then 12V DC at any point of time.</li><li>The organizers reserve the rights to change any or all of the above rules as they deem fit.Change in rules, if any will be highlighted on the website and notified to the registeredteams.</li><li> Violation of any of the above rules will lead to disqualification.</li><li>Decisions of judges will be final and binding on all.</li><li>Participants will be responsible for damage to their drones.</li>\r\nMachine Specifications:\r\n <li> Minimum Dimension: 30cm x 30cm x 10cm</li> <li>Maximum Dimension: 100cm x 100cm x 30cm.</li> <li> Machines should be powered/propelled by non hydrocarbon engine.</li> <li>Teams can bring not only Drones but other flying machines as mentioned Zeplin, Co axial chopper, Tail rotor chopper, Quadrotor, Hexapod, Tripod and Octacopter.</li> <li> If you have a drone that does not fit within the above specifications or is in some way ambiguous or borderline, please contact the event organizers.</li></ol>\r\nCompetition Stages and Elimination rounds\r\n<bold>Round 1</bold><ol><li>The goal will be for the Drone copter to takeoff from a specific location and land withinthe boundary of a predetermined circular landing crossing various hurdles in a time limitof 3 min.</li><li>The performance will be evaluated basis the time taken from takeoff to landing within thespecified circle.</li><li>Teams unable to complete this task or completing task in much more time (compared toother teams) will go through elimination.</li><li>During this stage the teams will be given a maximum of two attempts for take-off andlanding.</li></ol><bold>Round 2</bold><ol><li>This stage meets the perfection in the stability of the Drone Copter.</li><li>During this stage the Drone Copter has to travel through the gaps in the various hurdles.This is a time sensitive round and a maximum of two attempts will be provided. The circuit needs to be completed without avoiding any of the hurdles.</li><li>The hurdles difficulty level will be higher than elimination round.</li><li>The team completing all the above tasks in minimum time with more accuracy will be the winner.</li></ol>",
"fees": "Entry Fee : ₹1000",
"thumbnail": "quanta/game-of-drones.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 1:30 PM to 4:30 PM\r\n<b>Venue: </b> GH LAWN ",
"prize": "1st Prize : ₹8000\r\n2nd Prize : ₹4000",
"coordinators": "Dipanshu Sharma : +91-9772750018\r\nDushyant Marothia : +91-7742434323\r\nGarvit Chugh : +91-9772758587\r\nManav Sharma : +91-9828373549\r\nNikhil Goyal : +91-9549378353\r\nAarushi Singh : +91-9828014663",
"class": "col-sm-4 col-xs-6"
}, {
"id": "230",
"name": "Srajan - AutoCAD",
"category": "2",
"type": "5",
"title": "srajan",
"about": "The event here explores the understanding of AutoCAD. This event will be conducted in two rounds. First round comprising the questions based on basic AutoCAD knowledge followed bysecond round in which participants will have to draw the plan of dimensions provided.",
"rules": "\r\nGeneral Rules:\r\n<ol><li>it is an individual Participant's event.</li><li>Participant will have to work on AutoCAD 2010</li><li> Use of any other electronic device is strictly progibited.</li><li>Judges digital will be final can't be argued.</li></ol>",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/cad-mania.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 2:00 PM to 4:30 PM\r\n<b>Venue: CP- 18 C Blocks</b> ",
"prize": "1st Prize : ₹1500\r\n2nd Prize : ₹800",
"coordinators": "Chandan Chandravanshi : +91-703589862\r\nDurgesh Kumar : +91-9829992126\r\nAshish Singh : +91-9785578585",
"class": "col-sm-4 col-xs-6"
}, {
"id": "231",
"name": "Zenith - Reach Towards Sky",
"category": "2",
"type": "5",
"title": "zenith-rts",
"about": "The event here explores the creativity and understanding of the structure. In this event, participants have to construct a structure of roof and floor standing more or less permanently in one place provided props.",
"rules": "\r\nGeneral Rules:\r\n<ol><li>The participating team must not comprise of more than 3 persons.</li><li>Use of props other than provided is prohibited.</li><li>Use of supports is however allowed</li><li>Participants must carry their own pair of ruler, scissors or any other cutting tool.</li></ol>",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/zenith.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 12:30 PM\r\n<b>Venue: In Front Of C Block</b> ",
"prize": "1st Prize : ₹2000\r\n2nd Prize : ₹1500",
"coordinators": "Neha Akhter : +91-9610663606\r\nAhsan Ullah : +91-9690766389\r\nVikram Sharma : +91-9928510318",
"class": "col-sm-4 col-xs-6"
}, {
"id": "233",
"name": "Technical Hack",
"category": "2",
"type": "3",
"title": "technical hack",
"about": "The event is to develop research activity among students. Participants will try to match results of research papers in given prescribed time. The participants in the next level will have to draft abstract and title of another research paper. The shortlisted participant will have to present a Power point presentation of the same paper in the next level.",
"rules": "1. The event consists of three rounds. First round is online round where as the other two rounds are offline. \r\n 2. Open for all branches. \r\n 3. Use of internet is permitted for first round only. Duration of first round is around two weeks. \r\n 4. Round 2 and 3 will be conducted on 11 th March, 2017. \r\n 5. Decision of the judges will be final. <b>\r\n Rules for Round 1 – </b>\r\n 1. Teams have to simulate a portion of the paper given to them in specified number of days. \r\n 2. Participating teams can opt the research interest from list of areas specified. \r\n 3. A research paper will be allotted as per their research area. \r\n 4. First round has no elimination but the credits will be added in round two for the elimination.\r\n <b> Rules for Round 2 </b>\r\n 1. Teams will be given a research paper and they have to write the abstract and title for it. \r\n 2. Selected teams will move to the next round. \r\n 3. Time period- (1.5hr)\r\n <b> Rules for Round 3 – </b> \r\n 1. The teams will be provided with facilities to prepare power point presentations for their research papers within duration of one hour. \r\n 2. Each team will be given 10 minutes to present the presentation and handle the queries. \r\n 3. Participants will be evaluated on the basis of communication skills, content and handling of queries.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/technical-hack.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 9:30 AM to 1:30 PM\r\n<b>Venue: </b>MAT LAB B-BLOCK GROUND FLOOR (BG-09) ",
"prize": "1st Prize : ₹2000\r\n2nd Prize : ₹1500",
"coordinators": "AISHWARYA SHARMA : +91-7891504055\r\nADITYA SHARMA : +91-9413288087\r\nAMIT KUMAR : +91-7073319621\r\nANUSHKA AGARWA : +91-9024726376",
"class": "col-sm-4 col-xs-6"
}, {
"id": "234",
"name": "Meditation",
"category": "2",
"type": "1",
"title": "meditation",
"about": "Spiritual Research Cell is a novel initiative to uplift the virtues and to build up \r\n the moral muscle of the to-be engineers. It is the perfect place to nurture the \r\n inner-self with power of meditation. \r\n ‘Enlightenment’ is a three hour workshop specially designed for young \r\n explorers who embark on journey of self-discovery. Come with us on this \r\n journey inside to explore, to experience and enjoy a precious part of you that \r\n remains hidden unless visited. This journey will create path ways for you into a \r\n future that is rich with happiness and success.",
"rules":"In this exciting 3-hr workshop you will get a chance to: \r\n 1. Clarify your understanding on Meditation \r\n 2. Get familiar through Audio-Visual Meditation \r\n 3. Experience live Meditation Session \r\n 4. Rejuvenate through pat therapy \r\n 5. Be a lucky winner to know your Bio-age through Karada-scan & for live demonstration of Human Aura Scanning and its analysis \r\n 6. Involve in activity to experience Thought PowerRegistration for first come first serve. \r\n 2. Limited 25 seats. \r\n 3. Participants must carry passes during the event. \r\n 4. Participants must reach 15 mins before the commencement of workshop. \r\n 5. Certificates will be issued only if full 3hr workshop is attended.",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/meditation.png",
"venue": "<b>Date: </b> 9th and 10th March, 2017\r\n<b>Time: </b> 9:30 AM to 12:30 PM\r\n<b>Venue: </b>Wisdom hall, Spiritual Research Cell, Near BH-1, JECRC",
"prize": "Two lucky winners will get opportunity of Karadascan & Aura Scanning.",
"coordinators": "Gaurav Trivedi \r\nRishika Agarwal \r\nArush Maski \r\nAkash Damotiya \r\nRitika Safaya",
"class": "col-sm-3 col-xs-6"
} ,
{
"id": "235",
"name": "Jugaad The Technique ",
"category": "2",
"type": "6",
"title": "Jugaad The Technique",
"about": "In this event the participant will present the things/ project/ techniques/ jugaad made up of waste materials. It should be an innovative fix for your business an improvised solution born from ingenuity and cleverness.",
"rules": "<b>Members in a team :</b> 3 (Maximum)\r\n<b>The jugaad will be judged in 4 different areas.</b>\r\nTechnique 10 marks\r\nPresentation 10 marks\r\nInnovation 10 marks\r\nApplication 20 marks",
"fees": "Entry Fee : ₹150",
"thumbnail": "quanta/junkyard-war.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 3:30 AM to 6:30 PM\r\n<b>Venue: In Front Of CG, CF Block-C </b> ",
"prize": "1st Prize : ₹2000\r\n2nd Prize : ₹1000",
"coordinators": "Aakanksha Sharma : +91-9871066599\r\nAbhishek Agarwal : +91-9929245579",
"class": "col-sm-3 col-xs-6"
},
{
"id": "236",
"name": "Let Me Speak",
"category": "2",
"type": "6",
"title": "Let Me Speak ",
"about": " Extempore is basically impromptu speech where a speaker is provided with a topic/picture to speak instantly i.e. on the spot. Here, a speaker can speak either for the motion or against the motion.",
"rules": "There will be three rounds of one minute each",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/let.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 12:00 PM\r\n<b>Venue: </b>401- Seminar Hall (C- Block) Level-4 ",
"prize": "1st Prize : ₹2000\r\n2nd Prize : ₹1500",
"coordinators": " Shruti Shukla : +91-8854822110\r\nAmbuj Shukla : +91- 9461545859\r\nPrajjwal Joshi : +91-7737571623",
"class": "col-sm-3 col-xs-6"
},{
"id": "237",
"name": "Pen It Down",
"category": "2",
"type": "6",
"title": "Pen It Down",
"about": "Pen it Down event is based on the fact that Every Picture tells a story. Pen it Down is a mouse down event. It shows the potential indulge in individual one for imagination, creativity, presence of mind with visual scenes. Observation of visual clippings creates the new story which should be so much frictional but show the real correlation. ",
"rules": "<ol><li>Number of Story Clips – 5</li><li>Each Clip will contain 10 Scenes</li><li>Total Marks – 50</li><li>Time Period for Story Writing– ½ Hour</li><li>Maximum Words – 800 - 1000</li><li>Fees: Entry Fees:- Rs. 50/-</li></ol>",
"fees": "Entry Fee : ₹50",
"thumbnail": "quanta/pen-it-down.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 12:30 PM to 03:30 PM\r\n<b>Venue: </b>IBM Lab - A Block ",
"prize": "1st Prize : ₹1000\r\n2nd Prize : ₹500",
"coordinators": " Nitisha Agarwal : +91-7742410955\r\nNirmal Lakhara : +91- 8829888910",
"class": "col-sm-3 col-xs-6"
},
{
"id": "238",
"name": "Q-Fiesta (Applied Sciece)",
"category": "2",
"type": "6",
"title": "Q-Fiest ",
"about": "Q-Fiesta is an innovative science quiz having three different and interesting rounds like Dekh Bhai Dekh, Mein Bolta Tum Poochta & Dramebaz, in which very popular and interesting questions, theorems, reactions & principles from Physics, Chemistry, Maths & English would be asked.",
"rules": "<ol><li>There will be 4 members in a team.</li><li>Screening will be there on the basis of questioner.</li><li>12 Teams will be selected for the first round.</li><li>After first round three teams will be eliminated and threemore after second round.</li><li>Team will be given one minute time to answer the question.</li><li>In case of any discrepancy the decision of the judges would be the final decision.</li></ol>",
"fees": "Entry Fee : ₹250 Per Team (4 Member)",
"thumbnail": "quanta/brain-wiz.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 12:30 PM to 04:30 PM\r\n<b>Venue: </b>Seminar Hall (501) Block-C ",
"prize": "1st Prize : ₹2000\r\n2nd Prize : ₹1500",
"coordinators": " Harsh Sharma : +91-9252375955\r\nMohit Shah : +91- 7737766135",
"class": "col-sm-3 col-xs-6"
},
{
"id": "239",
"name": "Drishyam - Poster Presentation",
"category": "2",
"type": "6",
"title": "Drishyam",
"about": "Posters are a key component of communicating science and an important element in a successful scientific career. This session will be a visual representation of given topic. Typically, participants will stand next to their display and will explain the poster along with the informal questions about their poster.",
"rules": "<ol><li>Use A1 size sheet (23.4 x 33.1 in)</li><li>visuals (graphs, photographs, schematics, maps, etc.) should be included with the text.</li><li>Lettering Title: CAPS</li><li>Topics: Green Campus Clean Campus, Energy Conservation, Save Environment, Sustainable Development </li><li>Judgement - Content: 15 Marks, Presentation: 15 Marks, Queries: 10 Marks, Display: 10 Marks</li></ol>",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/drishyam.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 09:30 AM to 1:30 PM\r\n<b>Venue: </b>CG & CF Of Block C ",
"prize": "1st Prize : ₹1000\r\n2nd Prize : ₹500",
"coordinators": " Hardeep Singh : +91-9649172521\r\nMahipal Singh : +91- 8899791956",
"class": "col-sm-12 col-xs-6"
}
,
{
"id": "240",
"name": "R-MECH OLYMPIAD",
"category": "2",
"type": "2",
"title": "R-MECH OLYMPIAD",
"about": "A real test of engineering aptitude for the Mechanical Engineering students.",
"rules": "1. This event is for JECRC students only.\r\n 2. The participants must bring their smart phone for CBT.\r\n 3. During the exam students are not allowed to leave the room for drinking water and any other services.\r\n <b> Round 1:</b> \r\n1. 50 Basic Mechanical Engineering questions are to be answered in 60 minutes \r\n2. For Ist year students the question paper will comprise of basic question from PCM \r\n3. 50% students will be qualified for the next round. \r\n4. The qualified students will be further divided as per their year of study. <b> Round 2: </b> \r\n1. 30 core Mechanical Engineering questions are to be answered in 30 minutes. \r\n2. For Ist year students the paper will comprise of basic engineering question \r\n3. Participation certificates will be given to every student who qualified the I st round.",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/olympiad-rmech.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 12:30 AM to 3:30 PM\r\n<b>Venue: </b>BT-07 & BT-14 ",
"prize": "1st Prize : ₹1500\r\n2nd Prize : ₹750 \r\nConsolation Prize: Rs. 300 (2 in Each Year)",
"coordinators": "Linkon Gori : +91-9462181912 \r\nYogesh Yadav : +91-8559909689 \r\nKuldeep Soni : +91-9929862949",
"class": "col-sm-4 col-xs-6"
},
{
"id": "241",
"name": "Brain Quest",
"category": "2",
"type": "2",
"title": "brain quest(Quiz)",
"about": "A test of knowledge, exclusively in Mechanical Engineering discipline as a competition between Individuals and Teams as a form of awareness.",
"rules": "1. Only team (maximum of 3 person) entries are eligible.\r\n 2. Maximum three teams from a college and total 10 teams will be registered for event.\r\n 3. Audiences shall not give any hints or clues to the competitors.\r\n 4. Decision of judges will be final and binding.\r\n <b> ROUND 1: </b> \r\n <b> Stage-I:</b> This round is paper round in which each team would be given a set of question paper containing 20 multiple choice, True/False, specific answer type questions are to be answered in 10 minutes. \r\n <b>Stage-II [Rapid Fire Round]:</b> Each team will be asked 10 questions one after another in five minute time. (2 marks for correct answer and 1 negative marks for wrong answer) \r\n • The score of Stage I and II will be added and top 8 teams would be selected for the Final Round. \r\n <b> ROUND 2: \r\n Stage-I: </b> \r\n • A question will be asked to a team and if they are unable to answer it will be passed to the next team. Answering time is only 15 seconds. \r\n (2 marks for correct answer, 1 negative mark for wrong answer and no marks if team pass the question to next team. ) \r\n <b>Stage-II [Tech. Dumb Charades]:</b> \r\n Identify the object with the help of gesture. (2 marks for correct answer) Incase the team is not able to answer then the question would be passed to the audience. \r\n <b>Stage-III [Buzzer Round]:</b> \r\n • 10 questions would be asked. A question will be fired and the team who presses the buzzer first will answer (2 marks for correct answer and 1 negative mark for wrong answer). Unanswered/Wrong answered questions will be passed to audiences. \r\n • In case of tie between 2 or more teams, further 5 questions would be asked for final selection.",
"fees": "Entry Fee : ₹300",
"thumbnail": "quanta/brain-wiz.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 12:30 AM to 4:30 PM\r\n<b>Venue: </b>BT-07 & BT-14 ",
"prize": "1st Prize : ₹2100\r\n2nd Prize : ₹1100 \r\n3rd Prize : ₹700",
"coordinators": "Jayesh Garg : +91-7665426077 \r\nKanaram : +91-8386881879 \r\nHimanshu Rai : +91-9166170366 \r\nPratyush : +91-9549938874 \r\n Manish sain : +91-9680357494",
"class": "col-sm-4 col-xs-6"
}
,
{
"id": "242",
"name": "IVSHOW",
"category": "2",
"type": "2",
"title": "IVshow",
"about": "IVSHOW has the main motto to read the speed of Engineers mind. In this regard, we have enclosed the Innovative video competition which named as IVSHOW. This event gives the platform to the students to show their hidden talent with engineering innovative videos collection and motivates the rest of the students to think to be innovative.",
"rules": "1. Individual participation only. \r\n 2. The Video will be judged on the basis of their innovation, in depth knowledge of the field and the \r\n decision of the judges will be final and binding. \r\n 3. Video should be in HD format. \r\n 4. The time for video presentation will be 5 minutes and for questions 2 minutes will be provided. \r\n 5. Any extension in the allotted time will result in the loss of points. \r\n <b>Guidelines:</b> \r\n 1. For the presentations, a LCD projector, a computer, a mike and speakers will be provided. \r\n2. Video should be relevant and belong to engineering field.",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/iv-show.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 2:30 PM to 4:30 PM\r\n<b>Venue: </b>C-501",
"prize": "1st Prize : ₹1500\r\n2nd Prize : ₹1000 ",
"coordinators": "Vivek Soni : +91-7792856564 \r\nShubham Khandelwal : +91-9530031335 \r\nParul Yadav : +91-7728820030 \r\nSuraj Prajapati : +91-9694565854 \r\nPrince Sharma : +91-9828941454",
"class": "col-sm-4 col-xs-6"
},
{
"id": "243",
"name": "quizolic ece",
"category": "2",
"type": "3",
"title": "Quizolic",
"about": "A quiz is more than just a collection of questions in search of answers. It is a reflection of the times we live and have lived in. The event presents a medley of well gleaned technical questions to test the intellectual capabilities. If Archie was the first and backrub became Google, the advent of search engines and internet has meant that answers to anything are just a click away.",
"rules":"1. The event has four rounds. \r\n 2. Maximum number of participants per team is two. \r\n 3. In first round 20 questions will be provided. \r\n 4. The elimination of teams depends on the cut off decided by the judges. \r\n 5. A chit will be drawn from the pot which will consist of three questions. \r\n 6. The students will be given 2 minutes time to solve the three questions. \r\n 7. The participants who qualify in round two will appear for next round. \r\n 8. Round three is a visual round. \r\n9. In round four the top five teams will be participating, which will be buzzer round. \r\n <b>General Rules</b>\r\n 1. Use of calculators, mobiles and other electronic gadgets is strictly prohibited. \r\n 2. Team members can be from different colleges and branches and years.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/brain-wiz.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 12:30AM to 4:30PM\r\n<b>Venue: </b>LT, CAD LAB",
"prize": "1st Prize : ₹2500\r\n2nd Prize : ₹1500 ",
"coordinators": "\r\nHarshil Jain : +91-8094592266 \r\nManmeet Kaur : +91-7073587937 \r\nArpit Singhal : +91-8426040666 \r\nAjay Agarwal : +91-7727989894 \r\nAneesh Ansari : +91-9455108610",
"class": "col-sm-4 col-xs-6"
},{
"id": "244",
"name": "Techno InBuzz",
"category": "2",
"type": "3",
"title": "Quizolic buzz",
"about": "When you want to know how things really work, study them when they're coming apart.William Gibson, Zero History Techno InBuzz is a Technical poster presentation. This is the presentation of research information or an idea with an academic or professional focus on a poster. For any professional, communicating his/her idea efficiently determines his success professionally. The primary motive of this competition is to enhance the ability to deliver a visual presentation without any other audio/video aids. This event basically focuses on the creativity of the students. Here in Renaissance we provide you a platform to showcase your innovation, creativity, knowledge, and ability to tackle queries.",
"rules":"Team size should not be more than three. \r\n 2. Each team must come along with their prepared posters. \r\n 3. The themes can be selected from the underlined : Electronics & Electrical Mechanical & Civil Computer Science & Information Technology Basic Sciences \r\n 4. The size of poster should be of following dimensions A1 (23.4 x 33.1 in) size. \r\n 5. Judges will evaluate the posters on given criteria like creativity, future aspects and Presentation and queries. \r\n 6. The judges will short list teams for second round. \r\n 7. Second round will be the Blaze round (rapid fire) consisting of questions related to their Creative design. \r\n 8. Top scorer will be announced as Winner and runner up. \r\n 9. The decision of the judges will be final and cannot be questioned.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/techno-inbuzz.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 9:30AM to 11:30PM\r\n<b>Venue: </b>B-Block Foyer",
"prize": "1st Prize : ₹3000\r\n2nd Prize : ₹2000 ",
"coordinators": "Aditya Gautam : +91-8764249905 \r\nAshish John : +91-9414422690 \r\nAditya Vardhan : +91-9462963842 \r\nAnkit Sankhla : +91-9636733796 \r\nAshish Agarwal : +91-8560813164 \r\nAyush Jain : +91-9462178437",
"class": "col-sm-4 col-xs-6"
},{
"id": "245",
"name": "embryo ee",
"category": "2",
"type": "4",
"title": "embryo ee",
"about": "In this event student will have to present a paper on a topic from electrical or electronics engineering.",
"rules":"1. Maximum number of participants in a Team is 2. \r\n 2. The topics of the papers need to be based on streams related to electrical and electronics engineering. \r\n 3. Abstract should not exceed 300 words and Paper should not exceed 6-7 pages. \r\n 4. The subject of the mail with the attached abstract and later. \r\n 5. Bring your college I-Card & receipt on event day. \r\n 6. Please bring your Power Point presentation in a pen-drive. \r\n 7. Soft-copies of the submitted paper and PowerPoint presentations must be in the .docx format. \r\n 8. Please Mail your abstract, paper and ppt to vishalsharma.ee@jecrc.ac.in Difficulties will be addressed through the same email-id. \r\n 9. Please bring 01 hard copy of the submitted paper on the day of the event. \r\n 10. The teams will get 10 minutes for presentation followed by question and answer session. \r\n 11. Persons from different institutions can be a part of the same team. However, one person may not be a part of multiple teams for the same event. \r\n 12. The mail with submissions should contain: Title- theme of the paper. Name of both the authors . Phone no of both the authors. E- mail ID . \r\n 13. The abstract mail should contain abstract, your e-mail id and mobile number. \r\n 14. The decision of judges will be final and no arguments or appeal will be entertained.",
"fees": "Entry Fee : ₹100",
"thumbnail": "quanta/embryo.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 11:0AM to 4:00PM\r\n<b>Venue: </b>Conference hall (A block)",
"prize": "1st Prize : ₹1100\r\n2nd Prize : ₹750 ",
"coordinators": "Akshita Mangal : +91-9460441766\r\nHarshit Jain : +91-8233437773\r\nAnurag Garg : +91-8058454802\r\nShubham Agrawal : +91-7619726022\r\nNeha Gour : +91-9001247068\r\nAyush Bhatnagar : +91-9571067121\r\nNanika Gee Padha : +91-9610974442",
"class": "col-sm-4 col-xs-6"
},{
"id": "246",
"name": "Electro Quizzard",
"category": "2",
"type": "4",
"title": "Electro Quizzard",
"about": "Quiz will be based on the Basic electrical, Basic electronics, Environment energy and ecology questions.",
"rules": "There can be maximum of 4 and minimum of 2 members in a team. \r\n • There will be 4 rounds. \r\n • Teams not having cut off marks in each round will be eliminated. \r\n • In case of any tie there will be sudden death question where team giving correct answer will qualify for next round. \r\n • 1 st round will be visual round where questions will be displayed and students will have to answer them. \r\n • 2 nd round will be based on general and logical technical questions. \r\n • 3 rd round will be rapid fire round. \r\n • 4 th and final round will be buzzer round. \r\n • Team with maximum points after the end of 4 th round will be declared winner of the quiz. \r\n • In case of any conflict the decision of judges will be final. \r\n • Use of internet will be strictly prohibited. Any team found with this will be disqualified",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/brain-wiz.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 12:30AM to 4:30PM\r\n<b>Venue: </b>EE Cad Lab, CP-15 (B-Block)",
"prize": "1st Prize : ₹1100\r\n2nd Prize : ₹700 ",
"coordinators": "Him Shikhar : +91-7062709998 \r\nTushar Jain : +91-8561970403> \r\nVipul Jain : +91-8502082322> \r\nTanuj sukhpadia : +91-8058950867",
"class": "col-sm-4 col-xs-6"
},{
"id": "247",
"category": "2",
"name": "AUTOMAGIC",
"type": "4",
"title": "AUTOMAGIC",
"about": "AUMAGIC (Automatic process is a Technical Contest in which students compete for supremacy in the field of automation process in the industries. Automation processes are the part of manufacturing plants of different products. Automation process can be achieved with the help of relays also in the small Process Industries",
"rules": "There may be maximum 4 students in one group. \r\n 2. Each team will provide the name of automatic operation at the time of registration. \r\n 3. Team is allowed to use one or more electromagnetic Relays. \r\n 4. Microcontroller and PLC are not allowed to use. \r\n 5. Relays, limit switches, sensors, push buttons, indicating lights, selector switches, alarms, horns, motors, solenoid valves can be used to make the operation. \r\n 6. All the components are to be connected on wooden board \r\n 7. Team has to perform an automation operation at the time of event. \r\n 8. Registration will be open from 10/2/2017 to 24/2/2017. \r\n 9. Registration fee is 200/ per group \r\n 10. In case of any conflict the decision of judges will be final. \r\n 11. ID card is mandatory",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/auto-magic.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 9:30AM to 12:30PM\r\n<b>Venue: </b>PE Lab , B- Block",
"prize": "1st Prize : ₹2100\r\n2nd Prize : ₹1100 ",
"coordinators": "Romit Malav : +91-9460954765\r\nPrakash Bijarniya : +91-8003017483\r\nSandeep Pareek : +91-7597589351\r\n Navjot singh : +91-8003044197\r\nAnju Shukla : +91-7062829517\r\nNeeraj Singla : +91-8764375636",
"class": "col-sm-4 margin-events3 col-xs-6"
},{
"id": "248",
"category": "2",
"name": "Crazy Innovators ee",
"type": "4",
"title": "Crazy Innovators ee",
"about": "The extraordinary event aimed to discuss innovative technologies, ideas and projects that may find their business solutions in the cross border economy. If you have the passion to think out of the box which can evolve as a new technology then you’ve reached the right place i.e. \"CRAZY INNOVATORS\"",
"rules": "ID card is mandatory. \r\n • Demonstration time is maximum 10 mins. \r\n • Build a small and nimble team ( 2 participants). \r\n • Decision of the judges will be final and will not be subjected to any further discussion \r\n • Registration fee is Rs 200 per team. \r\n • Open for all branches. \r\n • Spot entries are allowed. \r\n • Any act against the spirit of the event will lead to disqualification of the team.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/crazy-innovtor.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30AM to 12:30PM\r\n<b>Venue: </b>PE Lab , B- Block",
"prize": "1st Prize : ₹2100\r\n2nd Prize : ₹1600 ",
"coordinators": "Aayushi Mukhija : +91-7023733082\r\nAman Bansal : +91-7689045659\r\nBharti Naraniya : +91-9352703037\r\nMukul bhardwaj : +91-9414317133\r\nUttam kumar : +91-7728040678\r\nVivek",
"class": "col-sm-3 col-xs-6"
},{
"id": "250",
"name": "embryo cs",
"category": "2",
"type": "1",
"title": "embryo cs",
"about": "EMBRYO - A National level paper presentation contest where different Scientific & Technical researches ignited with innovative ideas meet under the same shed. A mode of enhancing the doors to explore different technologies flavored with the stage skills of individual giving them an opportunity to think and helps in bringing out professionalism. So, gather your research, proliferate your energy and get ready for EMBRYO-2K17.",
"rules":"1. First stage involves submitting paper(IEEE format) of about 500 words at embryo2k17@gmail.com before 5 th March. Entries shortlisted will be called to present their paper in RENAISSANCE’17 at JECRC campus on 8 th March. \r\n 2. Maximum 2 students per team are allowed to present a paper, both member must be present at the event. \r\n 3. The decision of judges will be final and binding. \r\n A. Presentation should be in .ppt or .pdf format. \r\n B. Time for one presentation will be 5-7 minute, one buzzer will rung after 5 minute to remind of time and the participant have to conclude the presentation in a total of 7 minutes. \r\n C. The papers will be judged on the basis of their innovation, in depth knowledge of the field and presentation skills.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/embryo.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 11:0AM to 4:00PM\r\n<b>Venue: </b>CS-501,C-Block",
"prize": "1st Prize : ₹3000\r\n2nd Prize : ₹2000 ",
"coordinators": "Kamakhya Bansal – 7413029001 \r\nPriyanshu Gupta – 8239919466 \r\n Ishmeet Kaur – 8058468569 \r\n Aman Agrawal – 8946912785 \r\n Akshay Jain – 9983543400",
"class": "col-sm-3 col-xs-6"
},{
"id": "251",
"name": "Reverse Engineering CS",
"category": "2",
"type": "1",
"title": "reverse-engineering(Hardware Assembling)",
"about": "First time ever in JECRC.A competition is designed for students to display and enhance skills in PC assembling with great precision and speed. Participants will demonstrate their ability to follow instructions to put together a PC using the right components and tools until it has started to successful boot.",
"rules":"1. Two participants per team allowed. Participants will have to assemble the computer from the available components \r\n 2. Participants must carry their ID cards with them. \r\n 3. Participants must reach 15 minutes before commencement of the event. \r\n 4. Team that will take least time in assembling will win. \r\n 5. Care should be taken that given hardware is handled properly.",
"fees": "Entry Fee : ₹200",
"thumbnail": "quanta/reverse-engineering.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 9:30 AM to 3:30 PM\r\n<b>Venue: </b> CP5 , A block",
"prize": "1st Prize : ₹5000\r\nConsolation prizes",
"coordinators": "Ramashish Tomar : +91-8005889345 \r\n Utkarsh Mundra : +91-8764397750 \r\n Astha Koul : +91-8003746646.",
"class": "col-sm-3 col-xs-6"
}
]
},
"3": {
"name": "Endeavour",
"thumb": "endeavour.png",
"coordinators": "[{\"name\":\"User 1\",\"number\":123456},{\"name\":\"User 2\",\"number\":123456}]",
"events": [{
"id": "301",
"name": "ADAA",
"category": "3",
"type": "0",
"title": "adaa",
"about": "\"Every day is a fashion show and the world is your runway\"\r\nChannel step into the world of fashion. This is your moment into spotlight, Strut down the ramp and strike up a pose, let those cameras click and flick to capture you in the perfect combination of creativity, flamboyance and attitude.",
"rules": "<ol><li>Team members - Max 16, Min 7 (Including Backstage Members).</li><li>Duration of performance - Min 8(Eight) Minute, Max 12(Ten) Minute.</li><li>The ramp will be I-shaped.</li><li>Teams exceeding time limit will be negatively marked.</li><li>The music CD and a pen-drive (both containing the music tracks) should be submitted at the help desk by 2:00 p.m. on the day of the event.</li><li>Changing rooms will be allotted after reporting with the team.</li><li>No extra time will be given for the introduction. Exceeding the time limit will result in negative marking.</li><li>Please carry one stand by CD for any emergency.</li><li>Usage of fire on the stage is prohibited and teams doing so would be disqualified.</li><li>Backstage helpers should not exceed 3(Three) in number.</li><li>Criteria for judgment<ul><li>Theme (if any)</li><li>Costumes(creativity, relevance to the round)</li><li>Walk</li><li>Music</li><li>Originality</li><li>Coordination</li><li>Choreography</li></ul></li><li>Each team is supposed to submit names of a pair who would represent their team for Mr./Miss contest.</li><li>Mr./Miss Contest may comprise of some rounds(questionnaire,taskoriented,etc) which would be decided on the spot or based on judges demand.</li><li>Participants must carry an IPod or MP3 player.</li><li>Decision of the judges in all matters will be final and binding.</li></ol>",
"fees": "Entry Fee : ₹1,800 (For teams, 7-16 members)",
"thumbnail": "icon/adaa.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 7:00 PM to 10:00 PM\r\n<b>Venue: </b> Central Lawn",
"prize": "1st Prize : Worth ₹ 28000 (including ₹ 20000 cash)\r\n2nd Prize : Worth ₹10000 (including ₹6000 cash)",
"coordinators": "Mehak Pandita : +91-7568736232\r\n Email : mpandita996@gmail.com",
"class": "col-sm-3 col-xs-6"
}, {
"id": "302",
"name": "NUKKAD NATAK",
"category": "3",
"type": "0",
"title": "nukkad-natak",
"about": "Street theatre as a form of communication is deeply rooted in the Indian tradition. It is arguably the oldest form of theatre in existence.In recent times this form has been used to propagate social and political messages and to create an awareness amongst the masses regarding critical issues.\r\n\r\nIt will be a great honour for us if you can take some time out from your busy schedule to come and participate in our fest! ",
"rules": "<ol><li>Street plays can be in Hindi or English.</li><li>Time limit: 15 minutes. Markings will be deducted excedding time limit.</li><li>Usage of abusive language is strictly prohibited and may lead to disqualification.</li><li>Judges' collective decision will be final and binding.</li><li>Use of any sort of hazardous element/prop is strictly prohibited.</li><li>Performance should be confined within the Nuked area, as defined by the organizers</li><li>No technical support will be provided.</li><li>No props are allowed. Teams can use banners and posters.</li><li> Teams are allowed to use musical props as Dholak, Flute or any other music instrument of their choice, but usage of mikes, lights, or other electrical instruments is not allowed.</li><li>Team size:: 15-20 members including those handling music and minimum 5 members.</li><li>No professional assistance is permitted, all team members should be certified students of the institute. Please bring along your identity cards</li><li>Our college will provide free accommodation for the team members on the day of event.</li></ol>",
"fees": "Entry Fee : ₹1,800",
"thumbnail": "icon/nukkad-natak.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 03:30 PM to 06:30 PM\r\n<b>Venue: </b> A Block",
"prize": "1st Prize : ₹12,000 + ₹3,000 coupons\r\n2nd Prize : ₹5,500 + ₹1,500 coupons",
"coordinators": "Divisha Sharma : +91-9414418748\r\nAditya Johri : +91-9602636770\r\nUmangini Panwar : +91-7340300217\r\nShreya Singh : +91-8107317388",
"class": "col-sm-3 col-xs-6"
}, {
"id": "303",
"name": "ANUPRAS",
"category": "3",
"type": "0",
"title": "anupras",
"about": "Words of a poem are mightier than a sword”\r\nPoetry is the oldest form of literature and has a rich written and oral tradition. The poetry reflects diverse spiritual traditions within India. In particular, many Indian poets have been inspired by mystical experiences.\r\nANUPRAS- The Kavi Sammelan, gives you a platform to showcase your expertise & proficiency in poetry.",
"rules": "<ol><li>Individual entries will be allowed.</li><li>Maximum of 5 min will be given to each candidate. Negative marking \twill bedone if one exceeds the mentioned time limit.</li><li>Self-composed and original poems will be given preference.</li><li>The poem should not contain any vulgarity or obscenity, if found the the Participant will be immediately disqualified.</li><li>The decision made by the judges will be final.</li><li>The poems based on current issues, engineering life, quoted with fun, satire and message will be given preference.</li></ol>",
"fees": "For Prelims : ₹100\r\nFor Finals : ₹300 (inclusive the prelims fees for selected candidates) ",
"thumbnail": "icon/anupras.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 1:00 PM to 4:00 PM\r\n<b>Venue: </b> A-block Auditorium",
"prize": "1st Prize : ₹ 7000/ ( ₹ 3500- cash + ₹ 3500- worth coupons)\r\n2nd Prize : ₹ 4500( ₹ 2000- cash + ₹ 2500 worth coupons)",
"coordinators": "Akshat Trivedi\t: +91-8764116853\r\nKishan Mangal : +91-9694605289\r\nGaurav Gupta : +91-8764088661",
"class": "col-sm-3 col-xs-6"
}, {
"id": "304",
"name": "BOOTSTRAPPING",
"category": "3",
"type": "0",
"title": "bootstrapping",
"about": "As someone truly said, “Dance is the hidden language of the soul”. Dancing can alleviate one from stress and troubles and is a delight for the dancers as well as the audience. One can express oneself through dance in a way which is not possible otherwise.\r\nIt would indeed be a pleasure as well honor for us to have your college dance team as a part of the group dance competition, BOOTSTRAPPING and more importantly a part of the fest.",
"rules": "<ol><li>Max 2 teams per college are allowed and each participant shall bring his/her valid original college ID card on the day.</li><li>The min. no. of participants should be 5 (on stage) and maximum is 20. [on stage – min(5) max(15)]</li><li>Time limit will be between 7+1 minutes.</li><li>Pre-recorded music should be brought in a CD/DVD as well as in pen drive in .cda AND .mp3 format only (Other formats may not be supported on the computer – use them at your own risk).</li><li>The teams should bring their own portable music system for practice.</li><li>Individuality & originality of the dance is encouraged.</li><li>Dancers are not restricted from performing any move but they must be aware that it is their own responsibility to ensure that they do not perform moves that could injure themselves or others.</li><li>Obscenity of any kind is not allowed and will lead to immediate disqualification.</li><li>Use of only stage is allowed.</li><li>The use of fireworks, colours,fire and water acts are not allowed.</li><li>There is no restrictions on theme.</li><li>All participants in a group should belong to the same technical or management institution.</li><li>The accommodation for the team outside of Jaipur will be free.</li><li>Decision of the judges and the organizing committee would be final on any issue.</li></ol>",
"fees": "Entry Fee : ₹1,800 (For teams, 5-20 members)",
"thumbnail": "icon/bootstrapping.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 7:30 PM to 10:00 PM\r\n<b>Venue: </b> Central Lawn",
"prize": "1st Prize : INR 22,000 (INR 16000 cash + gift vouchers worth INR 6000)\r\n2nd Prize : INR 12,000 (INR 8000 cash + gift vouchers worth INR 4000) ",
"coordinators": "Monika Gwalani : +91-7790893061\r\nShivani Soni : +91-8764029764\r\nArpit Dadhich : +91-7725969141\r\nIshanvi Modi : +91-8764330206",
"class": "col-sm-3 col-xs-6"
}, {
"id": "305",
"name": "RAGA NIGHT",
"category": "3",
"type": "0",
"title": "raga-night",
"about": "Words make you think. Music makes you feel. A song makes you feel a thought.Singing is in our gene and in human nature.Singing brings happiness whether you want to do it for fun or professionally.So take your inner singer out, leap and be a part of what \"RAGA NIGHT\" has to offer. So grab the opportunity and showcase your singing talent!",
"rules": "<ol><li>It is a solo singing competition.</li><li>Event comprises Eliminations followed by Finals.</li><li>The contestant will have to perform an Indian song of his/her choice in the first round.</li><li>The contestants will also be tested on sense of scale and beat.</li><li>No accompanists are allowed.</li><li>Prelims will be held on March 8th, 2017 from 9 a.m. onwards.</li><li>Only limited number of participants would be allowed and the criteria would be on the first come first registered basis.</li><li>Any rendition must be a film song/album song.</li><li>Criteria for judgement<ul><li>Selection of song</li><li>Co-ordination with music</li><li>Overall impact</li><li>Quality of Singing</li></ul></li></ol>\r\n\r\n<b>Finals:</b><ul><li>A song bank will be made available to the finalists after the elimination round.</li><li>All songs in this stage must be from the song bank.</li><li>Live orchestration will be provided.</li></ul>\r\n\r\n<b>Note:</b><ul><li>Participants must carry an IPod or MP3 player.</li><li>Decision of the judges in all matters will be final and binding.</li></ul>",
"fees": "Entry Fee : ₹300",
"thumbnail": "icon/raga-night.png",
"venue": "<b>Date: </b> 8th March, 2017\r\n<b>Time: </b> 4:30 PM to 6:30 PM\r\n<b>Venue: </b> Central Lawn",
"prize": "1st Prize : ₹6000+4000(Kinds)\r\n2nd Prize : ₹3000+3000(Kinds)",
"coordinators": "Kapil Pandey: +91-8233141967\r\nJanhavi Agarwal : +91-7221834576\r\nSapna Gohrani : +91-9413994477",
"class": "col-sm-3 col-xs-6"
}, {
"id": "306",
"name": "Footloose",
"category": "3",
"type": "0",
"title": "foot-loose",
"about": "Footloose is back and this time with a bang! So lose yourself in this three phase freestlyle dance competition and let your passion sway your body to the rhythm. Flaunt the knack of your dance and get ready to conquer the stage with your sizzling moves.",
"rules": "<ol><center>Round 1<br><strong>Happy feet- The Showcase</center></strong>\r\n\r\n<li>Footloose is an open showcase event.</li><li>Time will be 45 seconds.The dancers should bring their own 45 sec track (in cds,pendrive).</li><li>The dancers should bring their own portable music system for practice.</li><li>Originality of the dance will be encouraged as well as interaction & contacts with the spectators & the other dancers.</li><li>Dancers are not restricted from performing any move but they must be aware that it is their own responsibility to ensure that they do not perform dangerous moves that could injure themselves or others.</li><li>The use of fire works is not allowed.</li></ol></li><ol><center>Round 2<br><strong>Provocation- Random Song challenge</strong></center>\r\n\r\n<li>20 dancers will be selected from 1st round.</li><li>There will be a random song challenge.</li><li>Time will be 1 min 30 sec.</li><li>Marking in this round will be done on the basis of quality of moves & synchronization with music.</li></ol><ol><center>Round 3<br><strong>Bop Till You Drop- Prop Mania</strong></center>\r\n\r\n<li>10 dancers will be selected from 2nd round.</li><li>Time will be 2 min.</li><li>There will be a random song prop challenge.</li><li>Marking in this round will be done on the basis of quality of moves & synchronization with music.</li><li>In case of any dispute, the decision of Judges will be final.</li></ol></li></ol>",
"fees": "Entry Fee : ₹200 <i>per person</i>",
"thumbnail": "icon/footloose.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 5:00 PM to 07:30 PM\r\n<b>Venue: </b> Quadrangle A-Block",
"prize": "1st Prize :- ₹4,000 + vouchers worth ₹2000\r\n2nd Prize :- ₹2,500 + vouchers worth ₹1500\r\n3rd Prize :-₹1,500 + vouchers worth ₹1000\r\n\r\nThe rest 7 participants from the top 10 will get vouchers worth 500 each.",
"coordinators": "Sarthak Behl : +91-8854888441\r\nMeghna Vaishnav : +91-9950215425\r\nAnkit Dwivedi : +91-7742607119",
"class": "col-sm-3 col-xs-6"
}, {
"id": "307",
"name": "ROCK' ATHON",
"category": "3",
"type": "0",
"title": "rockathon",
"about": "Rock’athon A perfect blend of the adrenaline rush of a battle, boisterousness of a mosh pit and rhapsodical music, ROCK’ATHON is the battle of bands organized by JECRC Foundation Jaipur which aims to promote the underground music scene in India.",
"rules": "<ol><li>Each band will be given a max time of 17+5 mins including the sound check.</li><li>Marks will be deducted if the band exceeds the allotted time limit.</li><li>Each band will be provided with a standard drum kit including one ride & one hi-hat. The drummers must carry their extra drum cymbals.</li><li>Use of slang words is strictly prohibited. </li><li>The guitarists are advised to carry their own processors & adapters. </li><li>Bands are required to mail their Band profile along with the video links of their performances at the email addresses provided.</li><li>On the basis of the entries received, the top 6 bands will be selected to perform at the event.</li><li>Bands can have a maximum of 8 members and no member can be a part of more than one bands.</li><li>Decision of judges will be final & binding.</li><li>Any team violating the above rules is subject to direct elimination.</li><li>All participants are supposed to carry their valid ID cards with them.</li></ol>\r\n\r\n<b>General information:</b>\r\nInterested bands please send two of yours good quality videos of live performances & one recorded OC to undersigned. Also mention the names of the band members, contact number & email id of the band manager and Facebook profile link of the band. Selected bands will be notified via email or call. Last date for the entries of the respective event is 5th march 2017. Failing sufficient no. of entries, event will be cancelled and you will be notified about the same.",
"fees": "Entry Fee : ₹1600 Per Team",
"thumbnail": "icon/rockathon.png",
"venue": "<b>Date: </b> 9th March, 2017\r\n<b>Time: </b> 4:10 PM to 7:10 PM\r\n<b>Venue: </b> Central Lawn",
"prize": "Prize Money for the winner is Rs. 20000 worth including cash prize of 14000.\r\nThe best artists will be acknowledged and awarded with prizes worth Rs. 1000 each.",
"coordinators": " Sidhima Shekhawat : +91-8875148974\r\nKanishka Goyal : +91-7597784231 \r\n Shubham veer Saxena : +91-9057792993",
"class": "col-sm-3 col-xs-6"
}, {
"id": "308",
"name": "Vinyl War",
"category": "3",
"type": "0",
"title": "step-up",
"about": "Vinyl War is back and this time with a bang! Move along the music and start mixing the vibes with the songs because the best DJs will be in town for a three hour rocking mania.",
"rules": "<ol><li>Each contesting DJ will be given 12 + 3 minutes of play time.</li><li>Each contestant is required to bring his laptops (in case he/she does not want to use the console) with pre-loaded software (Virtual DJ etc.).</li><li>Any contestant using pre loaded play lists (on laptops) would be disqualified immediately.</li><li> Judges will award points to the participant on the following factors of originality:</li><li>Looping Live</li><li>Running Mixes<strong>Scratching</strong>\r\n<ol>Equalization and balance of sound output</li><li>Selection of tracks.</li><li>Live remixes</li><li>Crowd interaction</li><li>Rapping</li><li>Body language</li><li>Attitude</li><li>DJ’s Using turn tables need to carry their own cartridges.</li><li>Any Participant playing only CD's should change a minimum of 4CD's/ Songs during his set in the given time.</li><li>Any DJ using less than 4 CDs must include 2 Vinyl’s in his/her set.</li><li>Participants will not be allowed to use PREMIXED Mixes in any format in the contest.</li><li>Note: - For any further queries or specialized requirements kindly mention it at the Time of registration. (At least 2 hours before the commencement of the event). </li></ol></li></ol>",
"fees": "Entry Fee : ₹1,200",
"thumbnail": "icon/vinyl-war.png",
"venue": "<b>Date: </b> 10th March, 2017\r\n<b>Time: </b> 06:45 PM to 9:45 PM\r\n<b>Venue: </b> Central Lawn",
"prize": "First Prize: 15000/- ( 10000/- cash INR + 5000/- worth coupons) \r\n Second Prize: 9000/- ( 5000/- cash INR + 4000/- worth coupons)",
"coordinators": "Dixank Dwivedi : +91-9509249899\r\nVishal Jain\r\nSuryanshi Adaniya\r\n Surbhi shriwastav\r\nArpit Gupta",
"class": "col-sm-3 col-xs-6"
}]
},
"4": {
"name": "Alumni",
"thumb": "alumni.png",
"coordinators": "[{\"name\":\"User 1\",\"number\":123456},{\"name\":\"User 2\",\"number\":123456}]",
"events": [{
"id": "401",
"name": "Alumni Panel Discussion-2nd edition",
"category": "4",
"type": "0",
"title": "panel-discussion",
"about": "The panelists discuss the issue or topic with each other by asking questions or reacting to the views and opinions of other panel members. A specific amount of time should be established. The leader or moderator closes the discussion and provides a summary of panel presentations and discussion.The topic for the discussion is (Demonetisation-A cure worse than the disease) ",
"rules": "<ol><li>Number of members in a panel will be six.</li><li>The discussion will be moderated by the moderator.</li><li>Use of abusive language will not be entertained.</li></ol>",
"fees": "Entry Fee : NILL",
"thumbnail": "alumni/panel-discussion.png",
"venue": "<b>Date: </b> 11th March, 2017\r\n<b>Time: </b> 01:30 PM to 3:00 PM\r\n<b>Venue: </b> Conference Hall Block-A",
"prize": " ",
"coordinators": "Japleen Kaur : +91-9309393222\r\nNidhi Agiwal : +91-8764006683\r\nParidhi Sharma : +91-8114489399",
"class": "col-sm-4 col-xs-6"
}, {
"id": "402",
"name": "Let's Hangout - Talk across Oceans",
"category": "4",
"type": "0",
"title": "lets-hangout",
"about": "The session will be taken by'\nMr. Dhruv Mehta(2013,ME)\nFinancial Analyst, California Department of Insurance,USA",