-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIT.html
More file actions
1101 lines (1100 loc) · 39.5 KB
/
Copy pathIT.html
File metadata and controls
1101 lines (1100 loc) · 39.5 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<title>IT</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=ABeeZee"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Alef"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Amiko"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Droid+Serif"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Muli"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"
/>
<link rel="stylesheet" href="assets/fonts/ionicons.min.css" />
<link rel="stylesheet" href="assets/css/Elegant-Registration-Form.css" />
<link rel="stylesheet" href="assets/css/Footer-Dark.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.1.1/aos.css"
/>
<link rel="stylesheet" href="assets/css/LinkedIn-like-Profile-Box.css" />
<link rel="stylesheet" href="assets/css/Login-Form-Dark.css" />
<link rel="stylesheet" href="assets/css/Model-Gallery-And-Profile.css" />
<link rel="stylesheet" href="assets/css/Navigation-with-Button.css" />
<link rel="stylesheet" href="assets/css/Profile-Card.css" />
<link rel="stylesheet" href="assets/css/Profile-Picture-With-Badge-1.css" />
<link rel="stylesheet" href="assets/css/Profile-Picture-With-Badge.css" />
<link rel="stylesheet" href="assets/css/Registration-Form-with-Photo.css" />
<link rel="stylesheet" href="assets/css/styles.css" />
</head>
<body
style="
background-color: rgb(0, 0, 0);
background-image: url('assets/img/IT.png');
background-repeat: repeat;
background-size: contain;
"
>
<nav
class="navbar navbar-light navbar-expand-md sticky-top navigation-clean-button"
data-aos="fade-down"
data-aos-duration="1000"
data-aos-once="true"
style="background-color: rgba(0, 0, 0, 0.85); margin-top: 0px"
>
<div class="container-fluid">
<a href="https://www.ssn.edu.in/"
><img src="assets/img/Untitled-1.png" width="50" /></a
><a href="index.html"
><img src="assets/img/invente_5.0_logo.png" width="150" /></a
><button
data-toggle="collapse"
class="navbar-toggler float-right"
data-target="#navcol-1"
style="background-color: rgb(240, 112, 0)"
>
<span class="sr-only">Toggle navigation</span
><span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse text-right float-right d-xl-flex justify-content-xl-end"
id="navcol-1"
>
<ul class="nav navbar-nav text-center ml-auto">
<li class="nav-item" role="presentation">
<a
class="nav-link"
id="nav_link0"
style="color: #f07200"
href="index.html"
>< Back<br
/></a>
</li>
</ul>
</div>
</div>
</nav>
<section
class="text-center d-xl-flex justify-content-center justify-content-xl-center"
id="intro_ece-1"
style="margin-top: 172px; background-color: #000000"
>
<div
class="container"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-once="true"
>
<h1
class="display-3 text-center shadow-lg d-flex d-xl-flex flex-grow-1 flex-shrink-1 flex-fill justify-content-center align-items-center mx-auto justify-content-xl-center"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-once="true"
style="
background-color: rgb(0, 0, 0);
color: rgb(240, 114, 0);
margin-top: 50px;
"
>
Department of IT
</h1>
<p
class="text-center d-flex flex-grow-1 justify-content-center justify-content-xl-center"
data-aos="fade-up"
data-aos-duration="1500"
style="
color: rgb(240, 114, 0);
font-weight: bold;
font-style: normal;
font-family: Alef, sans-serif;
margin-top: 45px;
z-index: 999999;
"
>
Vibin' Virtually
</p>
<img src="assets/img/logoit.png" width="100" />
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-0"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Enigma
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Interested in cracking codes? Good at catching patterns? Then
this is the perfect place to show off your detective skills!! Decode
ciphers and identify patterns to win exciting prizes!!
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Individual, Any department <br /><strong
>Platform:</strong
> Hackerrank<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 22nd, 11am to 2pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />Quiz round: 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. Students with maximum scores will be
shortlisted.<br /><br />(Duration: 30 mins)<br /><br /><br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br />Coding Round: Students will be
given a cipher to break, and they must automate the process
through code.<br />Program can be written in C,Cpp, Python, Java
(Hackerrank)<br />Program will be graded based on the number of
test cases passed.<br />Winners will be announced based on the
scores of Round 2. <br /><br />(Duration: 1-2hrs)<br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Sowmya K:</strong>
9940040647 <br /><strong>Ragavaraju Manaswini:</strong> 8374761201
<br /><strong>S Rithik Prasad:</strong> 7013826393 <br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-1"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Websitica
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Think you can make a better webiste that this?
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Teams of 3, Any department<br /><strong>Platform:</strong
> Google Forms, MS Teams<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 22nd, 9am to 1pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />The first round is conducted
in google forms which composes of 30 (it may vary) mcqs with a
duration compact of 1hr(may vary).If the student is able to cross
our cut off then he’ll be considered for the next round<br /><br /><strong
>Round 2</strong
><br />In the second round the student is required to create a
website with the topic given and in the given duration of
2-3hrs(may vary).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.<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Note:</strong><br />- The student must login at the
given time or else he’ll not be allowed to login.<br />- Switching
of tabs is not allowed if done the test will automatically
close.<br />- No useage of phone<br />- This platform requires
webcam and audio enabled.<br />- All the best.
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong
>Hari Prasath V:</strong
>
8300673200<br /><strong>Sowmya SG:</strong
> 7010137135<br /><strong>Naveen B:</strong> 8778760553<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-2"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Codera
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
If you've seen "CS8391", participate and test your Data Structures and
Algorithms.
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Teams of 2, Any department<br /><strong>Platform:</strong
> Hackerrank<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 22nd, 9am to 11am<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />- Debugging<br />- Find the
output<br />- Coding questions<br />- Find time complexity, etc<br /><br /><strong
>Round 2</strong
><br />5 coding questions<br />- one easy<br />- two
intermediate<br />- two hard<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>General instructions:</strong><br />- Switching tabs
is not allowed<br />- Usage of mobile phones is strictly
prohibited<br />- Platform requires webcam and audio enabled<br />-
Students must login at the given time<br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Janani R:</strong>
9962669223<br /><strong>Meenakshi R:</strong>
8608942237<br /><strong>Meghna N:</strong> 9962551099<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-3"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Reverse Gear
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
All our lives are probably going in reverse gear right now, so why not
try some Code Obfuscation and Reverse Coding
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Teams of 2, Any department<br /><strong>Platform:</strong
> Hackerrank<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 22nd, 9am to 11am<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />This round will be conducted
on any online quiz platform(yet to be decided) which comprises of
20 MCQs and one obfuscated code for them to deobfuscate within a
duration of 1hr. If the student is able to cross our cut off then
he/she will be considered for the next round.<br /><br /><strong
>Round 2</strong
><br />Two medium level codes will be given for them to obfuscate
and one reverse coding question where the extension file (.exe)
will be sent via google drive and they have to find the logic by
checking with different input values.They have to complete both
within a duration of 1hr. Hackerrank platform will be used for
code obfuscation. <br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Note:</strong><br />- The student must login at the
given time or else he/she will not be allowed to login.<br />-
Switching the tabs is not allowed if done the test will
automatically close.<br />- Usage of mobile phones is strictly
prohibited.<br />- This platform requires webcam and audio enabled
(round 1).<br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong
>Priyadharshini S:</strong
>
9944059843<br /><strong>Vaishnavi M:</strong>
9080720321<br /><strong>Sudhagar B:</strong> 9080327580<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-4"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Papyrus
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Have a Research/Review Paper? Come present it with us at "Papyrus",
our Paper Presentation Event
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Teams of 1-3, Any department<br /><strong>Platform:</strong
> Zoom<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 23rd, 9am to 1pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />In the first round,
participants form a team of upto 3 members and submit their paper
and abstract via mail. The papers are then shortlisted and the
selected teams are notified.<br /><br /><strong>Round 2</strong
><br /> In the second and final round, shortlisted teams are
lined up. Each team presents their paper for 7 minutes followed by
a Q&A session for 2 minutes. The top 3 papers will be selected
as winners.<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Rules:</strong><br />- Each paper can have upto 3
authors.<br />- Submitted papers must be in IEEE format.<br />-
Papers must not be published before anywhere or be under
consideration for publication in any journal or conference.<br />-
Plagiarism is not allowed. Original works only.<br />- Paper
length limited to 6 pages.<br />- Paper must be in .pdf, .docx, or
.doc formats.<br />- A team can have participants from different
institutions.<br />- The paper is to be attached to the mail
<strong
><span style="text-decoration: underline"
>paperpresentationinvente2020@gmail.com</span
></strong
><br />with the subject as the title of the paper.<br />- The mail
must contain - name of authors, college names and departments,
phone numbers, and email addresses.<br /><br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong
>Shubhangkar G. Jain:</strong
>
9840786742<br /><strong>Sanjana B:</strong> 7401436248<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-5"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Imitation Games
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
A simulation of one of the most excruciating process in college,
but here you know the outcome.
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Individual, Any department<br /><strong>Platform:</strong
> Hackerrank, Zoom<br /><strong>No. of Rounds: </strong
>3<br /><strong>Date/Time: </strong>Jan 23rd, 9am to 1pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Event Description:</strong><br />Mock interview
event has three rounds. Out of which,<br /><br />- The first round
consists of 50 mcqs(10-Verbal,10-Quants,10-Logical
Reasoning,20-Coding questions (from core concepts)),Second round
has 3 coding questions(1-easy,1-medium,1-hard) and interview in
the third round.<br /><br />- After the first round only, a few
candidates are selected to the second round. Only for those
candidates coding round is conducted.<br /><br />- Based on the
second-round performance of the candidates, the number of students
selected for the interview round is decided.<br /><br />- In the
interview round, those who perform well will be selected as
winners.<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Note:</strong><br />- The student must login at the
given time or else he/she will not be allowed to login.<br /><br />-
Switching the tabs is not allowed if done the test will
automatically close.<br /><br />- Usage of mobile phones is
strictly prohibited.<br /><br />- This platform requires webcam
and audio enabled (round 1).
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Ashwin S:</strong>
7299869257<br /><strong>Ishwarya S:</strong>
9789088823<br /><strong>Srinidhi S:</strong> 8309186318<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-6"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Analytics Sprint
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Enough of stalking people online, now stalk some data.
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong>Technical<br /><strong
>Participation:</strong
> Teams of 2, Any department<br /><strong>Platform:</strong
> Hackerrank, Kaggle<br /><strong>No. of Rounds: </strong
>2<br /><strong>Date/Time: </strong>Jan 23rd, 11.30am to
1pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />- Formula of Cost functions<br />-
Regression vs Classification<br />- General Model Testing<br />-
Missing Data, etc<br /><br /><strong>Round 2</strong><br />- 1
data set<br />- Need to build a model that solves for the given
dataset (either a classification or prediction model based on
the data)<br />- Aggregate of both the rounds will be the
winner.<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>General instruction:</strong><br />- Switching tabs
is not allowed<br />- Usage of mobile phones is strictly
prohibited<br />- Students must login at the given time<br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Supraja V:</strong>
9493984132<br /><strong>Dhanush Abiram:</strong>
8522042000<br /><strong>Pavithra S:</strong> 9597861428<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-7"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
Sports Quiz
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
It's a quiz on sports, you get the idea.
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong
>Non<strong> </strong>Technical<br /><strong
>Participation:</strong
> Teams of 2, Any department<br /><strong>Platform:</strong
> Hackerrank, Zoom<br /><strong>No. of Rounds: </strong
>3<br /><strong>Date/Time: </strong>Jan 22nd, 1.00pm to
2.30pm<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 1</strong><br />MCQs like:<br />- Who invented
Cricket?<br />- No. of shapes on a football?<br /><br /><strong
>Round 3</strong
><br />Player’s stats based questions like:<br />- What is Kohli’s
average in tests?<br />- How many nitto ATP titles does Nadal
have?<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Round 2</strong><br />Connection:<br />Here, the
answer should be found by using the pictures given in the slide
which represents the part of the answer i.e a word or a letter.
Finally, the answer can be found by connecting all the
pictures.<br /><br /><strong>General instruction:</strong><br />-
Switching tabs is not allowed<br />- Usage of mobile phones is
strictly prohibited<br />- Video must be on at all times<br />
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Sachin R: </strong
>7397603352<br />
</p>
</div>
</div>
</div>
</section>
<section
data-aos="fade-up"
data-aos-duration="1000"
id="ece_event-8"
style="margin-top: 150px; background-color: rgba(0, 0, 0, 0.81)"
>
<div class="container">
<h5
class="display-3 text-center"
data-aos="fade-up"
data-aos-duration="1250"
data-aos-once="true"
style="color: rgb(240, 114, 0)"
>
E-Treasure Hunt
</h5>
<p
class="text-center"
data-aos="fade-up"
data-aos-duration="1400"
data-aos-once="true"
style="color: #f07200; margin-top: 80px"
>
Discount Jack Sparrow
</p>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="1600"
data-aos-once="true"
style="margin-top: 68px"
>
<div class="col">
<p class="text-center" style="color: rgb(240, 114, 0)">
<strong>Event type: </strong
>Non<strong> </strong>Technical<br /><strong
>Participation:</strong
> Teams of 2, Any department<br /><strong>Platform:</strong
> Google Forms, Zoom<br /><strong
>No. of Rounds: </strong
>3<br /><strong>Date/Time: </strong>Jan 23rd, 10.00am to
11.30am<br />
</p>
</div>
</div>
<div
class="row text-center"
data-aos="fade-up"
data-aos-duration="2000"
data-aos-once="true"
>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>Description:</strong><br />13 clues in total,<br />Each
clue will send the participants to every nook and corner of the
globe, having them guessing and decuding where and how to get to
their next clue, only to find the treasure waiting for them, in
the deepest darkest corners of the internet.<br />
</p>
</div>
<div class="col">
<p style="color: rgb(240, 114, 0)">
<br /><strong>General instruction:</strong><br />- Switching tabs
is not allowed.<br />- Usage of mobile phones is needed.<br />-
Video must be on at all times.
</p>
</div>
</div>
<div
class="row"
data-aos="fade-up"
data-aos-duration="2250"
data-aos-once="true"
>
<div class="col">
<p class="text-center" style="color: rgb(225, 114, 0)">
<strong>Contact Info :</strong><br /><strong>Vasanth A:</strong>
6382993425<br /><br /><br /><br />
</p>
</div>
</div>
</div>
</section>
<div class="footer-dark">
<footer data-aos="fade-up" data-aos-duration="750" data-aos-once="true">
<div class="container">
<div class="row">
<div
class="col-md-6 item text"
data-aos="fade-up-right"
data-aos-duration="1000"
data-aos-once="true"
>
<img
class="img-fluid"
data-aos="fade-up"
data-aos-duration="1000"
data-aos-once="true"
src="assets/img/invente_5.0_logo.png"
style="
width: auto;
max-width: 145px;
max-height: 55px;
height: auto;
"
/>
<p
data-aos="fade-up"
data-aos-duration="1200"
data-aos-once="true"
style="margin-top: 17px"
>
Invente is a two-day techfest built around encouraging budding
engineers to showcase their talents with unbridled
enthusiasm.<br />
</p>
</div>
<div
class="col item social"
data-aos="fade-up-right"
data-aos-duration="1000"
data-aos-once="true"
>
<h4 style="margin-bottom: 49px">Get in touch !</h4>
<a
data-aos="fade"
data-aos-duration="1200"
data-aos-once="true"
href="https://www.facebook.com/ssninvente"
><i class="icon ion-social-facebook"></i></a
><a
data-aos="fade-up"