-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1006 lines (894 loc) · 52 KB
/
Copy pathindex.html
File metadata and controls
1006 lines (894 loc) · 52 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 lang="en">
<head>
<!-- =====google ads sense starts====== -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7020320523228842"
crossorigin="anonymous"></script>
<!-- =====google ads sense ends====== -->
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="description" content="timetable for IT students of vjit">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="NAND KISHORE">
<meta name="google-site-verification" content="Axiq9exbH1boynA3O-7W8V1XeUhY8G__amvPn0XGn58" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="bootstrap/dist/css/bootstrap.min.css">
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- <link rel="stylesheet" href="js/jquery.dataTables.min.css" /> -->
<link rel="icon" class="logo" href="images/logo.png" />
<title>Information Technology | Unofficial</title>
<style>
td {
text-align: center !important;
font-size: 1rem;
}
</style>
<link rel="stylesheet" href="style.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7020320523228842"
crossorigin="anonymous"></script>
</head>
<body>
<div id="preloader"></div>
<!-- navbar section starts -->
<nav class="navbar navbar-expand-md fixed-top navbar-dark">
<div class="container-fluid">
<a class="navbar-brand p-0 logo" href="/"><img src="images/logo.png" alt="" width="40px" /></a>
<button class="navbar-toggler" style="color: transparent; border-color: transparent;" type="button"
data-bs-toggle="offcanvas" data-bs-target="#offcanvasRight" aria-controls="navbarCollapse"
aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="1styear.html">Ist year</a>
</li>
</ul>
</div>
<div class="notify">
<button class="btn btn-primary p-btn" id="liveToastBtn"><i class="fas fa-solid fa-bell"></i></button>
</div>
</div>
</nav>
<!-- navbar section ends -->
<!-- off canvas starts -->
<section class="side-bar">
<div class="offcanvas offcanvas-end d-flex flex-column flex-shrink-0 p-1 text-dark bg-dark"
style="width: 280px; background-color: var(--light-bg)!important;" tabindex="-1" id="offcanvasRight"
aria-labelledby="offcanvasRightLabel">
<div class="offcanvas-header">
<a class="navbar-brand" href="/"><img src="images/logo.png" alt="" width="40px" /></a>
<h5 id="offcanvasRightLabel">Information Technology</h5>
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close">
</button>
</div>
<div class="offcanvas-body">
<ul class="nav nav-pills flex-column mb-auto">
<li class="nav-item">
<a href="/" class="nav-link" aria-current="page">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#home"></use>
</svg> Home
</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link text-white">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#speedometer2"></use>
</svg> About
</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link text-white">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#speedometer2"></use>
</svg> Contact
</a>
</li>
<li class="nav-item">
<a href="1styear.html" class="nav-link text-white">
<svg class="bi me-2" width="16" height="16">
<use xlink:href="#speedometer2"></use>
</svg> 1st year
</a>
</li>
</ul>
</div>
</div>
</section>
<!-- off canvas ends -->
<!-- bg image ends -->
<div class="bg-light banner me-md-3 pt-5 pb-5 px-3 pt-md-5 px-md-5 text-center overflow-hidden w-100">
<div class="mb-0 pt-5">
<h2 class="display-5 text-uppercase text-light pt-5">Information Technology</h2>
<p class="lead text-light"> IInd year </p>
</div>
<div class="box">
<p class="m-1">
<small class="text-light fw-bold m-1 fst-italic" style="font-size: 10px;">***Give a Star to Support
Us</small>
</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<div class="github">
<div class="btn-group btn-group-sm shadow-lg mt-0" role="group" aria-label="...">
<a target="_blank" href="https://github.com/nandk4552/timetable"
class="btn btn-sm btn-outline-warning social-count text-muted"><i
class="fas text-muted fa-star mx-1"></i>Star</a>
<a target="_blank" href="https://github.com/nandk4552/timetable"
class="btn btn-sm btn-outline-warning text-muted social-count">3
<span
class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-danger">
3
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- alert starts -->
<div class="p-alert mb-3 alert alert-success alert-dismissible fade show" role="alert">
<strong>Special Thanks!</strong> To Every classmate and faculty for sharing notes. <a target="_blank"
href="https://www.linkedin.com/in/nand-kishore-809880172/" class="alert-link">contact me</a>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<!-- alert ends -->
<!-- <section class="time-table">
<h2 class="py-3 display-5 under text-center text-capitalize">Time table</h2>
<div class="container">
<div class="table-responsive">
<table class="tbl-full my-3 table table-hover table-light">
<thead>
<tr>
<th scope="col">Day</th>
<th scope="col">9AM-10AM</th>
<th scope="col">10AM-11AM</th>
<th scope="col">11AM-12PM</th>
<th scope="col">12PM-12:45PM</th>
<th scope="col">12:45PM-1:45PM</th>
<th scope="col">1:45PM-2:45PM</th>
<th scope="col">2:45PM-3:45PM</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">MONDAY</th>
<td colspan="3" class="text-center">
------ECS LAB------
</td>
<td class="text-center">L</td>
<td>AP</td>
<td>PPS-II</td>
<td>M-II</td>
</tr>
<tr>
<th scope="row">TUESDAY</th>
<td colspan="3" class="text-center">
------EGM LAB------
</td>
<td class="text-center">U</td>
<td>M-II</td>
<td>AP</td>
<td>PPS-II</td>
</tr>
<tr>
<th scope="row">WEDNESDAY</th>
<td>AP</td>
<td>ENG</td>
<td>M-II</td>
<td class="text-center">N</td>
<td colspan="3" class="text-center">
------PPS-II LAB-------
</td>
</tr>
<tr>
<th scope="row">THURSDAY</th>
<td colspan="3" class="text-center">
------EGM LAB------
</td>
<td class="text-center">C</td>
<td>M-II</td>
<td>PPS-II</td>
<td>AP</td>
</tr>
<tr>
<th scope="row">FRIDAY</th>
<td colspan="3" class="text-center">
------PHY LAB------
</td>
<td class="text-center">H</td>
<td>LIB/M-II</td>
<td>M-II</td>
<td>MNT</td>
</tr>
<tr>
<th scope="row">SATURDAY</th>
<td>M-II</td>
<td>AP</td>
<td>PPS-II</td>
<td class="text-center">-</td>
<td>ENG</td>
<td>AP</td>
<td>PPS-II</td>
</tr>
</tbody>
</table>
</div>
</div>
</section> -->
<!--================= notification starts============ -->
<div class="toast-container shadow position-fixed bottom-0 end-0 p-3">
<div id="liveToast" class="toast" role="alert" aria-live="assertive" aria-atomic="true">
<div class="toast-header text-dark">
<img src="/images/INF.png" width="25px" height="25px" class="rounded me-2" alt="...">
<strong class="me-auto">New Notification</strong>
<button type="button" class="btn-close" data-bs-dismiss="toast" aria-label="Close"></button>
</div>
<div class="toast-body bg-white text-black">
semester 2 exams on 13/09/2022
</div>
</div>
</div>
<!--================= notification ends============ -->
<!-- notes section starts -->
<section class="notes my-5">
<div class="container mb-3">
<h2 class="py-3 display-5 under text-center">Our Notes</h2>
<p class="text-muted fw-bold"><small><i>***click the below links to download notes</i> </small></p>
<p class="text-muted fw-bold">Syllabus (R21) : <a
href="https://drive.google.com/file/d/1Ulg819mbVedQov-ylZIo3fRgm_8lqbPv/view?usp=sharing"
target="_blank" rel="noopener noreferrer" class=" hover:text-dark">clik here to view</a></p>
<!-- accordion starts -->
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h1 class="accordion-header" id="headingOne">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
MFCS<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h1>
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne"
data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
<div>
<div class="my-3">
<h6>UNIT 1</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn me-2"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1Ziro3w2JdvhjetFy4GhffMKzrUds3t44/view?usp=sharing">
unit 1 * </a>
</div>
<div class="my-3">
<h6>UNIT 2</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn me-2"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1_Wqvl9nzywPcD1H6y5yzjpkLkZ3IA1fQ/view?usp=sharing">
Elementary Combinatorics * </a>
</div>
<div class="my-3">
<h6>UNIT 3</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn me-2"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1BGQp6LtehCpljXCXs-iYC-_w9HiSlEf_/view?usp=sharing">
Recurrence Relations * </a>
</div>
<div class="my-3">
<h6>UNIT 4&5</h6>
<a target="_blank" class=" btn-sm btn-primary p-btn me-2"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1FgBF5aKz__wuoE_SHICfR9KJHHXkCCDP/view?usp=sharing">
click here* </a>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h1 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Probability and statistics <span class="badge bg-warning text-dark shadow-lg mx-2">New
*</span>
</button>
</h1>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div>
<div class="my-3">
<h6>P&S tables</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1L-xkSCaBwke6FqrRlCspqwaVRsBgV8d5/view?usp=sharing">Tables
</a>
</div>
<div class="my-3">
<h6>UNIT 1</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1BIFa9g4AAuwMjbWFPAXB3HRdVUFO6Eha/view?usp=sharing">Probability
and random variable </a>
</div>
<div class="my-3">
<h6>UNIT 2</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1--qdD5Vvh3UTGFx46PZFd8wpovk1sFWq/view?usp=sharing">Probability
Distributions </a>
</div>
<div class="my-3">
<h6>UNIT 3</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1m5JhgrMLOPwePnIv6-PcD9DJ9qFvqGIq/view?usp=sharing">Sampling
theroy & test of hypothesis
</a>
</div>
<div class="my-3">
<h6>UNIT 4</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1bMzbxoLZUJMIpVXnf31zyPIpanSvbYMf/view?usp=sharing">TESTING
OF HYPOTHESIS II
</a>
</div>
<div class="my-3">
<h6>UNIT 5</h6>
<a target="_blank" class="disabled btn-sm btn-primary p-btn"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1D-BClPxiyNa8BAePszc8pT8RnNecLKXy/view?usp=sharing">Curve
Fitting
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Data Structures<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body ">
<div class="my-3">
<h6>UNIT 1</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1-e1FS8tiCieQVy5MgfeXpxkqJaJL8zDl/view?usp=sharing">
Advance Data structures *</a>
</div>
<div class="my-3">
<h6>UNIT 2</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1JyMWhUM3N8KbF-WgNivUnedDDrsDvf-p/view?usp=sharing">
Trees *</a>
</div>
<div class="my-3">
<h6>UNIT 3</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1rSM7kMsGRD1ZLq9aLBrnVQIJWmaDge88/view?usp=sharing">
Advance Trees*</a>
</div>
<div class="my-3">
<h6>UNIT 4</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1_XAI9e1MgvD_8O5tCMj0cpODgWEcX3kl/view?usp=sharing">
Graphs*</a>
</div>
<div class="my-3">
<h6>UNIT 5</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1o1O29gppPrwko8LP4KubBN6JXR0QA9nm/view?usp=sharing">
Hashing*</a>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseFour" aria-expanded="false" aria-controls="collapseThree">
Python Programming<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="my-3">
<h6>UNIT 1</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1Gu5ZALcM6Mtz6tRk-oUx8yqEBqhtFgh3/view?usp=sharing">
Introdution to Python</a>
</div>
<div class="my-3">
<h6>UNIT 2</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1C1kW-usMCiOESAYYBUxGt9ZJtOeu32uP/view?usp=sharing">
Functions,Modules,Strings & Regular Expressions </a>
</div>
<div class="my-3">
<h6>UNIT 3</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1OUi7vFd6CKFleauf4PpUcg_BOlB_nohm/view?usp=sharing">
Introduction to OOPs</a>
</div>
<div class="my-3">
<h6>UNIT 4</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1Yczz-d78FyEv2AYm2M0gNuwZLgbryrR3/view?usp=sharing">
Inheritance
</a>
</div>
<div class="my-3">
<h6>UNIT 5</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1sI26qppIcJF8mpzA-9S3tVfLqLIqQRKh/view?usp=sharing">
files
</a>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1mUGMgAUBfx2a_rXq4QK_E7m_sKruP-PV/view?usp=sharing">
exception Handling
</a>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseCSA" aria-expanded="false" aria-controls="collapseCSA">
CSA<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="collapseCSA" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body ">
<div class="my-3">
<h6>UNIT 4</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1_3R2Oma2F-Cw5TqSigUOOlV8tk1UQmDk/view?usp=sharing">
Computer Arithmatic*</a>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingFive">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
DBMS<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="collapseFive" class="accordion-collapse collapse" aria-labelledby="headingFive"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="my-3">
<h6>UNIT 1</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1FeCeX2QttrPmbysvAEDoBh7bEJ3W8YAU/view?usp=sharing">
click here </a>
</div>
<div class="my-3">
<h6>UNIT 2</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1Nz_waWV2yC8yvxLIfs9X-xZ86RfO5N_P/view?usp=sharing">
click here </a>
</div>
<div class="my-3">
<h6>UNIT 3</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1kJdeYcLg5ZIh2rzGT2FgA_LWHqFOSqY6/view?usp=sharing">
click here</a>
</div>
<div class="my-3">
<h6>UNIT 4&5</h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1xkmZqJZt3B5LQyY6qH8aktEvW6rj2oG6/view?usp=sharing">
click here</a>
</div>
<div class="my-3">
<h6>ALL UNIT NOTES </h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1tFjFTg_ex5mTeg9QHPj8ELCXdKGt8ChB/view?usp=sharing">
All units</a>
</div>
<div class="my-3">
<h6>Extra </h6>
<a target="_blank" disabled class="disabled p-btn btn-sm btn-primary"
style="text-decoration: none;"
href="https://drive.google.com/file/d/1dqC0VMM-Cjtdfgq1ERaIeT89T1hhBAmv/view?usp=sharing">
Relational DB</a>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingSix">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseSix" aria-expanded="false" aria-controls="collapseSix">
DBMS Lab<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="collapseSix" class="accordion-collapse collapse" aria-labelledby="headingSix"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="my-3">
<h6>Lab Manual</h6>
<a target="_blank" class="disabled p-btn btn-sm btn-primary" style="text-decoration: none;"
href="https://drive.google.com/file/d/1ri9wfWzZJOzUhq3jyDMsGbocweC-K0_P/view?usp=sharing">
click here</a>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingPP">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#pp" aria-expanded="false" aria-controls="pp">
Python Lab<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="pp" class="accordion-collapse collapse" aria-labelledby="headingPP"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="my-3">
<h6>Lab manual</h6>
<a target="_blank" class=" p-btn btn-sm btn-primary" style="text-decoration: none;"
href="https://drive.google.com/file/d/1LRjOX2NV-AUL_HSzGjUpMAaaFUgcVxC8/view?usp=sharing">
click here</a>
</div>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingFive">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#DS" aria-expanded="false" aria-controls="DS">
DS Lab<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="DS" class="accordion-collapse collapse" aria-labelledby="headingFive"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="my-3">
<h6>Lab manual</h6>
<a target="_blank" class=" p-btn btn-sm btn-primary" style="text-decoration: none;"
href="https://drive.google.com/file/d/1XSBUxGyzOMWmvodPzxCpuXM-nk-8_5Nv/view?usp=sharing">
click here</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- notes section ends -->
<!-- question bank section starts -->
<section class="question-bank my-5 py-5">
<div class="container my-3 shadow-sm bg-light">
<h2 class="py-3 display-5 under text-center">Question Banks </h2>
<div class="row shadow-sm">
<div class="col-sm-6 my-2">
<div class="card">
<div class="card-body">
<h5 class="card-title">CSA Question Bank </h5>
<a target="_blank"
href="https://drive.google.com/file/d/1kDvZuUYMBxmtkQZ2vOebZjRMjgfzODjH/view?usp=sharing"
class=" p-btn btn btn-sm btn-primary">Questions</a>
<a target="_blank"
href="https://drive.google.com/file/d/1j6UdbO0MzZXLch0thBGZIT_buwarGHev/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit 1 saq</a>
<a target="_blank"
href="https://drive.google.com/file/d/1pPwcyIkLL_0-7_gUOtbkLb45WvCOj1j4/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit 1 laq</a>
</div>
</div>
</div>
<div class="col-sm-6 my-2">
<div class="card">
<div class="card-body">
<h5 class="card-title">DS Question Bank </h5>
<a target="_blank"
href="https://drive.google.com/file/d/1lGMgJ8Ms3MgVejPURkRwZ5eJl25ocuo9/view?usp=sharing"
class=" p-btn btn btn-sm btn-primary">Questions</a>
<a target="_blank"
href="https://drive.google.com/file/d/1Cd8N2-OktYBCu5yPNYCD4sAY236Mm_AR/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit 1</a>
</div>
</div>
</div>
</div>
<div class="row shadow-sm">
<div class="col-sm-6 my-2">
<div class="card">
<div class="card-body">
<h5 class="card-title">Python Question Bank </h5>
<a target="_blank"
href="https://drive.google.com/file/d/14VCdRvT0Hf4_O2AFhe_xEqBhlicnp1g5/view?usp=sharing"
class=" p-btn btn btn-sm btn-primary">Questions</a>
<a target="_blank"
href="https://drive.google.com/file/d/1H7F3SUdb_IFb0E4XxEkjp_ruFikCXJ11/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-1,2 Saq</a>
<a target="_blank"
href="https://drive.google.com/file/d/1zX5pQCG8UJdgG7RWs2cBF7d01YonsIVY/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-1 Laq</a>
</div>
</div>
</div>
<div class="col-sm-6 my-2">
<div class="card">
<div class="card-body">
<h5 class="card-title">MFCS Question Bank</h5>
<a target="_blank"
href="https://drive.google.com/file/d/1ZVdCl7-KGE_Y-695Pr5h42PjMd1v7Eja/view?usp=sharing"
class="p-btn btn btn-sm btn-primary">Questions</a>
<a target="_blank"
href="https://drive.google.com/file/d/1vh-0N2C41DR5WwyEV3MUCnfs83eHxK75/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-1 Laqs*</a>
<a target="_blank"
href="https://drive.google.com/file/d/16L-8x_p13rDvD-wuiyDtSlsI7S1It2H6/view?usp=sharing"
class=" option-btn btn btn-sm btn-primary">unit-2 Laqs*</a>
</div>
</div>
</div>
</div>
<div class="row shadow-sm">
<div class="col-sm-6 my-2">
<div class="card">
<div class="card-body">
<h5 class="card-title">DBMS Question Bank </h5>
<a target="_blank"
href="https://drive.google.com/file/d/1Q6NSYHtDTyboZO-Yax9PMVo3vx5il9nq/view?usp=sharing"
class=" p-btn btn btn-sm btn-primary">Questions</a>
</div>
</div>
</div>
<div class="col-sm-6 my-2">
<div class="card">
<div class="card-body">
<div>
<h5 class="card-title">p&s Question Bank</h5>
<a target="_blank"
href="https://drive.google.com/file/d/1d64wlk09jbLdHPb8l2qg87XTOqzYd_Mf/view?usp=sharing"
class="p-btn btn btn-sm btn-primary">Questions</a>
<a target=" _blank"
href="https://drive.google.com/file/d/1d_fDJ53it_YXo8p97Nnd6pqk8YjpZJPE/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-1 Laq *</a>
<a target="_blank"
href="https://drive.google.com/file/d/1JTmY52D3zezuSvDTC3rK_1csFU-vub9q/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-2 saq *</a>
<a target="_blank"
href="https://drive.google.com/file/d/1PXOwEmO6YP5W-YOqKhLClyujrpNbXsll/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-2 Laq *</a>
<a target="_blank"
href="https://drive.google.com/file/d/1tni4HIbYBAL_Vf8jAvDyo57cBHDUlz97/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-3 saq *</a>
<a target="_blank"
href="https://drive.google.com/file/d/1gRFVw7tD2MfgjbaJ3TbCuzNGIb_zKtSZ/view?usp=sharing"
class="option-btn btn btn-sm btn-primary ">unit-4 Laq *</a><a target="_blank"
href="https://drive.google.com/file/d/1IkMaIE0VTHUqsNNVygN5FLrolEKrB81e/view?usp=sharing"
class="option-btn btn btn-sm btn-primary ">unit-5 Laq *</a>
</div>
or
<div>
<a target="_blank"
href="https://drive.google.com/file/d/1WDMfx7JAd0M6CC_ElwEaPBkP4BpPqJA_/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-1 *</a>
<a target="_blank"
href="https://drive.google.com/file/d/15j2NUUa9WTR810iszQtYCZ4Rcc0LSVMb/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-2 *</a>
<a target="_blank"
href="https://drive.google.com/file/d/1WTm1l1w8ZpN7V1yZFDqghz0aogxPBkor/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-3 *</a><a target="_blank"
href="https://drive.google.com/file/d/10CyM-mVxq9X111wn-cLlc5fb4xHv5WLk/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-4 *</a><a target="_blank"
href="https://drive.google.com/file/d/1TBR-O65lWBURitRvQEx47lLjnVTSyb7u/view?usp=sharing"
class="option-btn btn btn-sm btn-primary">unit-5 *</a>
</div>
</div>
</div>
</div>
<div class="col-sm-6 my-2">
<div class="card">
<div class="card-body">
<h5 class="card-title">ES Question Bank</h5>
<a target="_blank"
href="https://drive.google.com/file/d/1KVoHyksPVLMo8VkUoCeoV6X6PiIMmpmb/view?usp=sharing"
class="p-btn btn btn-sm btn-primary">Questions</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- question bank section ends -->
<!-- model paper seciton starts -->
<section class="papers my-3">
<div class="container my-3">
<div class="alert alert-light" role="alert">
<h2 class="py-3 display-5 alert-heading under text-black text-center">Model Papers </h2>
<div class="accordion my-4" id="accordionExample">
<div class="accordion-item my-2">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Mid Exam Papers R(21) batch
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title text-black">Mid-1 Papers
</h5>
<p class="fst-italic card-text fw-bold text-muted">The Below link
contains previous mid-1 exam papers for all subjects</p>
<a target="_blank"
href="https://drive.google.com/file/d/1-nNF-_Rg7W9PbYPCV7K_s9QRIPC_2S61/view?usp=sharing"
class="= p-btn btn btn-sm btn-primary">
click here to download</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title text-black">Mid-2 Papers
</h5>
<p class="fst-italic card-text fw-bold text-muted">The Below link
contains previous mid-2 exam papers for all subjects</p>
<a target="_blank"
href="https://drive.google.com/file/d/1aYWzjVFmFFnf6rZ-hfo81ldlpJvS2ML6/view?usp=sharing"
class="p-btn btn btn-sm btn-primary"> click
here to
download</a>
</div>
</div>
</div>
</div>
<div class="row d-none">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title text-black">Mid-3 Papers</h5>
<p class="fst-italic fw-bold card-text text-muted">The Below link
contains previous mid-3 exam papers for all subjects</p>
<a target="_blank" href="#"
class="disabled p-btn btn btn-sm btn-primary "> click here
to download</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="accordion my-4" id="accordionExample">
<div class="accordion-item my-2">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseSem" aria-expanded="true" aria-controls="collapseSem">
Semester Exam Papers<span class="badge bg-warning text-dark shadow-lg mx-2">New *</span>
</button>
</h2>
<div id="collapseSem" class="accordion-collapse collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title text-black">Semester-II Regular Papers (2021-22)
</h5>
<p class="card-text text-muted fw-bold fst-italic">The Below link
contains all the subjects <span
class="text-dark fw-bold text-decoration-underline">semester</span>
exam papers</p>
<a target="_blank"
href="https://drive.google.com/file/d/1C3bD-R2rIzULWnba87uw8fC1smv-f6HB/view?usp=sharing"
class="p-btn btn btn-sm btn-primary"> click here to
download</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- model paper section ends -->
<!-- about section starts -->
<section class="about mb-5 container">
<div class="flex">
<div class="image">
<img src="images/img/team1.png" alt="">
</div>
<div class="content">
<h3>about us</h3>
<p>We are providing notes and question bank answers much more...</p>
<a href="about.html" class="btn p-btn">read more</a>
</div>
</div>
</section>
<!-- about section ends -->
<section class="home-contact">
<div class="content">
<h3>have any questions?</h3>
<p>Do you have any queries, any suggestions feel free to contact me <br>I'm going to resolve your issue as
soon as possible</p>
<a href="contact.html" class="white-btn btn">contact us</a>
</div>
</section>
<!-- footer section starts -->
<section class="footer">
<footer>
<ul class="nav justify-content-center">
<li class="nav-item "><a href="/" class="nav-link px-2 text-light">Home</a></li>
<li class="nav-item"><a href="about.html" class="nav-link px-2 text-light">About</a></li>
<li class="nav-item"><a href="contact.html" class="nav-link px-2 text-light">Contact</a></li>
<li class="nav-item"><a href="1styear.html" class="nav-link px-2 text-light">Ist year</a></li>
</ul>
<hr class="pt-0 mt-0">
<p class="text-light copyright fw-bold text-center fst-italic"><em>***All the Notes and Materials used in
this website for educational purpose only not to promote ourself</em></p>
<h6 class="text-center text-light fs-6 fw-normal">©
<span class="text-dark fw-bold">
<script>document.write(new Date().getFullYear());</script>
</span>
IT Section-B | Created By <i class="fas fa-heart text-danger"></i> <a target="_blank"
href="https://www.linkedin.com/in/nand-kishore-809880172/"
class="text-decoration-underline text-light fs-6"> NAND KISHORE</a>
</h6>
</footer>
</section>
<!-- footer section ends -->
<!-- custom js file link -->
<script src="js/script.js"></script>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<!-- buyme a coffe starts -->
<script data-name="BMC-Widget" data-cfasync="false" src="https://cdnjs.buymeacoffee.com/1.0.0/widget.prod.min.js"
data-id="nandk4552" data-description="Support me on Buy me a coffee!"