-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1134 lines (1052 loc) · 84.4 KB
/
index.html
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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>CSA Open Day 2023</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="#page-top"><img src="assets/csa-logo-color.png" width="90" height="50" alt="">
</a>
<button class="navbar-toggler text-uppercase font-weight-bold bg-primary text-black rounded" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#about">About</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#events">Events</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#schedule">Schedule</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#keynotes">KeyNotes</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#contact">Contact</a></li>
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="#sponsor">Sponsors</a></li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- Masthead Avatar Image-->
<img class="masthead-avatar mb-5" src="assets/img/avataaars.png" alt="..." />
<!-- Masthead Heading-->
<!-- <h1 class="masthead-heading text-uppercase mb-0">CSA Open Day</h1> -->
<!-- Icon Divider-->
<!-- <div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
</div> -->
<!-- Masthead Subheading-->
<p class="masthead-subheading font-weight-light mb-0 text-black">Date: March 4th, 2023.<br/> Timing: 9 AM to 5 PM <br/> CSA Department, IISc Bengaluru.</p>
</div>
</header>
<!-- About Section-->
<section class="page-section text-black mb-0" id="about">
<div class="container">
<h2 class="page-section-heading text-center text-uppercase text-secondary">About</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- About Section Content-->
<div class="row">
<div class="col-lg-4 ms-auto">
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="assets/carousel/1.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/2.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/3.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/4.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/5.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/6.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/7.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/8.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/9.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/10.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/11.jpg" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="assets/carousel/12.jpg" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<div class="col-lg-7 me-auto" style="padding: 20px 10px 20px 20px;"><p class="lead" style="text-align: justify;">Open Day is the occasion where the Indian Institute of Science opens its doors to the general public to visit, learn, ask and understand the research-culture here. Apart from talks and demos, CSA also hosts a number of competitions such as programming contests, quiz, machine learning based programming contest etc. CSA gladly invites students, professors, lecturers and teachers from various academic institutions and professionals from the industry, in general — anyone with curiosity.</p></div>
</div>
</div>
</section>
<!-- Event Grid Section-->
<section class="page-section bg-primary portfolio" id="events">
<div class="container">
<!-- Portfolio Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Events</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<p class="lead" style="text-align: center;">*Registration is free for all events.</p>
<br/>
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventkbcmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/kbc.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventinquizitomodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/InQUIZito.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventtreasurehuntmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/tresurehunt.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventquizoclockmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/quizoclock.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventfastestfingersmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/fastestfingers.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventringmastermodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/ringmaster.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventcounsellingmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/counseling.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventletscodemusicmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/stanly.jpeg" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventlabdemosmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/labdemos.png" alt="..." />
</div>
</div>
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventcyseckmodal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/events/CySecK.png" alt="..." />
</div>
</div>
</div>
</div>
</section>
<section class="page-section" id="schedule">
<div class="container">
<!-- Contact Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Schedule</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<br>
<div class="row">
<div class="col-md-6 offset-md-3">
<ul class="timeline">
<li>
<h4 style="color: rgb(103, 80, 164);">10am - 11am</h4><br/>
<p class="float-right">KeyNote 1</p>
<p class="float-right"><strong>Speaker:</strong> Prof. Murali Annavaram</p>
<p class="float-right"><strong>Topic:</strong> How do recommendation systems work? And, what are their privacy implications? </p>
<p class="float-right"><strong>Venue:</strong> CSA 254 </p>
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#keynote1modal">
<u style="color: rgb(103, 80, 164); " ><a style="color: rgb(103, 80, 164); ">Details</a></u>
</div>
<p></p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">10am - 11am</h4><br/>
<p class="float-right">Virtual Treasure Hunt (Filtering Round)</p>
<p class="float-right"><strong>Venue:</strong> Registration Desk </p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">11am - 12pm</h4><br/>
<p class="float-right">Explore the power of Quantum with QpiAI</p>
<p class="float-right"><strong>Venue:</strong> CSA Seminar Hall </p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">11:15am - 12pm</h4><br/>
<p class="float-right">InQUIZito</p>
<p class="float-right"><strong>Venue:</strong> CSA 112,117 </p>
<p></p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">12:15pm - 1pm</h4><br/>
<p class="float-right">Kaun Banega CodePati (1st Round)</p>
<p class="float-right"><strong>Venue:</strong> CSA 112,117 </p>
<p></p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">1pm - 2pm</h4><br/>
<p class="float-right">Lunch Break</p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">2:15pm - 3:15pm</h4><br/>
<p class="float-right">Virutal Treasure Hunt (Final Round)</p>
<p class="float-right"><strong>Venue:</strong> CSA 231,115 </p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">3pm - 4pm</h4><br/>
<p class="float-right">KeyNote 2</p>
<p class="float-right"><strong>Speaker:</strong> Radhika Dua</p>
<p class="float-right"><strong>Topic:</strong> Towards Sustainable Agriculture prioritizing Global South using Machine Learning </p>
<p class="float-right"><strong>Venue:</strong> CSA 254 </p>
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#keynote2modal">
<u style="color: rgb(103, 80, 164); " ><a style="color: rgb(103, 80, 164); ">Details</a></u>
</div>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">3:30pm - 5:30pm</h4><br/>
<p class="float-right">Kaun Banega CodePati (Final Round)</p>
<p class="float-right"><strong>Venue:</strong> CSA 115,231 </p>
<p></p>
</li>
<li>
<h4 style="color: rgb(103, 80, 164);">4:00pm - 5:00pm</h4><br/>
<p class="float-right">Let's Code Music: Understanding Programming Language Design through Music</p>
<p class="float-right"><strong>Speaker:</strong> Stanly Samuel </p>
<p class="float-right"><strong>Venue:</strong> CSA 254 </p>
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#eventletscodemusicmodal">
<u style="color: rgb(103, 80, 164); " ><a style="color: rgb(103, 80, 164); ">Details</a></u>
</div>
</li>
</ul>
</div>
</div>
<br/>
<center>*Schedule is tentative</center>
</div>
</section>
<!-- KeyNotes Section-->
<section class="page-section portfolio bg-primary" id="keynotes">
<div class="container">
<!-- Portfolio Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">KeyNotes</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Grid Items-->
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#keynote1modal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/keynotes/murali_annavaram.jpeg" alt="..." />
</div>
<br>
<h4 style="text-align: center;">Prof. Murali Annavaram</h4>
<h6 style="text-align: center;" >Smt. Rukmini - Shri. Gopalakrishnachar Visiting Chair Professor, CSA IISc</h6>
<p style="text-align: center;"></p>
</div>
</div>
<!-- Portfolio Grid Items-->
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<div class="portfolio-item mx-auto" data-bs-toggle="modal" data-bs-target="#keynote2modal">
<div class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100">
<div class="portfolio-item-caption-content text-center text-white"><i class="fas fa-search-plus fa-3x"></i></div>
</div>
<img class="img-fluid" src="assets/img/keynotes/radhika_dua.jpeg" alt="..." />
</div>
<br>
<h4 style="text-align: center;">Radhika Dua</h4>
<h6 style="text-align: center;" >Pre-Doctoral Researcher, Google Research India</h6>
<p style="text-align: center;"></p>
</div>
</div>
</div>
</section>
<section class="page-section" id="youtube">
<div class="container">
<center>
<iframe width="560" height="315" src="https://www.youtube.com/embed/YpJVquOlJxo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</center>
</div>
</section>
<!-- Contact Section-->
<section class="page-section bg-primary" id="contact">
<div class="container">
<!-- Contact Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Contact Us</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<br>
<div class="row">
<div class="col-lg-8">
<div class="mu-venue-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d52301.41268575479!2d77.54371451456984!3d13.014915689377416!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae17d3b5a43863%3A0xe4240a4d6bc7a0da!2sDepartment+Of+Computer+Science+And+Automation!5e0!3m2!1sen!2s!4v1487430999287" width="100%" height="600" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
</div>
<div class="col-lg-4">
<h3>When</h3>
<p>March 4, 2023</p>
<br>
<h3>Where</h3>
<p> Department of Computer Science and Automation,<br/>
Indian Institute of Science,<br/>
Bangalore 560012 <br/>
<a href="https://goo.gl/maps/PvLpDgf1rsAqMTGU8">Google Maps</a>
</p>
<br>
<h3>How to get here</h3>
<p>IISC is often locally referred to as the Tata Institute. It is better to use the name Tata Institute with the taxi, auto-rickshaw drivers, and bus conductors. Inside the institute, the department of CSA is close to the Campus Book House, ask for directions to the Book House.</p>
<!-- <h3>Phone</h3> -->
<!--<p> Random:<strong><a href="tel:+91240234557">+91 240234557</a></strong><br/>-->
</p>
</div>
</div>
</div>
</section>
<!-- Sponsors Section-->
<section class="page-section" id="sponsor">
<div class="container">
<!-- Contact Section Heading-->
<h2 class="page-section-heading text-center text-uppercase text-secondary mb-0">Sponsors</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<h3 style="text-align: center;">Platinum Sponsor</h3>
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<a href="https://qpiai.tech/"><img class="img-fluid" src="assets/img/sponsors/qpiai.png" alt="..." /></a>
<br>
</div>
<br>
<h3 style="text-align: center;">Gold Sponsor</h3>
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<div class="row justify-content-center">
<div class="col-md-6 col-lg-4 mb-5">
<a href="https://www.polymagelabs.com/"><img class="img-fluid" style="width:150%" src="assets/img/sponsors/polymage.png" alt="..." /></a>
<br>
</div>
</div>
</section>
<!-- Footer-->
<footer class="footer text-center">
<div class="container">
<div class="row">
<!-- Footer Location-->
<div class="col-lg-4 mb-5 mb-lg-0">
</div>
<!-- Footer Social Icons-->
<div class="col-lg-4 mb-5 mb-lg-0">
<a class="btn btn-outline-light btn-social mx-1" href="https://www.facebook.com/csaopenday/"><i class="fab fa-fw fa-facebook-f"></i></a>
<a class="btn btn-outline-light btn-social mx-1" href="https://www.instagram.com/csaopenday/"><i class="fab fa-fw fa-instagram"></i></a>
</div>
<!-- Footer About Text-->
<div class="col-lg-4">
</div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<div class="copyright py-4 text-center text-white">
<div class="container"><small>© Copyright © 2023 Department of CSA</small></div>
</div>
<!-- Portfolio Modals-->
<!-- Portfolio Modal 1-->
<div class="portfolio-modal modal fade" id="eventkbcmodal" tabindex="-1" aria-labelledby="eventkbcmodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Kaun Banega Codepati</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/events/kbc.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!-- <h4 class="mb-4" style="text-align: left;">Description</h4>
<p class="mb-4" style="text-align: left;" >Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<ol class="mb-4">
<li style="text-align: left;">asdsd</li>
<li style="text-align: left;">asdsd</li>
</ol>-->
<button class="btn btn-primary bnput-block-level" style="background-color: rgb(103, 80, 164); border: none; width: 100%;" onclick="window.location.href = 'https://forms.gle/ShV4Sd3zAhBQ329fA';">
Register
</button>
<br/>
<br/>
<h4 class="mb-4" style="text-align: left;">Rules</h4>
<ul class="mb-4">
<li style="text-align: left;">Participants should be enrolled in an educational institution</li>
<li style="text-align: left;">Participants can participate in TEAMS of AT MOST 2 students.</li>
<li style="text-align: left;">Each participant can be a member of only 1 team.</li>
<li style="text-align: left;">There will be TWO rounds.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Registration</h4>
<ul class="mb-4">
<li style="text-align: left;">Fill out the registration form: <a href="https://forms.gle/ShV4Sd3zAhBQ329fA">Link</a></li>
<li style="text-align: left;">Enter the FULL NAME of team members, College/School, Email IDs, and Degree/Class.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Qualification Round</h4>
<ul class="mb-4">
<li style="text-align: left;">MCQ-based round, +1 mark for correct answers and -0.33 for wrong answers.</li>
<li style="text-align: left;">Questions will be based on problem-solving, algorithms, data structures, time complexity analysis, and debugging.</li>
<li style="text-align: left;">This will be an offline round.</li>
<li style="text-align: left;">Separate quiz will be held for school and college teams.</li>
<li style="text-align: left;">The duration will be 45 minutes.</li>
<li style="text-align: left;">15 College teams and 15 School teams will qualify for the final round.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Final Round</h4>
<ul class="mb-4">
<li style="text-align: left;">2 hrs Coding round, with IOI style leader board (partial scoring with no penalty for failed submissions).</li>
<li style="text-align: left;">The problem set will have 4-6 problems</li>
<li style="text-align: left;">The final rank will be decided by the total time taken to submit the first submission with the maximum score for each problem.</li>
<li style="text-align: left;">Each problem will have time & memory limits for submissions.</li>
<li style="text-align: left;">Each team is allowed to carry with them one soft/hard copy of not more than 25 pages, (font size should be at least 11) that may contain code templates for reference
<br/>
<ul>
<li>This will be scrutinized and in case any violations, we will bar any team from using the same.</li>
<li>You will be allowed to copy paste code from the soft copy directly if needed.</li>
<li>Contestants can use their predefined templates.</li>
</ul>
</li>
<li style="text-align: left;">Reference code must be submitted at least 1 hour before the Coding round. Teams will be allowed to download the reference code before the Coding round.</li>
<li style="text-align: left;">The ranklist will be frozen 30 minutes before contest end time, that is at 5:00 pm.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Prizes</h4>
<h5 class="mb-4" style="text-align: left;">School Students</h5>
<ul class="mb-4">
<li style="text-align: left;">1st Prize: ₹ 5000 Amazon Pay Gift Card</li>
<li style="text-align: left;">2nd Prize: ₹ 3000 Amazon Pay Gift Card</li>
<li style="text-align: left;">3rd Prize: ₹ 2000 Amazon Pay Gift Card</li>
</ul>
<h5 class="mb-4" style="text-align: left;">Common Ranklist</h5>
<ul class="mb-4">
<li style="text-align: left;">1st Prize: ₹ 7000 Amazon Pay Gift Card</li>
<li style="text-align: left;">2nd Prize: ₹ 5000 Amazon Pay Gift Card</li>
<li style="text-align: left;">3rd Prize: ₹ 3000 Amazon Pay Gift Card</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Contact</h4>
<ul class="mb-4">
<li style="text-align: left;">Mayuresh : <a href="tel:8379013667">8379013667</a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2-->
<div class="portfolio-modal modal fade" id="eventinquizitomodal" tabindex="-1" aria-labelledby="eventinquizitomodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">InQUIZito</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img/events/InQUIZito.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<h4 class="mb-4" style="text-align: left;">Description</h4>
<ul class="mb-4">
<li style="text-align: left;">There will be three levels of quizzes:
<br/>
<ol>
<li>For students up to 8th standard (level Young Scientists)</li>
<li>For students from 9th to 12th standard (level Thinkers)</li>
<li>For students above 12th standard (level Puzzle Masters)</li>
</ol>
</li>
<li style="text-align: left;">Each candidate will be allowed to sit only at their respective quiz level.</li>
<li style="text-align: left;">There will be 40 questions (MCQs and Fill in the blanks).</li>
<li style="text-align: left;">Timings: 11:15 AM to 12:00 PM.</li>
<li style="text-align: left;">Duration will be 30-45 mins based on the event's start time.</li>
<li style="text-align: left;">The quiz will have the general aptitude and basic science problems.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Rules</h4>
<ul class="mb-4">
<li style="text-align: left;">Participants should be enrolled in an educational institution.</li>
<li style="text-align: left;">Use of a calculator or any electronic device is strictly prohibited.</li>
<li style="text-align: left;">Each participant can sit in the quiz only after showing a valid institution ID Card.</li>
<li style="text-align: left;">The decision of the coordinators will be final.</li>
<li style="text-align: left;">Tie breaks will be based on less number of incorrect attempted questions.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Registration</h4>
<ul class="mb-4">
<li style="text-align: left;">No registration is required; you can directly walk in to attempt the quiz.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Prizes</h4>
<h6 class="mb-4" style="text-align: left;">Level Young Scientists</h6>
<ul class="mb-4">
<li style="text-align: left;">1st Prize: IISc Backpack</li>
<li style="text-align: left;">2nd Prize: IISc Thermal bottle</li>
<li style="text-align: left;">3rd Prize: ISc Roller pen/IISc notepad</li>
</ul>
<h6 class="mb-4" style="text-align: left;">Level Thinkers</h6>
<ul class="mb-4">
<li style="text-align: left;">1st Prize: Oneplus nord Buds</li>
<li style="text-align: left;">2nd Prize: Redmi-smart band</li>
<li style="text-align: left;">3rd Prize: IISc keychain + Pendrive</li>
</ul>
<h6 class="mb-4" style="text-align: left;">Level Puzzle Masters</h6>
<ul class="mb-4">
<li style="text-align: left;">1st Prize: Amazon echo dot</li>
<li style="text-align: left;">2nd Prize: Cosmic-byte mechanical keyboard</li>
<li style="text-align: left;">3rd Prize: Power Bank</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Contact</h4>
<ul class="mb-4">
<li style="text-align: left;">Nikhil Dhama : <a href="tel:9599693846">9599693846</a> </li>
<li style="text-align: left;">Rohit Prasad</li>
<li style="text-align: left;">Meenaly Yadav</li>
<li style="text-align: left;">Sai Teja </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="eventletscodemusicmodal" tabindex="-1" aria-labelledby="eventletscodemusicmodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Let's Code Music!</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img//events/stanly.jpeg" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<h4 class="mb-4" style="text-align: left;">Description</h4>
<p style="text-align: left;">The talk revolves around the design of a programming language called Chuck. Chuck code when executed plays music as per the programmer's specification. The key takeaway is to understand how the Chuck programming language is designed, what it essentially takes to design a programming language for the domain of music, and consequently opening up the discussion for designing languages for any domain. </p>
<h4 class="mb-4" style="text-align: left;">Target Audience Skill Level</h4>
<p style="text-align: left;">No prior experience is necessary for music. Basic programming experience is preferred, but not necessary.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3-->
<div class="portfolio-modal modal fade" id="eventfastestfingersmodal" tabindex="-1" aria-labelledby="eventfastestfingersmodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Fastest Fingers</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img//events/fastestfingers.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<h4 class="mb-4" style="text-align: left;">Rules</h4>
<ul class="mb-4">
<li style="text-align: left;">1 minute will be allotted to each participant.</li>
<li style="text-align: left;">Text will contain a mix of numbers, text and punctuation.</li>
<li style="text-align: left;">Results will be declared based on WPM and Ties will be broken by accuracy.</li>
<li style="text-align: left;">Winners won’t be allowed to participate for a second time.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Eligibility</h4>
<ul class="mb-4">
<li style="text-align: left;">There will be separate sessions.</li>
<li style="text-align: left;">Participants need to register themselves by filling their details in the sheet which will be circulated.</li>
<li style="text-align: left;">To participate in the event, you must possess an ID card.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Contact</h4>
<ul class="mb-4">
<li style="text-align: left;">Burhan : <a href="tel:8989669910">8989669910</a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3-->
<div class="portfolio-modal modal fade" id="eventtreasurehuntmodal" tabindex="-1" aria-labelledby="eventtreasurehuntmodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Virtual Treasure Hunt</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img//events/tresurehunt.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<button class="btn btn-primary bnput-block-level" style="background-color: rgb(103, 80, 164); border: none; width: 100%;" onclick="window.location.href = 'https://forms.gle/xGNyTBxeJ3mh9r8h8';">
Register
</button>
<br/>
<br/>
<h4 class="mb-4" style="text-align: left;">Description</h4>
<ul class="mb-4">
<li style="text-align: left;" >A network treasure hunt game is an online game that requires players to solve a series of puzzles and clues to uncover a hidden treasure or object.</li>
<li style="text-align: left;">It is a team event where the team has to decode messages, solve riddles, and follow clues that are scattered throughout different websites or online platform.</li>
<li style="text-align: left;">As players progress through the game, they may encounter challenges that require them to collaborate and communicate effectively with their team members, further enhancing the team-building aspect of the game.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Rules</h4>
<ul class="mb-4">
<li style="text-align: left;">This is a team event with 2 - 4 members</li>
<li style="text-align: left;">1st round is an elimination round, 10 teams would qualify for the subsequent stages.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Registration</h4>
<ul class="mb-4">
<li style="text-align: left;">Registration open to all</li>
<li style="text-align: left;">Registration Link : <a href="https://forms.gle/xGNyTBxeJ3mh9r8h8">Link</a></li>
</ul>
<h4 class="mb-4" style="text-align: left;">Prizes</h4>
<ul class="mb-4">
<li style="text-align: left;">1st Prize: ₹ 7000 Amazon Pay Gift Card</li>
<li style="text-align: left;">2nd Prize: ₹ 5000 Amazon Pay Gift Card</li>
<li style="text-align: left;">3rd Prize: ₹ 3000 Amazon Pay Gift Card</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Contact</h4>
<ul class="mb-4">
<li style="text-align: left;">Arman : <a href="tel:8299289646">8299289646</a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="eventringmastermodal" tabindex="-1" aria-labelledby="eventringmastermodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Ring Master</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img//events/ringmaster.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<h4 class="mb-4" style="text-align: left;">Rules</h4>
<ul class="mb-4">
<li style="text-align: left;">Participants can only participate individually. Teams are NOT allowed.</li>
<li style="text-align: left;">Winners won't be allowed to participate in future rounds.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Overview</h4>
<ul class="mb-4">
<li style="text-align: left;">Participants will toss rings on numbered cones to select values for each ring (variable), and the equation will be evaluated for each set of values.</li>
<li style="text-align: left;">The player that achieves the highest score by maximizing the equation will win a prize.</li>
<li style="text-align: left;">Winners will be chosen every hour.</li>
<li style="text-align: left;">The event will run for several hours and feature a variety of equations and cone patterns to keep the game fresh and engaging. Whether competing individually or as part of a team, players will need to strategize and adapt to new challenges to come out on top.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Prizes</h4>
<ul class="mb-4">
<li style="text-align: left;">Rs. 1000 worth gift vouchers to be given to winners every hour.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Contact</h4>
<ul class="mb-4">
<li style="text-align: left;">Ankit Singh : <a href="tel:9004277050">9004277050</a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="eventcounsellingmodal" tabindex="-1" aria-labelledby="eventcounsellingmodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Counseling Corner</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img//events/counseling.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<h4 class="mb-4" style="text-align: left;">Contact</h4>
<ul class="mb-4">
<li style="text-align: left;">Ayush Sawarni : <a href="tel:7737208771">7737208771</a> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="eventlabdemosmodal" tabindex="-1" aria-labelledby="eventlabdemosmodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Lab Demos</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img//events/labdemos.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<p style="text-align: justify;" >We at Department of Computer Science and automation, Indian Institute of Science invite you for lab demos on upcoming Open Day where you will get a flavor of ongoing cutting edge research in each lab at CSA. The following labs will be presenting their demonstrations</p>
<ul class="mb-4">
<li style="text-align: left;" >Cognition Lab</li>
<li style="text-align: left;">Computer Systems Security Lab</li>
<li style="text-align: left;">Cryptography and Information security </li>
<li style="text-align: left;">Cryptography and Distributed Trust Group</li>
<li style="text-align: left;">Discrete and Computational Geometry Lab </li>
<li style="text-align: left;">Game Theory</li>
<li style="text-align: left;">Intelligent systems</li>
<li style="text-align: left;">Programming Languages Lab </li>
<li style="text-align: left;">Stochastic Approximation and Data Analysis Lab</li>
<li style="text-align: left;">Stochastic Systems Lab</li>
<li style="text-align: left;">SPIRE Lab, EE Department</li>
<li style="text-align: left;">Visualization and Graphics Lab</li>
</ul>
<p style="text-align: left;">and many more..</p>
<p style="text-align: justify;">If you are a school or college student and want to know more about the advancement in computer science and wanted to be part of that advancement visit Department of Computer Science and Automation (CSA) at Indian Institute of Science this Open Day on 4th March 2023. This Open Day gives you an opportunity to get your all queries answered related to computer science. You will also find out different opportunities that are present in each Lab and at CSA. See you in Lab Demos at CSA, IISc on 4th March 2023.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="portfolio-modal modal fade" id="eventquizoclockmodal" tabindex="-1" aria-labelledby="eventquizoclockmodal" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header border-0"><button class="btn-close" type="button" data-bs-dismiss="modal" aria-label="Close"></button></div>
<div class="modal-body text-center pb-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<!-- Portfolio Modal - Title-->
<h2 class="portfolio-modal-title text-secondary text-uppercase mb-0">Quiz O' Clock</h2>
<!-- Icon Divider-->
<div class="divider-custom">
<div class="divider-custom-line"></div>
</div>
<!-- Portfolio Modal - Image-->
<img class="img-fluid rounded mb-5" src="assets/img//events/quizoclock.png" alt="..." />
<!-- Portfolio Modal - Text-->
<!--<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia neque assumenda ipsam nihil, molestias magnam, recusandae quos quis inventore quisquam velit asperiores, vitae? Reprehenderit soluta, eos quod consequuntur itaque. Nam.</p>
<button class="btn btn-primary" data-bs-dismiss="modal">
<i class="fas fa-xmark fa-fw"></i>
Close Window
</button>-->
<h4 class="mb-4" style="text-align: left;">Description</h4>
<ul class="mb-4">
<li style="text-align: left;">Every hour (starting from 10 o'clock), we will be displaying a puzzle on the screens available on each floor. You are required to solve it and submit the answer via a form.</li>
<li style="text-align: left;">QR code for the form will be available on each floor.</li>
<li style="text-align: left;">New problems will be available at 10 AM, 11 AM, 12 PM, 2 PM, 3 PM, 4 PM, and 5 PM.</li>
<li style="text-align: left;">Each problem will be a logical puzzle.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Rules</h4>
<ul class="mb-4">
<li style="text-align: left;">This event is open to everyone.</li>
<li style="text-align: left;">There will be a QR code available to submit your answers.</li>
<li style="text-align: left;">First candidate to submit the correct answer will be the winner.</li>
<li style="text-align: left;">The decision of the coordinators will be final.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Registration</h4>
<ul class="mb-4">
<li style="text-align: left;">No registration is required; Anyone can scan the QR code on the display to submit the answer.</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Prizes</h4>
<ul class="mb-4">
<li style="text-align: left;">Gift voucher worth 1k (for every hourly puzzle).</li>
</ul>
<h4 class="mb-4" style="text-align: left;">Contact</h4>
<ul class="mb-4">
<li style="text-align: left;">Nikhil Dhama : <a href="tel:9599693846">9599693846</a> </li>
</ul>
</div>
</div>
</div>