-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontents.js
1324 lines (1323 loc) · 46.7 KB
/
contents.js
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
const contents = [
{
id: 1,
Title: "Interview Preparation",
content: [
{
title: "1000 Data Structures & Algorithms I MCQs",
link: "https://www.sanfoundry.com/1000-data-structure-questions-answers/",
},
{
title: "1000 Data Structures & Algorithms II MCQs",
link: "https://www.sanfoundry.com/1000-data-structures-algorithms-ii-questions-answers/",
},
{
title: "1000 Python MCQs",
link: "https://www.sanfoundry.com/1000-python-questions-answers/",
},
{
title: "1000 Java MCQs",
link: "https://www.sanfoundry.com/java-questions-answers-freshers-experienced/",
},
{
title: "1000 C++ MCQs",
link: "https://www.sanfoundry.com/cplusplus-interview-questions-answers/",
},
{
title: "1000 C MCQs",
link: "https://www.sanfoundry.com/c-interview-questions-answers/",
},
{
title: "1000 C# MCQs",
link: "https://www.sanfoundry.com/1000-csharp-questions-answers/",
},
],
},
{
id: 2,
Title: "School MCQs",
content: [
{
title: "1000 Mathematics MCQs – Class 8",
link: "https://www.sanfoundry.com/1000-mathematics-questions-answers-class-8/",
},
{
title: "1000 Mathematics MCQs – Class 9",
link: "https://www.sanfoundry.com/1000-mathematics-questions-answers-class-9/",
},
{
title: "1000 Mathematics MCQs – Class 10",
link: "https://www.sanfoundry.com/1000-mathematics-questions-answers-class-10/",
},
{
title: "1000 Mathematics MCQs – Class 11",
link: "https://www.sanfoundry.com/1000-mathematics-questions-answers-class-11/",
},
{
title: "1000 Mathematics MCQs – Class 12",
link: "https://www.sanfoundry.com/1000-mathematics-questions-answers-class-12/",
},
{
title: "1000 Physics MCQs – Class 11",
link: "https://www.sanfoundry.com/1000-physics-questions-answers-class-11/",
},
{
title: "1000 Physics MCQs – Class 12",
link: "https://www.sanfoundry.com/1000-physics-questions-answers-class-12/",
},
{
title: "1000 Chemistry MCQs – Class 11",
link: "https://www.sanfoundry.com/1000-chemistry-questions-answers-class-11/",
},
{
title: "1000 Chemistry MCQs – Class 12",
link: "https://www.sanfoundry.com/1000-chemistry-questions-answers-class-12/",
},
{
title: "1000 Biology MCQs – Class 11",
link: "https://www.sanfoundry.com/1000-biology-questions-answers-class-11/",
},
{
title: "1000 Biology MCQs – Class 12",
link: "https://www.sanfoundry.com/1000-biology-questions-answers-class-12/",
},
],
},
{
id: 4,
Title: "Programming & IT MCQs",
content: [
{
title: "1000 Data Structures & Algorithms I MCQs",
link: "https://www.sanfoundry.com/1000-data-structure-questions-answers/",
},
{
title: "1000 Data Structures & Algorithms II MCQs",
link: "https://www.sanfoundry.com/1000-data-structures-algorithms-ii-questions-answers/",
},
{
title: "1000 C MCQs",
link: "https://www.sanfoundry.com/c-interview-questions-answers/",
},
{
title: "1000 C++ MCQs",
link: "https://www.sanfoundry.com/cplusplus-interview-questions-answers/",
},
{
title: "1000 Object Oriented Programming MCQs",
link: "https://www.sanfoundry.com/1000-object-oriented-programming-oops-questions-answers/",
},
{
title: "1000 Linux MCQs",
link: "https://www.sanfoundry.com/technical-interview-questions/",
},
{
title: "1000 C# MCQs",
link: "https://www.sanfoundry.com/1000-csharp-questions-answers/",
},
{
title: "1000 Java MCQs",
link: "https://www.sanfoundry.com/java-questions-answers-freshers-experienced/",
},
{
title: "1000 JUnit MCQs",
link: "https://www.sanfoundry.com/1000-junit-questions-answers/",
},
{
title: "1000 JavaScript MCQs",
link: "https://www.sanfoundry.com/1000-javascript-questions-answers/",
},
{
title: "1000 Spring MCQs",
link: "https://www.sanfoundry.com/1000-spring-questions-answers/",
},
{
title: "1000 SAN MCQs",
link: "https://www.sanfoundry.com/san-storage-mcqs-freshers-experienced/",
},
{
title: "1000 PHP MCQs",
link: "https://www.sanfoundry.com/1000-php-questions-answers/",
},
{
title: "1000 Python MCQs",
link: "https://www.sanfoundry.com/1000-python-questions-answers/",
},
{
title: "1000 Ruby MCQs",
link: "https://www.sanfoundry.com/1000-ruby-programming-questions-answers/",
},
{
title: "1000 Hadoop MCQs",
link: "https://www.sanfoundry.com/1000-hadoop-questions-answers/",
},
{
title: "1000 R Programming MCQs",
link: "https://www.sanfoundry.com/1000-r-programming-questions-answers/",
},
{
title: "1000 Cloud Computing MCQs",
link: "https://www.sanfoundry.com/1000-cloud-computing-questions-answers/",
},
{
title: "1000 Data Science MCQs",
link: "https://www.sanfoundry.com/1000-data-science-questions-answers/",
},
{
title: "1000 MongoDB MCQs",
link: "https://www.sanfoundry.com/1000-mongodb-questions-answers/",
},
{
title: "1000 SQL Server MCQs",
link: "https://www.sanfoundry.com/1000-sql-server-questions-answers/",
},
{
title: "1000 MySQL MCQs",
link: "https://www.sanfoundry.com/1000-mysql-database-questions-answers/",
},
{
title: "1000 Oracle MCQs",
link: "https://www.sanfoundry.com/1000-oracle-database-questions-answers/",
},
{
title: "1000 HTML MCQs",
link: "https://www.sanfoundry.com/1000-html-questions-answers/",
},
{
title: "1000 CSS MCQs",
link: "https://www.sanfoundry.com/1000-css-questions-answers/",
},
{
title: "1000 IOT MCQs",
link: "https://www.sanfoundry.com/1000-iot-questions-answers/",
},
{
title: "1000 Unix MCQs",
link: "https://www.sanfoundry.com/1000-unix-questions-answers/",
},
{
title: "1000 Computer Fundamentals MCQs",
link: "https://www.sanfoundry.com/1000-computer-fundamentals-questions-answers/",
},
{
title: "1000 Cyber Security MCQs",
link: "https://www.sanfoundry.com/1000-cyber-security-questions-answers/",
},
{
title: "1000 Visual Basic MCQs",
link: "https://www.sanfoundry.com/1000-visual-basic-questions-answers/",
},
],
},
{
id: 5,
Title: "Computer Science MCQs",
content: [
{
title: "1000 Operating System MCQs",
link: "https://www.sanfoundry.com/operating-system-questions-answers/",
},
{
title: "1000 Data Structures & Algorithms I MCQs",
link: "https://www.sanfoundry.com/1000-data-structure-questions-answers/",
},
{
title: "1000 Data Structures & Algorithms II MCQs",
link: "https://www.sanfoundry.com/1000-data-structures-algorithms-ii-questions-answers/",
},
{
title: "1000 Computer Architecture MCQs",
link: "https://www.sanfoundry.com/1000-computer-organization-architecture-questions-answers/",
},
{
title: "1000 Software Engineering MCQs",
link: "https://www.sanfoundry.com/software-engineering-questions-answers/",
},
{
title: "1000 Software Architecture MCQs",
link: "https://www.sanfoundry.com/software-architecture-design-questions-answers/",
},
{
title: "1000 Artificial Intelligence MCQs",
link: "https://www.sanfoundry.com/artificial-intelligence-questions-answers/",
},
{
title: "1000 LISP Programming MCQs",
link: "https://www.sanfoundry.com/lisp-programming-questions-answers/",
},
{
title: "1000 Computer Network MCQs",
link: "https://www.sanfoundry.com/computer-network-questions-answers/",
},
{
title: "1000 Cryptograph & Network Security MCQs",
link: "https://www.sanfoundry.com/1000-cryptography-network-security-questions-answers/",
},
{
title: "1000 Microprocessor MCQs",
link: "https://www.sanfoundry.com/microprocessors-questions-answers/",
},
{
title: "1000 Microcontroller MCQs",
link: "https://www.sanfoundry.com/1000-microcontroller-questions-answers/",
},
{
title: "1000 Computer Graphics MCQs",
link: "https://www.sanfoundry.com/1000-computer-graphics-questions-answers/",
},
{
title: "1000 Database Management MCQs",
link: "https://www.sanfoundry.com/1000-database-management-system-questions-answers/",
},
{
title: "1000 RDBMS MCQs",
link: "https://www.sanfoundry.com/1000-rdbms-questions-answers/",
},
{
title: "1000 Discrete Mathematics MCQs",
link: "https://www.sanfoundry.com/1000-discrete-mathematics-questions-answers/",
},
{
title: "1000 Object Oriented Programming MCQs",
link: "https://www.sanfoundry.com/1000-object-oriented-programming-oops-questions-answers/",
},
{
title: "1000 Compiler MCQs",
link: "https://www.sanfoundry.com/1000-compilers-questions-answers/",
},
{
title: "1000 Embedded Systems MCQs",
link: "https://www.sanfoundry.com/1000-embedded-system-questions-answers/",
},
{
title: "1000 Automata Theory MCQs",
link: "https://www.sanfoundry.com/1000-automata-theory-questions-answers/",
},
{
title: "1000 Unix MCQs",
link: "https://www.sanfoundry.com/1000-unix-questions-answers/",
},
{
title: "1000 Computer Fundamentals MCQs",
link: "https://www.sanfoundry.com/1000-computer-fundamentals-questions-answers/",
},
{
title: "1000 Cyber Security MCQs",
link: "https://www.sanfoundry.com/1000-cyber-security-questions-answers/",
},
{
title: "1000 Visual Basic MCQs",
link: "https://www.sanfoundry.com/1000-visual-basic-questions-answers/",
},
],
},
{
id: 6,
Title: "Basic Engineering Subjects MCQs",
content: [
{
title: "1000 Engineering Mathematics MCQs",
link: "https://www.sanfoundry.com/1000-engineering-mathematics-questions-answers/",
},
{
title: "1000 Probability and Statistics MCQs",
link: "https://www.sanfoundry.com/1000-probability-statistics-questions-answers/",
},
{
title: "1000 Numerical Methods MCQs",
link: "https://www.sanfoundry.com/1000-numerical-methods-questions-answers/",
},
{
title: "1000 Engineering Physics I MCQs",
link: "https://www.sanfoundry.com/1000-engineering-physics-questions-answers/",
},
{
title: "1000 Engineering Physics II MCQs",
link: "https://www.sanfoundry.com/1000-engineering-physics-ii-questions-answers/",
},
{
title: "1000 Engineering Chemistry I MCQs",
link: "https://www.sanfoundry.com/1000-engineering-chemistry-questions-answers/",
},
{
title: "1000 Engineering Chemistry II MCQs",
link: "https://www.sanfoundry.com/1000-engineering-chemistry-ii-questions-answers/",
},
{
title: "1000 Engineering Mechanics MCQs",
link: "https://www.sanfoundry.com/1000-engineering-mechanics-questions-answers/",
},
{
title: "1000 Engineering Drawing MCQs",
link: "https://www.sanfoundry.com/1000-engineering-drawing-questions-answers/",
},
{
title: "1000 Professional Communication MCQs",
link: "https://www.sanfoundry.com/1000-professional-communication-questions-answers/",
},
{
title: "1000 Basic Electrical Engineering MCQs",
link: "https://www.sanfoundry.com/1000-basic-electrical-engineering-questions-answers/",
},
{
title: "1000 Basic Chemical Engineering MCQs",
link: "https://www.sanfoundry.com/1000-chemical-engineering-questions-answers/",
},
{
title: "1000 Basic Civil Engineering MCQs",
link: "https://www.sanfoundry.com/1000-basic-civil-engineering-questions-answers/",
},
{
title: "1000 Applied Chemistry MCQs",
link: "https://www.sanfoundry.com/1000-applied-chemistry-questions-answers/",
},
],
},
{
id: 7,
Title: "Chemical Engineering MCQs",
content: [
{
title: "1000 Basic Chemical Engineering MCQs",
link: "https://www.sanfoundry.com/1000-chemical-engineering-questions-answers/",
},
{
title: "1000 Chemical Technology MCQs",
link: "https://www.sanfoundry.com/1000-chemical-technology-questions-answers/",
},
{
title: "1000 Heat Transfer MCQs",
link: "https://www.sanfoundry.com/1000-heat-transfer-questions-answers/",
},
{
title: "1000 Mass Transfer MCQs",
link: "https://www.sanfoundry.com/1000-mass-transfer-questions-answers/",
},
{
title: "1000 Heat Transfer Operations MCQs",
link: "https://www.sanfoundry.com/1000-heat-transfer-operations-questions-answers/",
},
{
title: "1000 Polymer Engineering MCQs",
link: "https://www.sanfoundry.com/1000-polymer-engineering-questions-answers/",
},
{
title: "1000 Unit Processes MCQs",
link: "https://www.sanfoundry.com/1000-unit-processes-questions-answers/",
},
{
title: "1000 Separation Processes MCQs",
link: "https://www.sanfoundry.com/1000-separation-processes-questions-answers/",
},
{
title: "1000 Mechanical Operations MCQs",
link: "https://www.sanfoundry.com/1000-mechanical-operations-questions-answers/",
},
{
title: "1000 Distillation Design MCQs",
link: "https://www.sanfoundry.com/1000-distillation-design-questions-answers/",
},
{
title: "1000 Pulp & Paper MCQs",
link: "https://www.sanfoundry.com/1000-pulp-paper-questions-answers/",
},
{
title: "1000 Food Engineering MCQs",
link: "https://www.sanfoundry.com/1000-food-engineering-questions-answers/",
},
{
title: "1000 Thermodynamics MCQs",
link: "https://www.sanfoundry.com/1000-thermodynamics-questions-answers/",
},
{
title: "1000 Thermal Engineering MCQs",
link: "https://www.sanfoundry.com/1000-thermal-engineering-questions-answers/",
},
{
title: "1000 Chemical Process Calculation MCQs",
link: "https://www.sanfoundry.com/1000-chemical-process-calculation-questions-answers/",
},
{
title: "1000 Chemical Reaction Engineering MCQs",
link: "https://www.sanfoundry.com/1000-chemical-reaction-engineering-questions-answers/",
},
{
title: "1000 Organic Chemistry MCQs",
link: "https://www.sanfoundry.com/1000-organic-chemistry-questions-answers/",
},
{
title: "1000 Materials Science MCQs",
link: "https://www.sanfoundry.com/1000-materials-science-questions-answers/",
},
{
title: "1000 Fluidization Engineering MCQs",
link: "https://www.sanfoundry.com/1000-fluidization-engineering-questions-answers/",
},
{
title: "1000 Civil Engineering Drawing MCQs",
link: "https://www.sanfoundry.com/1000-civil-engineering-drawing-questions-answers/",
},
{
title: "1000 Fermentation Technology MCQs",
link: "https://www.sanfoundry.com/1000-fermentation-technology-questions-answers/",
},
{
title: "1000 Computational Fluid Dynamics MCQs",
link: "https://www.sanfoundry.com/1000-computational-fluid-dynamics-questions-answers/",
},
{
title: "1000 Renewable Energy MCQs",
link: "https://www.sanfoundry.com/1000-renewable-energy-questions-answers/",
},
{
title: "1000 Petroleum Production Operations MCQs",
link: "https://www.sanfoundry.com/1000-petroleum-production-operations-questions-answers/",
},
],
},
{
id: 8,
Title: "Electronics & Electrical MCQs",
content: [
{
title: "1000 Basic Electrical Engineering MCQs",
link: "https://www.sanfoundry.com/1000-basic-electrical-engineering-questions-answers/",
},
{
title: "1000 Electric Circuits MCQs",
link: "https://www.sanfoundry.com/1000-electric-circuits-questions-answers/",
},
{
title: "1000 Electric Drives MCQs",
link: "https://www.sanfoundry.com/1000-electric-drives-questions-answers/",
},
{
title: "1000 Digital Signal Processing MCQs",
link: "https://www.sanfoundry.com/1000-digital-signal-processing-questions-answers/",
},
{
title: "1000 Digital Communications MCQs",
link: "https://www.sanfoundry.com/1000-digital-communications-questions-answers/",
},
{
title: "1000 Linear Integrated Circuits MCQs",
link: "https://www.sanfoundry.com/1000-linear-integrated-circuits-questions-answers/",
},
{
title: "1000 Digital Image Processing MCQs",
link: "https://www.sanfoundry.com/1000-digital-image-processing-questions-answers/",
},
{
title: "1000 Electrical Machines MCQs",
link: "https://www.sanfoundry.com/1000-electrical-machines-questions-answers/",
},
{
title: "1000 Design of Electrical Machines MCQs",
link: "https://www.sanfoundry.com/1000-design-electrical-machines-questions-answers/",
},
{
title: "1000 Electromagnetic Theory MCQs",
link: "https://www.sanfoundry.com/1000-electromagnetic-theory-questions-answers/",
},
{
title: "1000 Power Systems MCQs",
link: "https://www.sanfoundry.com/1000-power-systems-questions-answers/",
},
{
title: "1000 Power Electronics MCQs",
link: "https://www.sanfoundry.com/1000-power-electronics-questions-answers/",
},
{
title: "1000 Network Theory MCQs",
link: "https://www.sanfoundry.com/1000-network-theory-questions-answers/",
},
{
title: "1000 Signals and Systems MCQs",
link: "https://www.sanfoundry.com/1000-signals-systems-questions-answers/",
},
{
title: "1000 VLSI MCQs",
link: "https://www.sanfoundry.com/1000-vlsi-questions-answers/",
},
{
title: "1000 Control Systems MCQs",
link: "https://www.sanfoundry.com/1000-control-systems-questions-answers/",
},
{
title: "1000 Embedded Systems MCQs",
link: "https://www.sanfoundry.com/1000-embedded-system-questions-answers/",
},
{
title: "1000 Microwave Engineering MCQs",
link: "https://www.sanfoundry.com/1000-microwave-engineering-questions-answers/",
},
{
title: "1000 Digital Circuits MCQs",
link: "https://www.sanfoundry.com/1000-digital-circuits-questions-answers/",
},
{
title: "1000 Analog Circuits MCQs",
link: "https://www.sanfoundry.com/1000-analog-circuits-questions-answers/",
},
{
title: "1000 Electronic Devices & Circuits MCQs",
link: "https://www.sanfoundry.com/1000-electronic-devices-circuits-questions-answers/",
},
{
title: "1000 Neural Networks MCQs",
link: "https://www.sanfoundry.com/1000-neural-networks-questions-answers/",
},
{
title: "1000 Optical Communication MCQs",
link: "https://www.sanfoundry.com/1000-optical-communications-questions-answers/",
},
{
title: "1000 Electrical Measurements MCQs",
link: "https://www.sanfoundry.com/1000-electrical-measurements-questions-answers/",
},
{
title: "1000 DC Machines MCQs",
link: "https://www.sanfoundry.com/1000-dc-machines-questions-answers/",
},
{
title: "1000 Transformers MCQs",
link: "https://www.sanfoundry.com/1000-transformers-questions-answers/",
},
{
title: "1000 Analog Communications MCQs",
link: "https://www.sanfoundry.com/1000-analog-communications-questions-answers/",
},
{
title: "1000 Biomedical Instrumentation MCQs",
link: "https://www.sanfoundry.com/1000-biomedical-instrumentation-questions-answers/",
},
{
title: "1000 Wireless/Mobile MCQs",
link: "https://www.sanfoundry.com/1000-wireless-mobile-communications-questions-answers/",
},
{
title: "1000 VHDL MCQs",
link: "https://www.sanfoundry.com/1000-vhdl-questions-answers/",
},
{
title: "1000 MATLAB MCQs",
link: "https://www.sanfoundry.com/1000-matlab-questions-answers/",
},
{
title: "1000 Mechatronics MCQs",
link: "https://www.sanfoundry.com/1000-mechatronics-questions-answers/",
},
{
title: "1000 Renewable Energy MCQs",
link: "https://www.sanfoundry.com/1000-renewable-energy-questions-answers/",
},
{
title: "1000 Antennas MCQs",
link: "https://www.sanfoundry.com/1000-antennas-questions-answers/",
},
{
title: "1000 Cognitive Radio MCQs",
link: "https://www.sanfoundry.com/1000-cognitive-radio-questions-answers/",
},
{
title: "1000 Total Quality Management MCQs",
link: "https://www.sanfoundry.com/1000-total-quality-management-questions-answers/",
},
{
title: "1000 Arduino MCQs",
link: "https://www.sanfoundry.com/1000-arduino-questions-answers/",
},
],
},
{
id: 9,
Title: "Agricultural Engineering MCQs",
content: [
{
title: "1000 Food Engineering MCQs",
link: "https://www.sanfoundry.com/1000-food-engineering-questions-answers/",
},
{
title: "1000 Dairy Engineering MCQs",
link: "https://www.sanfoundry.com/1000-dairy-engineering-questions-answers/",
},
{
title: "1000 Farm Machinery MCQs",
link: "https://www.sanfoundry.com/1000-farm-machinery-questions-answers/",
},
{
title: "1000 Food Processing Unit Operations MCQs",
link: "https://www.sanfoundry.com/1000-food-processing-unit-operations-questions-answers/",
},
{
title: "1000 Strength of Materials MCQs",
link: "https://www.sanfoundry.com/1000-strength-materials-questions-answers/",
},
{
title: "1000 Theory of Machines MCQs",
link: "https://www.sanfoundry.com/1000-theory-machines-questions-answers/",
},
{
title: "1000 Irrigation Engineering MCQs",
link: "https://www.sanfoundry.com/1000-irrigation-engineering-questions-answers/",
},
{
title: "1000 Renewable Energy MCQs",
link: "https://www.sanfoundry.com/1000-renewable-energy-questions-answers/",
},
{
title: "1000 Refrigeration & Air Conditioning MCQs",
link: "https://www.sanfoundry.com/1000-refrigeration-air-conditioning-questions-answers/",
},
{
title: "1000 Food Packaging Technology MCQs",
link: "https://www.sanfoundry.com/1000-food-packaging-technology-questions-answers/",
},
],
},
{
id: 10,
Title: "Aerospace & Aeronautical MCQs",
content: [
{
title: "1000 Avionics MCQs",
link: "https://www.sanfoundry.com/1000-avionics-questions-answers/",
},
{
title: "1000 Aerodynamics MCQs",
link: "https://www.sanfoundry.com/1000-aerodynamics-questions-answers/",
},
{
title: "1000 Aircraft Design MCQs",
link: "https://www.sanfoundry.com/1000-aircraft-design-questions-answers/",
},
{
title: "1000 Aircraft Maintenance MCQs",
link: "https://www.sanfoundry.com/1000-aircraft-maintenance-questions-answers/",
},
{
title: "1000 Aircraft Performance MCQs",
link: "https://www.sanfoundry.com/1000-aircraft-performance-questions-answers/",
},
{
title: "1000 Rocket Propulsion MCQs",
link: "https://www.sanfoundry.com/1000-rocket-propulsion-questions-answers/",
},
{
title: "1000 Aerospace Materials & Processes MCQs",
link: "https://www.sanfoundry.com/1000-aerospace-materials-processes-questions-answers/",
},
{
title: "1000 Thermodynamics MCQs",
link: "https://www.sanfoundry.com/1000-thermodynamics-questions-answers/",
},
{
title: "1000 Fluid Mechanics MCQs",
link: "https://www.sanfoundry.com/1000-fluid-mechanics-questions-answers/",
},
{
title: "1000 Hydraulic Machines MCQs",
link: "https://www.sanfoundry.com/1000-hydraulic-machines-questions-answers/",
},
{
title: "1000 Neural Networks MCQs",
link: "https://www.sanfoundry.com/1000-neural-networks-questions-answers/",
},
{
title: "1000 Machine Design MCQs",
link: "https://www.sanfoundry.com/1000-machine-design-questions-answers/",
},
{
title: "1000 Machine Drawing MCQs",
link: "https://www.sanfoundry.com/1000-machine-drawing-questions-answers/",
},
{
title: "1000 Machine Dynamics MCQs",
link: "https://www.sanfoundry.com/1000-machine-dynamics-questions-answers/",
},
{
title: "1000 Machine Kinematics MCQs",
link: "https://www.sanfoundry.com/1000-machine-kinematics-questions-answers/",
},
{
title: "1000 Manufacturing Engineering I MCQs",
link: "https://www.sanfoundry.com/1000-manufacturing-engineering-questions-answers/",
},
{
title: "1000 Manufacturing Engineering II MCQs",
link: "https://www.sanfoundry.com/1000-manufacturing-engineering-ii-questions-answers/",
},
{
title: "1000 Artificial Intelligence MCQs",
link: "https://www.sanfoundry.com/artificial-intelligence-questions-answers/",
},
{
title: "1000 Microprocessor MCQs",
link: "https://www.sanfoundry.com/microprocessors-questions-answers/",
},
{
title: "1000 Computational Fluid Dynamics MCQs",
link: "https://www.sanfoundry.com/1000-computational-fluid-dynamics-questions-answers/",
},
{
title: "1000 Mechatronics MCQs",
link: "https://www.sanfoundry.com/1000-mechatronics-questions-answers/",
},
{
title: "1000 Total Quality Management MCQs",
link: "https://www.sanfoundry.com/1000-total-quality-management-questions-answers/",
},
{
title: "1000 Finite Element Method MCQs",
link: "https://www.sanfoundry.com/1000-finite-element-method-questions-answers/",
},
],
},
{
id: 11,
Title: "Civil Engineering MCQs",
content: [
{
title: "1000 Basic Civil Engineering MCQs",
link: "https://www.sanfoundry.com/1000-basic-civil-engineering-questions-answers/",
},
{
title: "1000 Geotechnical Engineering I MCQs",
link: "https://www.sanfoundry.com/1000-geotechnical-engineering-questions-answers/",
},
{
title: "1000 Geotechnical Engineering II MCQs",
link: "https://www.sanfoundry.com/1000-geotechnical-engineering-ii-questions-answers/",
},
{
title: "1000 Soil Mechanics MCQs",
link: "https://www.sanfoundry.com/1000-geotechnical-engineering-questions-answers/",
},
{
title: "1000 Foundation Engineering MCQs",
link: "https://www.sanfoundry.com/1000-geotechnical-engineering-ii-questions-answers/",
},
{
title: "1000 Engineering Geology MCQs",
link: "https://www.sanfoundry.com/1000-engineering-geology-questions-answers/",
},
{
title: "1000 Environmental Engineering MCQs",
link: "https://www.sanfoundry.com/1000-environmental-engineering-questions-answers/",
},
{
title: "1000 Railway Engineering MCQs",
link: "https://www.sanfoundry.com/1000-railway-engineering-questions-answers/",
},
{
title: "1000 Highway Engineering MCQs",
link: "https://www.sanfoundry.com/1000-highway-engineering-questions-answers/",
},
{
title: "1000 Pavement Design MCQs",
link: "https://www.sanfoundry.com/1000-pavement-design-questions-answers/",
},
{
title: "1000 Structural Analysis MCQs",
link: "https://www.sanfoundry.com/1000-structural-analysis-questions-answers/",
},
{
title: "1000 Strength of Materials MCQs",
link: "https://www.sanfoundry.com/1000-strength-materials-questions-answers/",
},
{
title: "1000 Construction & Building Materials MCQs",
link: "https://www.sanfoundry.com/1000-construction-building-materials-questions-answers/",
},
{
title: "1000 Concrete Technology MCQs",
link: "https://www.sanfoundry.com/1000-concrete-technology-questions-answers/",
},
{
title: "1000 Prestressed Concrete Structures MCQs",
link: "https://www.sanfoundry.com/1000-prestressed-concrete-structures-questions-answers/",
},
{
title: "1000 Design of Steel Structures MCQs",
link: "https://www.sanfoundry.com/1000-design-steel-structures-questions-answers/",
},
{
title: "1000 Hazardous Waste Management MCQs",
link: "https://www.sanfoundry.com/1000-hazardous-waste-management-questions-answers/",
},
{
title: "1000 Fluid Mechanics MCQs",
link: "https://www.sanfoundry.com/1000-fluid-mechanics-questions-answers/",
},
{
title: "1000 Hydraulic Machines MCQs",
link: "https://www.sanfoundry.com/1000-hydraulic-machines-questions-answers/",
},
{
title: "1000 Civil Engineering Drawing MCQs",
link: "https://www.sanfoundry.com/1000-civil-engineering-drawing-questions-answers/",
},
{
title: "1000 Waste Water Engineering MCQs",
link: "https://www.sanfoundry.com/1000-waste-water-engineering-questions-answers/",
},
{
title: "1000 Surveying MCQs",
link: "https://www.sanfoundry.com/1000-surveying-questions-answers/",
},
{
title: "1000 Irrigation Engineering MCQs",
link: "https://www.sanfoundry.com/1000-irrigation-engineering-questions-answers/",
},
{
title: "1000 Finite Element Method MCQs",
link: "https://www.sanfoundry.com/1000-finite-element-method-questions-answers/",
},
{
title: "1000 Traffic Engineering MCQs",
link: "https://www.sanfoundry.com/1000-traffic-engineering-questions-answers/",
},
],
},
{
id: 12,
Title: "Mining Engineering MCQs",
content: [
{
title: "1000 Environmental Engineering MCQs",
link: "https://www.sanfoundry.com/1000-environmental-engineering-questions-answers/",
},
{
title: "1000 Thermodynamics MCQs",
link: "https://www.sanfoundry.com/1000-thermodynamics-questions-answers/",
},
{
title: "1000 Engineering Geology MCQs",
link: "https://www.sanfoundry.com/1000-engineering-geology-questions-answers/",
},
{
title: "1000 Soil Mechanics MCQs",
link: "https://www.sanfoundry.com/1000-geotechnical-engineering-questions-answers/",
},
{
title: "1000 Foundation Engineering MCQs",
link: "https://www.sanfoundry.com/1000-geotechnical-engineering-ii-questions-answers/",
},
{
title: "1000 Computer Graphics MCQs",
link: "https://www.sanfoundry.com/1000-computer-graphics-questions-answers/",
},
],
},
{
id: 13,
Title: "Mechanical Engineering MCQs",
content: [
{
title: "1000 Casting-Forming-Welding I MCQs",
link: "https://www.sanfoundry.com/1000-casting-forming-welding-questions-answers/",
},
{
title: "1000 Casting-Forming-Welding II MCQs",
link: "https://www.sanfoundry.com/1000-casting-forming-welding-ii-questions-answers/",
},
{
title: "1000 Machine Tools MCQs",
link: "https://www.sanfoundry.com/1000-machine-tools-matching-questions-answers/",
},
{
title: "1000 Machine Design MCQs",
link: "https://www.sanfoundry.com/1000-machine-design-questions-answers/",
},
{
title: "1000 Machine Drawing MCQs",
link: "https://www.sanfoundry.com/1000-machine-drawing-questions-answers/",
},
{
title: "1000 Advanced Machining MCQs",
link: "https://www.sanfoundry.com/1000-advanced-machining-questions-answers/",
},
{
title: "1000 Fluid Mechanics MCQs",
link: "https://www.sanfoundry.com/1000-fluid-mechanics-questions-answers/",
},
{
title: "1000 Hydraulic Machines MCQs",
link: "https://www.sanfoundry.com/1000-hydraulic-machines-questions-answers/",
},
{
title: "1000 IC Engine MCQs",
link: "https://www.sanfoundry.com/1000-ic-engine-questions-answers/",
},
{
title: "1000 Thermodynamics MCQs",
link: "https://www.sanfoundry.com/1000-thermodynamics-questions-answers/",
},
{
title: "1000 Thermal Engineering MCQs",
link: "https://www.sanfoundry.com/1000-thermal-engineering-questions-answers/",
},
{
title: "1000 Heat Transfer MCQs",
link: "https://www.sanfoundry.com/1000-heat-transfer-questions-answers/",
},
{
title: "1000 Mass Transfer MCQs",
link: "https://www.sanfoundry.com/1000-mass-transfer-questions-answers//",
},
{
title: "1000 Manufacturing Engineering I MCQs",
link: "https://www.sanfoundry.com/1000-manufacturing-engineering-questions-answers/",
},
{
title: "1000 Manufacturing Engineering II MCQs",
link: "https://www.sanfoundry.com/1000-manufacturing-engineering-ii-questions-answers/",
},
{
title: "1000 Power Plant Engineering MCQs",
link: "https://www.sanfoundry.com/1000-power-plant-questions-answers/",
},
{
title: "1000 Machine Dynamics MCQs",
link: "https://www.sanfoundry.com/1000-machine-dynamics-questions-answers/",
},
{
title: "1000 Machine Kinematics MCQs",
link: "https://www.sanfoundry.com/1000-machine-kinematics-questions-answers/",
},
{
title: "1000 Steam and Gas Turbines MCQs",
link: "https://www.sanfoundry.com/1000-steam-gas-turbines-questions-answers/",
},
{
title: "1000 Automobile Engineering MCQs",
link: "https://www.sanfoundry.com/1000-automobile-engineering-questions-answers/",
},
{
title: "1000 Materials Science MCQs",
link: "https://www.sanfoundry.com/1000-materials-science-questions-answers/",
},
{