-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
2472 lines (2472 loc) · 158 KB
/
data.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
{
"ECE": [
{
"name": "Hackinfinity",
"category": "hackathon",
"date": "Oct 8 & 9",
"min_team_size": 1,
"max_team_size": 6,
"ssn": false,
"organisers": [
{ "name": "Aishwarya", "phone": 7338935634 },
{ "name": "Nimisha", "phone": 9840780834 }
],
"description": {
"summary": "<i>“Because the people who are crazy enough to think they can change the world are the ones who do”<br/>~Steve Jobs</i><br/><br/>Have you ever been awestruck by the reach of technology? Does its revolutionary touch on this world dazzle you? Have you ever dreamed of being a tech-savvy pioneer? This is your time! Grab the baton! If you want to make the world a better place, the answer lies in creativity and innovation. Now’s your time to take these problems head on and arrive at remarkable solutions!<br/><br/>Join us in this 24 - hour hackathon and prototype a groundbreaking solution to problems in these topics. Creativity is the greatest rebellion in existence. Can you rebel and innovate a solution to the problems in these areas? Brave against the time crunch and grab this opportunity to win exciting prizes!!!<br/><br/> <b>Topics for Problem Statement</b><ul><li>Cyber Security</li><li>Medical and Healthcare</li><li>Women's Safety</li><li>Climate Change and Sustainability</li><li>Fintech</li><li>Agritech</li><li>Student Innovation (Open Idea)</li></ul><br/>The hackathon will have 3 reviews and 1 final presentation over the course of 24 hours. A leader board system will be followed. The points awarded will be the cumulative points, gained by the team over the three reviews and final presentation. The top team will be announced as the winner of the hackathon.<br/><b>*Decision taken by the review panel will be final.</b><br/><br/><b>Platform used: </b> Discord and Google Meet",
"rounds": 5,
"round_description": [
{
"name": "Schedule",
"duration": null,
"description": "<h5>October 8th:</h5><ul><li>10.00 AM – Introduction</li><li>11.00 AM – Hackathon starts</li><li>03.00 PM – First Review</li><li>10.00 PM – Second Review</li></ul><br/><h5>October 9th:</h5><ul><li>08.00 AM – Third Review</li><li>11.00 AM – Hackathon ends</li><li>12.00 PM – Final Presentation</li><li>03.30 PM – Valedictory</li></ul>"
},
{
"name": "General Instructions",
"duration": null,
"description": "<ol><li>All the team members should have a proper internet connection.</li><li>Participants are required to have their own components and software. </li><li>Teams will be allotted separate channels on discord, at least one member is expected to be on the channel at all times.</li><li>The team are expected to give updates on discord at periodic intervals and the reviews will take place on discord.</li><li>Participants will be informed of the order in which reviews will happen and must join their respective channels / meetings at the specified times. </li><li>Mentorship for technical skills will be given.</li><li>Participants are supposed to build their product during the Hackathon. </li><li>Product will be judged based on Innovation, Impact, Feasibility and Marketability. </li><li>Product can be a mix of hardware and software technologies, but can be purely software or hardware based as well. </li><li>Participants are allowed to use existing libraries or components, however only the work done during the 24hrs will be considered for evaluation. </li><li>Organizers will be available on discord for any other help/queries</li></ol><br/>The team and problem statement details will be collected via Google Forms after all the team members have registered and paid.<br/><br/><b>Perks: </b>GeeksforGeeks will offer coupons to their exclusive courses to the Winners and all participants."
}
]
},
"open_to": "All",
"prizes": [
"Winner - Rs.12000",
"1st Runner-Up - Rs.8000",
"2nd Runner-Up - Rs.5000"
],
"eventid": "20",
"prizepool": "Rs. 25000",
"closed": true
},
{
"name": "Enigma",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Sriram", "phone": 9884625729 },
{ "name": "Kirthivasan", "phone": 9962744652 }
],
"description": {
"summary": "Solve puzzles and break the ultimate code",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "Aptitude Test based on topics such as General Science and Mathematics, Abstract and Logical Reasoning, Data Interpretation and Basic Programming. Questions will be sent through a Google form."
},
{
"name": "Round 2",
"duration": null,
"description": "Qualified teams will be given puzzles based on cryptography, steganography, basic digital electronics and logical deduction. First team to complete wins."
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.2000", "Runner-Up - Rs.1000"],
"eventid": "21",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "Data Utopia",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 2,
"ssn": true,
"organisers": [
{ "name": "Shwetha S", "phone": 9790950184 },
{ "name": "Krishi V", "phone": 9941683848 }
],
"description": {
"summary": "As the amount of data increases day by day, extracting useful information from raw data has become inevitable. This event will test the participant’s skills in statistics, Machine Learning and Data Science. ",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "MCQ Quiz on Data Science, Machine Learning and Statistics."
},
{
"name": "Round 2",
"duration": null,
"description": "Teams will initially be quizzed (max 10 minutes) to test their basics and ensure they start off with appropriate baseline models. Volunteers will guide the team towards the right direction if needed (e.g. suggesting a column of values to be dropped etc.) at the loss of points.<br/>After the quiz, the dataset will be provided. <br/>Teams are expected to perform exploratory data analysis, and implement a model/algorithm to predict the required value for the given test data. Teams will be judged based on the accuracy metrics as well as the predictions. "
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.3000", "Runner-Up - Rs.1500"],
"eventid": "22",
"prizepool": "Rs. 4500",
"closed": true
},
{
"name": "Tinkering Thoughts",
"category": "tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Palaniappan", "phone": 9791130573 },
{ "name": "Hariharan A", "phone": 9962903437 }
],
"description": {
"summary": null,
"rounds": 2,
"round_description": [
{
"name": "Round 1:Quiz",
"duration": "30 mins",
"description": "The quiz tests basic knowledge of microcontrollers, and basic electronics. Every participant will be given a Google Meet link.Based on the number of participants, 5 or 6 teams will be shortlisted."
},
{
"name": "Round 2:Circuit Simulation",
"duration": "90 mins",
"description": "Shortlisted participants from Round 1 will contest in a simulating round. Teams are required to use Tinkercad [open sourced- online software] to design and simulate a circuit. Based on the ranking in the first round, the teams are allowed to choose the projects. If a project is selected, then that project is locked. The teams will be put into breakout rooms."
}
]
},
"open_to": "All",
"prizes": ["Inplant Training for the top two teams"],
"eventid": "23",
"prizepool": "Inplant Traning for winners",
"closed": true
},
{
"name": "The Big Meg",
"category": "tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 3,
"ssn": true,
"organisers": [
{ "name": "Aakash", "phone": 8056722144 },
{ "name": "Rangashri", "phone": 8825894683 }
],
"description": {
"summary": "Do you have what it takes to be a master marketer? Hitch on to \"The Big Meg\", pitch your product and if you are deemed worthy, fetch your reward.<br/><br/><b>Platform: Google Meet</b>",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "Participants will be asked to answer a few questions, via a form, related to the sales and marketing techniques of a product. Finalists will be shortlisted after evaluating the answers."
},
{
"name": "Round 2",
"duration": null,
"description": "Shortlisted finalists will be made aware of a topic. They will be expected to come up with and pitch any product of choice, for a maximum of 7 minutes to a panel of judges. Winners will be ascertained based on a set of judging criteria."
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.1500", "Runner-Up - Rs.1000"],
"eventid": "24",
"prizepool": "Rs. 2500",
"closed": true
},
{
"name": "Debug-a-circuit ",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Indu S ", "phone": 9488758999 },
{ "name": "Pranav Aadhithya K.B ", "phone": 7338773979 }
],
"description": {
"summary": "Apply the basic principles of electronics, debug the given circuits and arrive at a solution",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": " A technical quiz based on topics such as but not limited to Circuit Analysis, Semiconductor Devices, Analog Electronic Circuits and Digital Electronics. The questions will be sent to the teams as a Google Form which would be time restricted for submissions. Teams will be selected on the basis of points scored. Only one submission per team would be allowed."
},
{
"name": "Round 2",
"duration": null,
"description": "Qualified participants shall be added to a discord server and would be on a video conference throughout the event. This round would consist of three levels of increasing difficulty. In each level the participants are given a faulty circuit (circuit which does not produce the expected output), they are required to do some changes to the circuit and find the expected output. The output found in a particular level will act as a key to the next level. First team to complete all the 3 levels will be declared as winners."
}
]
},
"open_to": ["ECE", "EEE", "(Or any Electronics related majors)"],
"prizes": ["Winner - Rs.3000", "Runner-Up - Rs.1500"],
"eventid": "25",
"prizepool": "Rs.4500",
"closed": true
},
{
"name": "Junkyard Jumble",
"category": "tech",
"date": "Oct 8",
"min_team_size": 2,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Aaryan S", "phone": 9952882211 },
{ "name": "Gayathri S", "phone": 8754407646 },
{ "name": "Karthik", "phone": 8015775424 }
],
"description": {
"summary": "Junkyard Jumble is a super fun semi-technical event that provides both.",
"rounds": 3,
"round_description": [
{
"name": "Round 1",
"duration": "15 mins",
"description": "This event triggers the participants to arrive at the solution by cracking simple puzzles and identifying well known Physics and Electronics Concepts. "
},
{
"name": "Round 2",
"duration": "3 mins per team",
"description": "This is the Dumb Charades round. The participants must act out questions to their teammates and then, find the answer, all under a ticking clock!"
},
{
"name": "Skills",
"duration": null,
"description": "Logical Reasoning, General Aptitude, Basic Physics, Fundamentals of Electronics and Semiconductors and 11/12th Physics"
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.1500", "Runner-Up - Rs.1000"],
"eventid": "26",
"prizepool": "Rs. 2500",
"closed": true
},
{
"name": "Paper Presentation",
"category": "tech",
"min_team_size": 1,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Nethra P", "phone": 8925642614 },
{ "name": "Bharath V", "phone": 9940656712 }
],
"description": {
"summary": null,
"rounds": 2,
"round_description": [
{
"name": "Round 1:Submission of abstract",
"duration": null,
"description": "The abstract of the paper of your preference from the given domains must be sent through mail by 3rd October, 2021. The domains are as follows:<br/><ul><li>Antenna Systems and its Applications </li><li>Augmented Reality </li><li>Cognitive Science </li><li>Cybersecurity and its risk assessment techniques </li><li>Deep Learning </li><li>Emerging trends in Photonics </li><li>Internet of Intelligent Things </li><li>Internet of Things </li><li>Machine Learning </li><li>Machine Learning/ AI for networks </li><li>MEMS </li><li>Network Security and Blockchain Technology </li><li>Optical Communication and Networks </li><li>Robotics </li><li>Signal and Image processing</li><li>Virtual Reality</li></ul><br/>Email id to submit abstract: ssnieeecomsoc@gmail.com"
},
{
"name": "Round 2",
"duration": null,
"description": "Live Presentation of the shortlisted papers from Round 1. The selected teams from round 1 will be given 5 – 10 minutes to explain their paper and present their idea to the panel of judges LIVE online during the time of the event."
}
]
},
"open_to": ["ECE"],
"prizes": ["Winner - Rs.2000", "Runner-Up - Rs.1000"],
"eventid": "27",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "IPL Auction",
"category": "non-tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 3,
"organisers": [
{ "name": "Akash P", "phone": 6381586142 },
{ "name": "Vikhas", "phone": 9361035286 }
],
"description": {
"summary": "\"<i>Those are the two best words in English, 'Bidding' and 'War'.</i>\" - Evan Dougherty",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": "30 mins",
"description": "Quiz based entirely on IPL for a duration of 30 minutes."
},
{
"name": "Round 2",
"duration": "150 mins",
"description": "Purse amount will be 80 crores and each team should pick 15 players (11 players in the playing 11 and 4 in bench) based on the criteria given. Points for the players will be given as per the data available based on 2020 performance in DREAM 11 (IPL 2021 will not be over by Invente)."
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.1500", "Runner-Up - Rs.1000"],
"eventid": "28",
"prizepool": "Rs. 2500",
"closed": true
},
{
"name": "SketchX",
"category": "non-tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 1,
"organisers": [
{ "name": "Anusha", "phone": 9840251636 },
{ "name": "Anjali", "phone": 9962096180 }
],
"description": {
"summary": "Design is where science and art break even. Sketch X is a design event that will test the creativity and basic design knowledge of the participants. ",
"rounds": 3,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "MCQ round will be conducted based on topics like Design, Colour Theory and Graphic design principles through an online quiz platform."
},
{
"name": "Round 2",
"duration": "45 mins",
"description": "Out of the few topics given on the spot , participants who have cleared round 1 will choose one to design a Poster using any software they see fit(Adobe illustrator, Canva or PPT)"
},
{
"name": "Round 3",
"duration": "45 mins",
"description": "The participants will present their poster to the judges explaining the content of the poster and it will be judged based on the pitch, creativity and design. Each poster will be scored by the judges and the co-participants through a vote using an online poll."
}
]
},
"open_to": "All",
"prizes": ["Winner:Rs.2000", "Runner-Up:Rs.1000"],
"eventid": "29",
"prizepool": "Rs. 3000",
"closed": true
}
],
"BME": [
{
"name": "Paper Presentation",
"category": "tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 2,
"ssn": false,
"organisers": [
{ "name": "Chetana", "phone": 8870229158 },
{ "name": "Sasya", "phone": 9963731710 }
],
"description": {
"summary": "The event involves a preliminary round where the registered candidates will have to submit a project abstract along with the camera-ready paper on one of the specified domains. The submitted abstracts will be shortlisted based on the IEEE paper norms (novelty, socialimpact, economic status, and implementation factor). The shortlisted participants will be moved to the next round where they have to present a camera-ready pitch before the panelists for 7 minutes with 3 minutes of QA session for each presentation. Based on the innovation factor and pitch presentation mode, the best presentation and best innovation category will be selected by the panelists.",
"rounds": 0,
"round_description": []
},
"open_to": "All",
"prizes": [
"Best Presentation Award: Rs.3000 (based on IEEE pitch norms)",
"Best Innovation Award: Rs. 2000 (based on social and technical novelty)"
],
"eventid": "50",
"prizepool": "Rs. 5000",
"closed": true
},
{
"name": "Quiz Masters",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 1,
"ssn": true,
"organisers": [
{ "name": "Padmavati", "phone": 8637460184 },
{ "name": "Manjula", "phone": 9094949027 },
{ "name": "Basundhara", "phone": 9751901757 }
],
"description": {
"summary": "This event consists of 3 rounds.<br/><b>The cumulative scores from the previous rounds will be added to the final round.</b><br/> <b>The person scoring the highest will be declared the winner.</b><br/>The catch is that the platform Kahoot will rank you based on the correct answer andhow fast you answer the same. So your response time matters ! and try not to waste timesearching for answers which will automatically reduce the response time pushing you to thelast . ",
"rounds": 3,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "Will be conducted in Kahoot.it. There will be 12-20 questions with different timingfor each question based on difficulty level. This will consist of questions from electronics,electrical and other circuit subjects. The quiz will be multiple choice."
},
{
"name": "Round 2",
"duration": null,
"description": "Top 15 participants from Round 1 will be moved to this round. This round willconsist of solving various types of circuit problems in a given time period. The platform forthis round is also most likely to be Kahoot.it."
},
{
"name": "Round 3",
"duration": null,
"description": "Top 8 participants from the previous round will participate in the final round. Theround consists of 8 different domains and each participant gets to select one domain fromwhich he/she will be asked questions. The topper of the previous round will get to select theirdomain first, followed by the runner of the previous round selects their preferred domainfrom the remaining 7 available ones and this continues till the last. Each domain will contain3 to 5 questions of higher difficulty.The questions will be displayed to the participantsthrough screen sharing in the meeting and the participants have to fill in the answers in thegoogle form given and submit it within the given time."
}
]
},
"open_to": ["ECE", "EEE", "EIE", "BME", "Other Circuit Branches"],
"prizes": [
"Winner - Rs.2000",
"1st Runner-Up - Rs.1250",
"2nd Runner-Up - Rs.750"
],
"eventid": "51",
"prizepool": "Rs. 2000",
"closed": true
},
{
"name": "Telehealth Web Development",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 2,
"ssn": true,
"organisers": [
{ "name": "Sandhyavarshini", "phone": 9941288689 },
{ "name": "Harsha", "phone": 9176962001 }
],
"description": {
"summary": "This event consists of <b>two rounds</b> having a <b>duration of one and half an hour each.</b> Participants in the first round are required to design a webpage under the given topic of any domain. Selected participants are allowed for the second round where they will be designing a webpage for the topics related to biomedical engineering domain.The participants can make use of any platform for developing theirwebpages. At the end of each round the participants are requested to share their designs through an email id (which we will provide you) to assess the results. ",
"rounds": 0,
"round_description": []
},
"open_to": "All",
"prizes": [
"Winner - Rs.2000",
"1st Runner-Up - Rs.1250",
"2nd Runner-Up - Rs.750"
],
"eventid": "52",
"prizepool": "Rs. 2000",
"closed": true
},
{
"name": "Design to Innovate",
"category": "tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 1,
"ssn": false,
"organisers": [
{ "name": "Dhanush", "phone": 8248369664 },
{ "name": "Dharshan", "phone": 9789015214 }
],
"description": {
"summary": "Participants are required to design a particular problem statement which we will be providing within a span of time and they'll have to present it to the panel of judges. It'll totally be of 2 rounds. One in which they'll have to design a simple model. This is the screening round, where participants will be selected based on the reality of the designs. The second round will be the one where participants will be asked to produce a novel design of need with respect to any industry and that has to prove beneficial for the consumers. They'd have to explain it to the judges. It's an individual event. Participants should be clear, concise in explaining the aspects of the design. They are even allowed to prepare presentations and can show simulations, animations of the designed 3D Model. Winners will be declared based on theinnovation, uniqueness, aesthetic approach and novelty of the proposed idea.<br><b>Platform to be used – Fusion 360, Solidworks, Blender</b>",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "Participants are required to design a product (exact 3D model ) of their own and submit it in a portal which we provide them. It has to relevant to the industry needs. Participants will be filtered in this round.<br><b>Filtering criteria - Complexity, originality.</b>"
},
{
"name": "Round 2",
"duration": null,
"description": "Participants are required to design a model which we assign them. Let's say we have a list of 12 models from which they have to choose and design accordingly. The designs should be replicated properly and rendered image has to be submitted for the same. Then they have to explain the innovation in the design to the judges. More the innovation, higher the marks.<br><b>Novelty, aesthetics, uniqueness, innovation</b>"
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.1500", "Runner-Up - Rs.1000"],
"prizepool": "Rs. 2500",
"eventid": "53",
"closed": true
},
{
"name": "Biomedicathon",
"category": "hackathon",
"date": "Oct 8 & 9",
"min_team_size": 3,
"max_team_size": 3,
"organisers": [
{ "name": "Varsha", "phone": 8489663279 },
{ "name": "Divya", "phone": 9600075214 }
],
"description": {
"summary": null,
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "Round 1 will take place before the main event around mid September during which the participating teams (team of 3) should send an abstract mentioning the Problem statement/theme from the list provided by us.<br/><br/><b>Themes</b><br/><ul><li>Medical Apps/Remote monitoring</li><li>AI/ML</li><li>IoT</li><li>Vital Monitoring in Space</li><li>AR and VR</li><li>Human interfacing devices</li><li>3D designing</li></ul><br/>Abstract should contain<br/><ul><li>Title</li><li>Description of the design</li><li>Novelty</li></ul><br/><b>Deadline - Oct 1st</b><br/>Submit the abstract to: <b><u>inventebiomedicathon@gmail.com</u></b><br/> Submissions will be scrutinized and around 10-15 submissions will be selected for the second round. Final list will be sent to the participants within the first week of October."
},
{
"name": "Round 2 (Main Event)",
"duration": "2 hours",
"description": "The review will be conducted by the panel of judges from 3 to 5pm on Day 1 (October 7) and the final presentation (implementing all the suggestions provided by the judge) should be presented on Day 2 (October 8) from 3 to 5pm. The presentation will be limited to 10 minutes. The top three teams will be awarded with prize money."
}
]
},
"open_to": "All",
"prizes": [
"Winner - Rs.2000",
"1st Runner-Up - Rs.1500",
"2nd Runner-Up - Rs.1000"
],
"eventid": "54",
"prizepool": "Rs. 4500",
"closed": true
},
{
"name": "Medical Auction",
"category": "tech",
"date": "Oct 9",
"min_team_size": 3,
"max_team_size": 4,
"ssn": false,
"organisers": [
{ "name": "Sockalingam (whatsapp only)", "phone": 7358485950 },
{ "name": "Sherwin", "phone": 9629129302 }
],
"description": {
"summary": "Interested people can register themselves in groups of 3 or 4(preferred). Other individual entries without any group are taken in and later sorted into a group (optional). They are also advised to make a discord or whatsapp group to make discussion among themselves during the auction.",
"rounds": 1,
"round_description": [
{
"name": "Round 1",
"duration": "90 mins",
"description": "<b>Base Idea: </b>A good number of medical devices will be put in auction and the teams get to bidfor the devices. All these components will be divided based on their department of use, example imaging - MRI scan, X-ray etc., optical - Autorefractor, Retinoscope, etc. A number of general/must needed devices for hospitals are also kept in auction such as Defibrillators, Anesthesia Machines, Sterilizers, etc. These general devices act as Bonus for teams who buy it. Based on the number of teams who enter the event the number of each components will be increased/altered.<br/><br/> <b>Evaluation: </b>The teams that buy components that relate to each other make more points. To make the evaluation better, teams with more general devices tend to get bonus points. In a situation of tie the amount of money left will be a decisive factor to decide the winner."
}
]
},
"open_to": "All",
"prizes": [
"Winner - Rs.2000",
"1st Runner-Up - Rs.1500",
"2nd Runner-Up - Rs.500"
],
"eventid": "55",
"prizepool": "Rs. 2000",
"closed": true
},
{
"name": "Startup Smackdown",
"category": "non-tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 3,
"organisers": [
{ "name": "Yuvasri", "phone": 6379107639 },
{ "name": "Harshini", "phone": 7358429682 },
{ "name": "Prasidha", "phone": 9962236331 }
],
"description": {
"summary": "Are you always brimming with business ideas, but can’t pitch them to anyone? Do you have innovative solutions to existing problems and feel the need to showcase them? Well then, what are you waiting for? Come join us at the Entrepreneurship event, to prove your prowess as an entrepreneurial genius! ✨",
"rounds": 3,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "The first round will consist of a situation type quiz, where the participants will be given business situations, and they will be marked on the type of answers that they are writing. The participants will be judged based on critical reasoning, strategic thinking, and business acumen. This will NOT be an MCQ quiz, the participants will write and submit their responses. One member of the team will submit the responses, but the team members can discuss amongst themselves. (Elimination round, depending on the number of participants"
},
{
"name": "Round 2",
"duration": null,
"description": "The second round will judge the participants on their financial and budgeting skills. They willbe given an amount of 1,00,0000 rupees, and will be asked to explain how they will invest theamount into their business. They will need to justify the amounts that they are investing, andprovide the reason as to why they invested in that particular unit of their business. This willbe submitted to us via a common email. (Elimination round, depending on the number ofparticipants)"
},
{
"name": "Round 3",
"duration": null,
"description": "The final round will be a presentation round, wherein the team-members will be asked topitch their product to us, via a PPT. The areas that need to be covered in the PPT will beconveyed to the participants in advance. The participants’ products will be judged based onpracticality, creativity and economical aspects. The problem that the product is trying to solvewill also be a major marking factor. The highest-ranking participants will be given theWinner, and Runner-Up position."
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.2000", "Runner-Up - Rs.1000"],
"eventid": "56",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "Thambi Reel Inum Varala",
"category": "non-tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 1,
"organisers": [
{ "name": "Lal Bhaveen", "phone": 9629421656 },
{ "name": "Uvarani", "phone": 7871885061 },
{ "name": "Keerthana", "phone": 6379637324 }
],
"description": {
"summary": "Reel it is a video meme contest",
"rounds": 2,
"round_description": [
{
"name": "Preliminary Round",
"duration": "90 mins",
"description": "For the preliminary round, a topic will be given on spot to the participants, based on which they have to make a video of 30 seconds and upload it in the given drive link. Participants will be shortlisted in this round by the judges. Decision will be based on Creativity."
},
{
"name": "Final Round",
"duration": "90 mins",
"description": "The shortlisted participants will receive an email along with the topic for the finalround. Similar to the first round, the participants will have to make a video meme of 30 seconds, based on the given topic and upload it in the same drive link. And, the judges will announce the final winner and runner. Judgement criteria will be Creativity."
}
]
},
"open_to": "All",
"prizes": ["Winner:Rs.1000", "Runner-Up:Rs.500"],
"eventid": "57",
"prizepool": "Rs. 1500",
"closed": true
}
],
"EEE": [
{
"name": "Paper Presentation",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 4,
"ssn": true,
"organisers": [
{ "name": "Madhusudan", "phone": 8637433373 },
{ "name": "Adhitya", "phone": 9445027807 },
{ "name": "Suganthi", "phone": 6385418135 },
{ "name": "Vyshnavi", "phone": 9381821624 }
],
"description": {
"summary": null,
"rounds": 4,
"round_description": [
{
"name": "DOMAINS COVERED (But not limited to)",
"description": "<ul><li>Smart Grids</li><li>Soft Computing Techniques in Power Systems</li><li>Feedback Control Systems</li><li>Power Electronics and Energy Efficient Drives</li><li>Renewable Power Conversion Technologies</li><li>Instrumentation and Control</li><li>Power Quality Improvement Techniques</li><li>Expert Systems and Artificial Intelligence Techniques</li><li>Internet of Things</li><li>Analog and Digital Electronics/Optimization Algorithms </li><li>Hybrid/Electric vehicle technology </li></ul><br/>Or any innovative research work !"
},
{
"name": "Round 1",
"description": "<b>The papers submitted will be reviewed by a panel of judges</b><br><ul><li>The research paper should be submitted within the stipulated date to invente.eee.paperpresentation@gmail.com</li><li>Mention the title of the paper, author’s names in the mail.</li><li>The last date for paper submission is <b>07/10/2021</b></li><li>The research papers should follow the above rules mentioned</li><li>The paper will be under review by a panel of judges</li><li>The panel will take into account the plagiarism Report of the Research papers for the selection process</li><li>The selected participants will be notified through mail</li></ul>"
},
{
"name": "Round 2",
"description": "<b>This round will be conducted on the Zoom/Google meet/Microsoft Teams platform. </b><br><ul><li>Selected participants are required to present their Research work as a Powerpoint presentation during the Final round</li><li>The Presentation will be followed by a Q & A session with the panel of judges</li><li>If the event clashes with other events conducted during INVENTE 6.0, contact the Event Heads beforehand</li><li>The rules will be briefed for the participants when they join the online meeting</li><li>Participants kindly ensure that stable internet connectivity is available throughout the event</li><li>Evaluations of Round 1 and Round 2 will be consolidated for final standings</li><li>The judges’ decision is <b>final</b></li></ul>"
},
{
"name": "Event Rules",
"description": "<ul><li>Only a maximum of 4 authors and <b>only</b> student authors are allowed. It is not necessary that all authors must be from the same institute</li><li>he authors can present their paper individually or as a team during the final round</li><li><b>Plagiarism is strictly unacceptable.</b>Only original research works are accepted.</li><li>The paper must be in <b>DOUBLE COLUMN IEEE format</b>. This format must be strictly followed.</li><li>To refer the IEEE standard, use the link: <a target=\"_blank\" href=\"https://docs.google.com/document/d/1YgyGebtyRlekC8Wan6dXwCllsVCqa09C_glpRJ4P78Q/edit?usp=sharing\"><u>IEEE Format</u></a> </li><li>The paper submitted must be in <b>.pdf</b> format</li></ul>"
}
]
},
"open_to": "All",
"prizes": ["Winner: Rs.2000", "Runner-Up: Rs.1000"],
"eventid": "30",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "Tech Quiz",
"category": "tech",
"date": "Oct 8 & 9",
"min_team_size": 1,
"max_team_size": 2,
"ssn": false,
"organisers": [
{ "name": "Sri Hari", "phone": 9566061591 },
{ "name": "Suraj", "phone": 9384661042 },
{ "name": "Tharun", "phone": 6385148340 }
],
"description": {
"summary": "<b>Communication Platform: Zoom</b><br/><b>TOPICS EXPLORED:General Tech! [P.S. Might involve a couple of mild EE Qs for the sake of the department]</b><br/><b>Tie Breakers will be involved</b>",
"rounds": 3,
"round_description": [
{
"name": "Prelims",
"duration": null,
"description": "<ul><li>40 questions. Starred questions will be used for tie breakers</li><li>Usual pointers applicable</li><li>Every Breakout Room will have a invigilator to help the contestants and also to monitor whether the rules are abided by the respective teams</li><li>It is mandatory for every contestant to switch on their audio and video throughout the contest</li></ul><br><b>Quiz Master: Tharun R Prakash/ Sri Hari</b><br/><b>Finalists will be decided upon the number of participants [Min 4, Max 6]</b><br/>(If the number of participants is beyond our wildest dreams, then a semi final round might be conducted)"
},
{
"name": "Grand Finale",
"duration": null,
"description": "<ul><li>For the ultimate showdown the finale will be a classic Pounce and Bounce with multiple Quiz Masters and multiple drills all very interactive and breezy contention to crown the champions.</li><li>The finale will take place via Zoom and all the participants must be make sure their Internet connections is as seamless as possible. </li></ul>"
},
{
"name": "Basic Rules",
"duration": null,
"description": "<ul><li>Prelims will not have any negative marking. So does Bounce in finals.</li><li>In case of a tie at any stage of the contest, the tie breaker will be decided by the respective Quiz Masters and their decision will be final.</li><li>In case a contestant has network issues in between, grace time will be given in accordance with their situation.</li><li>Any disturbance from the participant’s side and unnecessary interruptions will not be entertained (Except memes!)</li></ul>"
}
]
},
"open_to": "All",
"prizes": ["Winner: Rs.2000", "Runner-Up: Rs.1000"],
"eventid": "31",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "E-Bugging",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Harikrishna", "phone": 9884048488 },
{ "name": "Lohini", "phone": 8870503649 },
{ "name": "Madhuri", "phone": 9027521824 },
{ "name": "Neythra", "phone": 7305601210 }
],
"description": {
"summary": "<b>Domains Covered:</b><br/><ul><li>Power Electronics</li><li>EDC</li><li>Analog and Digital Circuits</li><li>Circuit Theory</li><li>Machines</li></ul><br/><br/><b>General Instructions:</b><br/>A circuit will be provided in each question. But a mistake is present in the circuit. The team should identify the mistake and type out the correct answer. <br/><ol><li>There will be three stages : 1. League Stage 2. Eliminator 3. Final Stage</li><li>There will be no negative marking. The answer should be concise and precise. </li><li>Contestants will be asked to join a Zoom meeting, and will be assigned breakout rooms for their convenience to brainstorm the questions from the Google forms and only one response from a team will be acknowledged for each circuit. </li><li>Every Breakout Room will have a invigilator to help the contestants and also to monitor whether the rules are abided by the respective teams. The google form should be screenshared at all times. </li><li> It is mandatory for every contestant to switch on their audio and video throughout the contest.</li><li>The participants should have their own devices like laptop, charger and must also carry their ID card.</li><li>The winners of each round will be announced at the end of each round. The decisions of the Event Heads will be final. </li></ol>",
"rounds": 3,
"round_description": [
{
"name": "League Stage",
"duration": "30 mins",
"description": "All teams will be given 6 questions to solve in 30 mins.<br/>Each question will be awarded 3 marks. 1 mark for identification and 2 marks for explanation.<br/><br/>Total marks in League stage : 18"
},
{
"name": "Eliminator Stage ",
"duration": "20 mins",
"description": "All teams will be given 4 questions to solve in 20 mins.<br/>Each question will be awarded 5 marks. There might be more than one mistake. Each question will be awarded marks based on the identification and explanation of the mistake.<br/><br/>Total Marks: 20"
},
{
"name": "Final Stage ",
"duration": "20 mins",
"description": "All teams will be given 3 questions to solve in 20 mins.<br/>Each question will be awarded 5 marks. There might be more than one mistake. Each question will be awarded marks based on the identification and explanation of the mistake.<br/><br/>Total Marks: 15"
}
]
},
"open_to": ["All Circuit Branches"],
"prizes": ["Winner: Rs.2000", "Runner-Up: Rs.1000"],
"eventid": "32",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "Electronic-Maze",
"category": "tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Surabhi", "phone": 8939267346 },
{ "name": "Shruthi", "phone": 9790466301 },
{ "name": "Retika", "phone": 8939566476 },
{ "name": "Swetha A", "phone": 8861119979 }
],
"description": {
"summary": "<b>DOMAINS COVERED:</b> Basics of EEE, Field theory, Digital logic circuits, Electronic devices, Microprocessors, Electrical Machines. ",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": "20 mins",
"description": "<b>A theme based recreational technical quiz </b><br/><ul><li>First round is a fun technical quiz conducted through online quizzing platforms.</li><li>The quiz comprises 20 questions based on the subjects mentioned above.</li><li>The top six teams will be qualified to the next rounds.</li><li>The team members can connect through a discord server to discuss among themselves.</li><li>There will be no proctoring for the first round. </li><li>Quiz link can be accessed only through the registered email id.</li></ul>"
},
{
"name": "Round 2",
"duration": "40 mins",
"description": "<b>Unlocking knowledge at the speed of thought!</b><br/><ul><li>The qualified participants will be intimated through the registered email id.</li><li>There are eight levels and correct answers will take the participants to the next level in the maze.</li><li>Mix of technical and non technical questions (bonus) .</li><li>There will be a time limit for each question.</li><li>The fastest team to reach any level will have an edge in case of ties.</li></ul>"
}
]
},
"open_to": ["ECE", "EEE"],
"prizes": ["Winner: Rs.2000", "Runner-Up: Rs.1000"],
"eventid": "33",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "Ideate",
"category": "tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 5,
"ssn": true,
"organisers": [
{ "name": "Harini", "phone": 8056245960 },
{ "name": "Nishitha", "phone": 9790871217 },
{ "name": "Dhruv", "phone": 6379155919 },
{ "name": "Saikrishna", "phone": 9159775911 }
],
"description": {
"summary": "<b>IDEATE: </b> It is an extended hackathon that kindles the passionate engineering minds to shape up their attractive ideas, that serves to solve a real-time problem or as a token of technological advancement.<br/><br/><b>DOMAINS</b> <li>Internet Of Things – IoT </li><li>Crisis Response </li><li>Smart Security </li><li>Healthcare </li><li>Mobility </li><li>E- Technologies </li><li>Women Safety </li><li>Open Innovation </li><br/>If your idea doesn’t fall under the domains specified, don’t worry!! Put it on under Open Innovation and get a chance to feature as a winner!! ",
"rounds": 5,
"round_description": [
{
"name": "General Instructions",
"duration": null,
"description": "<ul><li>Valid ID proofs, Laptop, Chargers, working webcam and other hardware equipments needed for completion of the hackathon is mandatory. </li><li>There should be a hardware which could be accompanied by a software.(Contact for further enquiries on this) </li><li>Ensure to have a stable internet connection. </li><li>Participants are requested to stick on to the timelines for a seamless experience at both ends. </li><li>The judging will be based on their novelty, feasibility, innovation quotient, business model and relevance to problem statement. </li><li>Reviews will be done at each stage and credits secured will be considered for evaluation. </li></ul>"
},
{
"name": "Phase 1: (Registration) ",
"duration": null,
"description": "<ul><li>Team Registration and domain selection has to be done. </li><li>Submission of Abstract by October 3rd,2021 </li><li>Send your abstracts to the Mail ID : inventeideate2021@gmail.com </li></ul><br/><br/><b>Format for Sending Your Abstract: </b><br/><ul><li>Team Name: </li><li>Team Leader(SPOC): </li><li>Team Member Details: Name, Mail ID, Contact Number </li><li>Domain Chosen: </li><li>Problem Statement: </li><li>Objective: </li><li>Abstract: </li><li>Application: </li></ul><br/>Share in the form of TeamName_Domain.pdf <br/>Shortlisted Ideas from Phase 1 will move further <br/>Shortlisted Teams will be shared the format for further rounds of evaluation. The date and time for the rounds will be communicated to the shortlisted teams. "
},
{
"name": "Phase 2: (Preliminary Evaluation) ",
"duration": null,
"description": "<ul><li>Participants will be evaluated based on their workflow (Progress, Improvement, Involvement by team members)</li><li>Participants are requested to submit the Technology Stack and other data related to the project (Till the point they have completed)</li><li>Format will be shared via Email </li></ul>"
},
{
"name": "Phase 3: (Secondary Evaluation) ",
"duration": null,
"description": "<ul><li>Participants should submit their working videos of the project and explain it in the same.</li><li>Format will be specified post event kick start</li></ul><br/><b>*Points gained in Preliminary and Secondary Evaluation will also be considered for result</b>"
},
{
"name": "Phase 4: (Final Pitching) on the day of Invente ",
"duration": null,
"description": "<ul><li>Participants will have to pitch their project to a judging panel</li><li>Each team will be given 20 minutes for presentation.</li><li>The projects may be evaluated on following criteria : </li><ol><li>Feasibility and User-friendliness </li><li>Relevance to Problem Statement and Novelty </li><li>Business plan and marketability </li><li>Impact on the society </li><li>Sustainability and Quality </li><li>Creativity and Scalability </li></ol><li>There will be a Dry Run (not for evaluation) before commencement of phase 4, for the participants to get used to the environment. </li></ul><br/>If teams are tied with the same points, there will be a tie-breaker round, which will happen either before or after Phase 4 (Further details will be given during the process, if at all a tie occurs). "
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.6000", "Runner-Up - Rs.3000"],
"eventid": "34",
"prizepool": "Rs. 9000",
"closed": true
},
{
"name": "Inventino",
"category": "tech",
"date": "Oct 8 & 9",
"min_team_size": 1,
"max_team_size": 3,
"ssn": false,
"organisers": [
{ "name": "Parithi", "phone": 9092437531 },
{ "name": "Siddharthan", "phone": 6385101827 },
{ "name": "Siddarth", "phone": 7395987120 },
{ "name": "Rengarajan", "phone": 8681981150 },
{ "name": "Sivakarthikeyan", "phone": 7812044835 }
],
"description": {
"summary": "Arduino Lads here is a place to prove yourself unique among the crowd. This is a great opportunity to showcase your skills in electronics and microcontrollers using Arduino and compete with other innovative participants. We welcome you all to participate in one of the best tech symposiums in town and win exciting prizes. Get Ready, Set, Code!!!",
"rounds": 3,
"round_description": [
{
"name": "General Instructions",
"duration": null,
"description": "<ul><li>Valid ID proofs, laptop, working webcam and mic needed for completion of the competition is mandatory. </li><li>Ensure you have a stable internet connection.</li><li>Arduino IDE installed and running. </li><li>Basic knowledge of Microprocessors and Microcontrollers is needed.</li><li>Hands on knowledge of Arduino.</li><li><b>Possession of an Arduino board and related hardware is advantageous.</b></li></ul>"
},
{
"name": "Round 1 (Quiz)",
"duration": "60 mins",
"description": "<b>Topics:</b> Microprocessors and Microcontrollers, basic electronics and Arduino <br/><ul><li>The quiz will be timed. </li><li>Both marks and time of submission will be considered for evaluation</li><li>No negative marking</li><li>The questions will be a mix of MCQ’s and Arduino code debugging</li><li>Briefing will be given before the start of the event </li></ul><br/><b>Evaluation Criteria:</b><br/><ul><li>Correct Answer for MCQ </li><li>Time of submission</li><li> Logic, execution, feasibility for the code debugging</li></ul><br/>Shortlisted teams will move forward for Round 2 (In case of tie-breaker, further evaluation will be done which will be specified during the time of event)"
},
{
"name": "Round 2 (Inventino)",
"duration": "2-3 hours",
"description": "<b>Mode:</b> GMeet / Zoom / Cisco Webex </br><ul><li>Participants will be shown Arduino based projects. The number of projects shown will be equal to the number of shortlisted teams. </li><li><b>Participants are required to demonstrate the project they are assigned in hardware. In case the team doesn’t have a board with them, they can share their code with their assigned organiser who will test the code and show the output.</b></li><li>Teams will be allowed to choose the project of their preference from the given projects based on their performance in the first round.</li><li>An event organiser will be assigned to each team who will be in possession of an Arduino board. </li><li>Teams can send their code for debugging how many ever times they want within the specified time frame.</li><li>If a team is in possession of an Arduino, they may debug it on their own. However <b>the final code must be sent to the organiser for testing</b>.</li><li>The code sent last will be taken for evaluation.</li><li>Teams are encouraged to add on to the project to innovate it. Extra marks will be awarded for this.</li><li>Teams are also required to explain how they can improve the project and take it forward as a product. Time will be allocated for this.</li></ul><br/><b>Evaluation will be based upon: </b><br/><ul><li>Closeness to the assigned project</li><li>Time taken to complete</li><li>Innovation quotient</li><li>Creativity and presentation</li></ul>"
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.2000", "Runner-Up - Rs.1000"],
"eventid": "35",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "Tentkotta",
"category": "non-tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 3,
"organisers": [
{ "name": "Barathkumar", "phone": 7397440584 },
{ "name": "Balaji", "phone": 7868991177 }
],
"description": {
"summary": "<b>Platorm: </b>Zoom/g-meet<br/><b>Topics Explored: </b>Kollywood(Thamizh Cinema)",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "<b><u>Part 1: MCQ</u></b><br/><ul><li>Every member of all teams will receive a test link.</li><li>This will be an MCQ-based test which will have 30 questions in total, and you will be given 15 minutes to answer those.</li><li>The average score of each team will be considered.</li></ul><b><u>Part 2: Guess the Film from the dialogue</u></b><br/><ul><li>After completing this online test, your team will be directed to a break-out room, where you will be having your second part of your Preliminary round.</li><li>Here you will be having a set of audio clips containing movie dialogues, separated as:</li><ul><li><i>Easy – 2 Points Each</i></li><li><i>Medium – 4 Points Each</i></li><li><i>Hard - 6 Points Each</i></li></ul><li>You will be given 2 or 3 minutes in total and you must “find the film” in which the dialogue is placed. You can find any number of films/dialogues within the given time. You can even choose whether you are going to find Easy/Medium/Hard.</li><li>This score will be added with the average score obtained in the first part and the combined score will be used to filter the participants to the next round.</li></ul>"
},
{
"name": "Round 2",
"duration": null,
"description": "<b><u>Part 1: Find the song from the lyrics</u></b><br/><ul><li>Part of the lyrics of a song will be given and you must find which song it is. </li><li>Incase Not Known…Question will be passed to the next team.</li></ul><b><u>Part 2: Panchathanthiram</u></b><br/><i><u>(Similar to Panchathandhiram Round of Vijay TV Connexions)</u></i><ul><li>Clues of a movie will be displayed one-by-one and you must find which film it is with the minimum number of Clues.</li<li>The lesser the no. of clues taken, the more the score is.</li></ul><br/><b>The winner of the event will be decided from the Round 2 scores combining Part 1 and Part 2. In case of a tie, TIE-BREAKER will be held, for which, the details will be given then.</b>"
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.2000", "Runner-Up - Rs.1000"],
"eventid": "36",
"prizepool": "Rs. 3000",
"closed": true
},
{
"name": "IPL Bidding",
"category": "non-tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 2,
"organisers": [
{ "name": "Reshab", "phone": 9884310197 },
{ "name": "Sivakarthikeyan", "phone": 7812044835 },
{ "name": "Sai Arun", "phone": 7010054851 },
{ "name": "Siddarth", "phone": 7395987120 }
],
"description": {
"summary": "<b>Platform: </b>Zoom/Discord",
"rounds": 2,
"round_description": [
{
"name": "Round 1",
"duration": null,
"description": "<ul><li>This will be a MCQ round covering questions related to cricket </li><li>It is an elimination round </li><li>Participants will be filtered according to their marks and 8 members/teams will be selected to the second round.</li></ul>"
},
{
"name": "Round 2: Auction",
"duration": null,
"description": "<b>Rules of Auction</b><ul><li>Every team will be provided with same bag amount </li><li>Participants can bid and pick the players of their choice.</li><li>Your squad selection should follow all our criteria which will be given to you before the commencement of the auction</li><li>If your selected team/squad fails to meet any of the given conditions, that particular participant/team will be disqualified.</li></ul><b>Evaluation</b><ul><li>Each and every player in the auction list will be given a rating out of 10 , which is based on their recent performances. (This will be shared only at the end of the auction)</li><li>At the end of the auction, each team/squad picked by the teams will be evaluated based on the ratings of the players they have in their squad/team.</li><li>The teams with higher points will be considered as the winners.(The points will be based on the average of the players ratings in the squad) </li></ul>"
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.2000", "Runner-Up - Rs.1000"],
"eventid": "37",
"prizepool": "Rs. 3000",
"closed": true
}
],
"IT": [
{
"name": "ENIGMA:(CRYPT IT)",
"category": "tech",
"date": "Oct 9",
"min_team_size": 1,
"max_team_size": 1,
"ssn": false,
"organisers": [
{ "name": "Nandana", "phone": 6382844423 },
{ "name": "Swathi", "phone": 6385555603 },
{ "name": "Raajalakshumi", "phone": 9791349237 }
],
"description": {
"summary": "This event comprises two rounds, which will be conducted in virtual mode. Event rules are explained to participants prior to the event in a zoom call.The first round is conducted on hackerrank/hackerearth platform which composes of 20 mcqs with duration compact of 30 mins. If the student crosses our cut off then he/she will be qualified to the next round.In the second round students will be given a cipher to break, and they must automate the process through code in the given duration of 1-2 hrs. Program will be graded based on the number of test cases passed. Students with maximum scores were selected and awarded.",
"rounds": 2,
"round_description": [
{
"name": "Round 1: Quiz Round",
"duration": "30 mins",
"description": "A quiz with around 20 questions will be given to the participants. The questions will involve the participants solving cryptographic puzzles and pattern based problems. <i> Students with maximum scores will be shortlisted.</i>"
},
{
"name": "Round 2: Coding Round",
"duration": "1-2 hours",
"description": "Students will be given a cipher to break, and they must automate the process through code. Program can be written in C, Cpp, Python, Java (hackerrank) and will be graded based on the number of test cases passed. <i> Winners will be announced based on the scores of Round 2.</i>"
}
]
},
"open_to": "All",
"prizes": ["Winner: Rs.3000", "Runner-Up: Rs.1500"],
"eventid": "10",
"prizepool": "Rs. 4500",
"closed": true
},
{
"name": "WEBSITICA",
"category": "tech",
"date": "Oct 8",
"min_team_size": 1,
"max_team_size": 2,
"ssn": true,
"organisers": [
{ "name": "Rithanya", "phone": 9487852180 },
{ "name": "Pakkeer", "phone": 9789032965 },
{ "name": "Sanjay", "phone": 8608792215 }
],
"description": {
"summary": "This event is a web development event and basically comprises two important rounds, which will be conducted in virtual mode where the students have to login at the given time.",
"rounds": 3,
"round_description": [
{
"name": "Round 1",
"duration": "1 hour",
"description": "The first round is conducted in google forms which composes of 30(it may vary) mcqs. If the student is able to cross our cut off then they’ll be considered for the next round"
},
{
"name": "Round 2",
"duration": "2-3 hours",
"description": "In the second round the student is required to create a website with the topic given and in the given duration. If the website meets the requirements then the candidate is taken down for further process by the heads and the winner is selected and awarded."
},
{
"name": "Note",
"duration": null,
"description": "<ul><li>The student must login at the given time or else they’ll not be allowed to login.</li><li> Switching of tabs is not allowed if done the test will automatically close</li><li>No usage of phone</li><li>This platform rquired webcam and audio enabled.</li><li>All the best</li></ul>"
}
]
},
"open_to": "All",
"prizes": ["Winner - Rs.3000", "Runner-Up - Rs.1500"],
"eventid": "11",
"prizepool": "Rs. 4500",
"closed": true