-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMcq.json
More file actions
1042 lines (1042 loc) · 29.3 KB
/
Copy pathMcq.json
File metadata and controls
1042 lines (1042 loc) · 29.3 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
{
"CHE110 ENVIRONMENTAL STUDIES ENGINEERING": {
"MCQs": [
{
"question": "What is the main objective of environmental studies?",
"options": [
"To study the effects of pollution",
"To understand environmental policies",
"To promote sustainable development",
"To manage natural resources"
],
"answer": "To promote sustainable development"
},
{
"question": "Which of the following is a renewable resource?",
"options": [
"Coal",
"Natural Gas",
"Solar Energy",
"Nuclear Energy"
],
"answer": "Solar Energy"
},
{
"question": "What is the primary source of energy for photosynthesis?",
"options": [
"Water",
"Carbon Dioxide",
"Sunlight",
"Soil"
],
"answer": "Sunlight"
},
{
"question": "Which gas is most responsible for global warming?",
"options": [
"Oxygen",
"Nitrogen",
"Carbon Dioxide",
"Hydrogen"
],
"answer": "Carbon Dioxide"
},
{
"question": "What is the purpose of a carbon footprint analysis?",
"options": [
"To measure the amount of waste produced",
"To evaluate energy consumption",
"To calculate the impact of activities on the environment",
"To assess water usage"
],
"answer": "To calculate the impact of activities on the environment"
},
{
"question": "Which of the following is a non-renewable resource?",
"options": [
"Wind Energy",
"Geothermal Energy",
"Coal",
"Solar Energy"
],
"answer": "Coal"
},
{
"question": "What does the term 'sustainable development' refer to?",
"options": [
"Developing technology at any cost",
"Meeting present needs without compromising future generations",
"Increasing industrial output",
"Reducing costs in production"
],
"answer": "Meeting present needs without compromising future generations"
},
{
"question": "Which international agreement aims to combat climate change?",
"options": [
"Kyoto Protocol",
"NAFTA",
"Paris Agreement",
"WTO Agreement"
],
"answer": "Paris Agreement"
},
{
"question": "What is the main focus of environmental impact assessments?",
"options": [
"Economic benefits",
"Social equity",
"Potential environmental consequences of projects",
"Legal implications"
],
"answer": "Potential environmental consequences of projects"
},
{
"question": "Which organization is known for setting international environmental standards?",
"options": [
"ISO",
"FDA",
"WHO",
"UNESCO"
],
"answer": "ISO"
}
]
},
"CSE101 COMPUTER PROGRAMMING": {
"MCQs": [
{
"question": "What is the main objective of environmental studies?",
"options": [
"To study the effects of pollution",
"To understand environmental policies",
"To promote sustainable development",
"To manage natural resources"
],
"answer": "To promote sustainable development"
},
{
"question": "Which of the following is a renewable resource?",
"options": [
"Coal",
"Natural Gas",
"Solar Energy",
"Nuclear Energy"
],
"answer": "Solar Energy"
},
{
"question": "What is the purpose of a compiler?",
"options": [
"To execute programs directly",
"To translate high-level code into machine code",
"To manage system memory",
"To handle user input"
],
"answer": "To translate high-level code into machine code"
},
{
"question": "Which data structure uses LIFO order?",
"options": [
"Queue",
"Stack",
"Array",
"Linked List"
],
"answer": "Stack"
},
{
"question": "What does an algorithm typically start with?",
"options": [
"Input",
"Output",
"Initialization",
"Condition"
],
"answer": "Initialization"
},
{
"question": "Which of the following is an example of a high-level programming language?",
"options": [
"Assembly",
"C++",
"Machine Code",
"Binary"
],
"answer": "C++"
},
{
"question": "What is a variable in programming?",
"options": [
"A storage location identified by a memory address",
"A type of function",
"A syntax rule",
"A programming error"
],
"answer": "A storage location identified by a memory address"
},
{
"question": "What does 'debugging' refer to in programming?",
"options": [
"Adding new features to a program",
"Removing errors from a program",
"Optimizing code for performance",
"Designing user interfaces"
],
"answer": "Removing errors from a program"
},
{
"question": "Which control structure allows for decision making in code?",
"options": [
"Loop",
"Function",
"Condition",
"Array"
],
"answer": "Condition"
},
{
"question": "What is the result of the expression 5 % 2 in programming?",
"options": [
"1",
"2",
"3",
"0"
],
"answer": "1"
}
]
},
"CSE111 ORIENTATION TO COMPUTING-I": {
"MCQs": [
{
"question": "What does CPU stand for?",
"options": [
"Central Processing Unit",
"Central Power Unit",
"Computer Processing Unit",
"Centralized Processing Unit"
],
"answer": "Central Processing Unit"
},
{
"question": "Which of the following is a programming language?",
"options": [
"HTML",
"CSS",
"Python",
"SQL"
],
"answer": "Python"
},
{
"question": "What is the function of RAM in a computer?",
"options": [
"To store data permanently",
"To perform calculations",
"To provide temporary storage for running programs",
"To control input and output devices"
],
"answer": "To provide temporary storage for running programs"
},
{
"question": "Which part of the computer is responsible for executing instructions?",
"options": [
"Hard Drive",
"Motherboard",
"CPU",
"RAM"
],
"answer": "CPU"
},
{
"question": "What does the term 'software' refer to?",
"options": [
"Physical components of a computer",
"Programs and operating systems",
"Network connections",
"Storage devices"
],
"answer": "Programs and operating systems"
},
{
"question": "What is the main purpose of an operating system?",
"options": [
"To execute software applications",
"To manage hardware resources",
"To provide internet access",
"To store files permanently"
],
"answer": "To manage hardware resources"
},
{
"question": "Which type of software is used to manage databases?",
"options": [
"Spreadsheet Software",
"Database Management System (DBMS)",
"Word Processing Software",
"Web Browser"
],
"answer": "Database Management System (DBMS)"
},
{
"question": "What is the role of a compiler in programming?",
"options": [
"To execute code directly",
"To convert source code into machine code",
"To manage hardware resources",
"To handle user input"
],
"answer": "To convert source code into machine code"
},
{
"question": "Which of the following is an example of a hardware component?",
"options": [
"Operating System",
"Web Browser",
"RAM",
"Database"
],
"answer": "RAM"
},
{
"question": "What is an algorithm?",
"options": [
"A type of programming language",
"A set of instructions to solve a problem",
"A hardware component",
"A type of software application"
],
"answer": "A set of instructions to solve a problem"
}
]
},
"CSE326 INTERNET PROGRAMMING LABORATORY": {
"MCQs": [
{
"question": "Which language is commonly used for client-side scripting?",
"options": [
"Python",
"JavaScript",
"Java",
"C++"
],
"answer": "JavaScript"
},
{
"question": "What does CSS stand for?",
"options": [
"Cascading Style Sheets",
"Computer Style Sheets",
"Creative Style Sheets",
"Central Style Sheets"
],
"answer": "Cascading Style Sheets"
},
{
"question": "Which HTML tag is used to create a hyperlink?",
"options": [
"<a>",
"<link>",
"<img>",
"<button>"
],
"answer": "<a>"
},
{
"question": "What does HTML stand for?",
"options": [
"Hypertext Markup Language",
"Hyperlink and Text Markup Language",
"Hypertext and Multimedia Language",
"Hyperlink Text Markup Language"
],
"answer": "Hypertext Markup Language"
},
{
"question": "Which CSS property is used to change the background color of an element?",
"options": [
"color",
"background-color",
"border-color",
"text-color"
],
"answer": "background-color"
},
{
"question": "What does the 'alt' attribute in an HTML <img> tag do?",
"options": [
"Specifies the image's file format",
"Provides alternative text for an image",
"Sets the image's dimensions",
"Links the image to another page"
],
"answer": "Provides alternative text for an image"
},
{
"question": "Which of the following is a valid JavaScript variable declaration?",
"options": [
"var name = 'John';",
"variable name = 'John';",
"let name == 'John';",
"const name : 'John';"
],
"answer": "var name = 'John';"
},
{
"question": "How do you include an external JavaScript file in an HTML document?",
"options": [
"<script src='file.js'></script>",
"<link href='file.js'>",
"<script href='file.js'></script>",
"<javascript src='file.js'></javascript>"
],
"answer": "<script src='file.js'></script>"
},
{
"question": "Which CSS property is used to change the font size?",
"options": [
"font-size",
"text-size",
"font-style",
"text-font"
],
"answer": "font-size"
},
{
"question": "What does the 'display' property in CSS do?",
"options": [
"Sets the visibility of an element",
"Specifies the layout behavior of an element",
"Sets the color of text",
"Changes the size of an element"
],
"answer": "Specifies the layout behavior of an element"
}
]
},
"ECE249 BASIC ELECTRICAL AND ELECTRONICS ENGINEERING": {
"MCQs": [
{
"question": "What is the unit of electrical resistance?",
"options": [
"Ohm",
"Volt",
"Ampere",
"Watt"
],
"answer": "Ohm"
},
{
"question": "Which of the following is a semiconductor material?",
"options": [
"Copper",
"Aluminum",
"Silicon",
"Gold"
],
"answer": "Silicon"
},
{
"question": "What does Ohm's Law state?",
"options": [
"V = I * R",
"P = V * I",
"E = mc²",
"F = ma"
],
"answer": "V = I * R"
},
{
"question": "What is the unit of electrical power?",
"options": [
"Joule",
"Ohm",
"Watt",
"Volt"
],
"answer": "Watt"
},
{
"question": "In a series circuit, how does the total resistance compare to individual resistances?",
"options": [
"Total resistance is the sum of individual resistances",
"Total resistance is the reciprocal of the sum of reciprocals of individual resistances",
"Total resistance is equal to the smallest individual resistance",
"Total resistance is equal to the largest individual resistance"
],
"answer": "Total resistance is the sum of individual resistances"
},
{
"question": "What is the primary function of a transistor?",
"options": [
"To store electrical energy",
"To amplify signals",
"To measure current",
"To convert AC to DC"
],
"answer": "To amplify signals"
},
{
"question": "Which type of capacitor is commonly used in power supplies?",
"options": [
"Electrolytic Capacitor",
"Ceramic Capacitor",
"Tantalum Capacitor",
"Film Capacitor"
],
"answer": "Electrolytic Capacitor"
},
{
"question": "What is the purpose of a diode in a circuit?",
"options": [
"To allow current to flow in both directions",
"To allow current to flow in one direction only",
"To store electrical energy",
"To measure voltage"
],
"answer": "To allow current to flow in one direction only"
},
{
"question": "What is the function of a transformer?",
"options": [
"To change the voltage level",
"To amplify signals",
"To store electrical energy",
"To convert AC to DC"
],
"answer": "To change the voltage level"
},
{
"question": "What is the principle behind the operation of an inductor?",
"options": [
"Inductors oppose changes in current",
"Inductors oppose changes in voltage",
"Inductors store electrical energy as electric field",
"Inductors convert AC to DC"
],
"answer": "Inductors oppose changes in current"
}
]
},
"ECE279 BASIC ELECTRICAL AND ELECTRONICS ENGINEERING LABORATORY": {
"MCQs": [
{
"question": "What instrument is used to measure electrical current?",
"options": [
"Voltmeter",
"Ammeter",
"Ohmmeter",
"Oscilloscope"
],
"answer": "Ammeter"
},
{
"question": "In an AC circuit, what does RMS stand for?",
"options": [
"Root Mean Square",
"Random Mean Square",
"Regular Mean Square",
"Real Mean Square"
],
"answer": "Root Mean Square"
},
{
"question": "What is the purpose of a multimeter?",
"options": [
"To measure voltage, current, and resistance",
"To measure inductance",
"To measure capacitance",
"To amplify signals"
],
"answer": "To measure voltage, current, and resistance"
},
{
"question": "Which type of resistor is used for precise resistance values?",
"options": [
"Variable Resistor",
"Carbon Composition Resistor",
"Metal Film Resistor",
"Wire Wound Resistor"
],
"answer": "Metal Film Resistor"
},
{
"question": "What is the function of an oscilloscope?",
"options": [
"To measure resistance",
"To display electrical signals",
"To amplify sound",
"To store electrical energy"
],
"answer": "To display electrical signals"
},
{
"question": "Which component is used to store electrical energy temporarily?",
"options": [
"Capacitor",
"Resistor",
"Inductor",
"Diode"
],
"answer": "Capacitor"
},
{
"question": "In a series circuit, how does the current compare across components?",
"options": [
"The current is the same through all components",
"The current varies with each component",
"The current is highest in the resistor",
"The current is highest in the capacitor"
],
"answer": "The current is the same through all components"
},
{
"question": "What is the unit of capacitance?",
"options": [
"Ohm",
"Hertz",
"Farad",
"Henry"
],
"answer": "Farad"
},
{
"question": "What is the primary function of a potentiometer?",
"options": [
"To measure voltage",
"To vary resistance",
"To store electrical energy",
"To measure current"
],
"answer": "To vary resistance"
},
{
"question": "Which of the following components is used to rectify AC to DC?",
"options": [
"Transformer",
"Diode",
"Capacitor",
"Inductor"
],
"answer": "Diode"
}
]
},
"INT108 PYTHON PROGRAMMING": {
"MCQs": [
{
"question": "Which of the following is a valid Python variable name?",
"options": [
"1_variable",
"variable_1",
"variable@1",
"variable 1"
],
"answer": "variable_1"
},
{
"question": "What does 'print()' function do in Python?",
"options": [
"Prints text to the console",
"Returns a value",
"Reads input from the user",
"Creates a new file"
],
"answer": "Prints text to the console"
},
{
"question": "Which data type is used to represent text in Python?",
"options": [
"int",
"float",
"str",
"list"
],
"answer": "str"
},
{
"question": "What is the output of the expression '3 * 2 ** 2' in Python?",
"options": [
"12",
"9",
"8",
"6"
],
"answer": "12"
},
{
"question": "How do you create a function in Python?",
"options": [
"def function_name():",
"function function_name():",
"create function_name():",
"func function_name():"
],
"answer": "def function_name():"
},
{
"question": "What is the purpose of the 'self' keyword in Python?",
"options": [
"To refer to the instance of the class",
"To create a new class",
"To define a new function",
"To refer to global variables"
],
"answer": "To refer to the instance of the class"
},
{
"question": "How do you add an element to a list in Python?",
"options": [
"list.append(element)",
"list.add(element)",
"list.insert(element)",
"list.push(element)"
],
"answer": "list.append(element)"
},
{
"question": "Which operator is used for exponentiation in Python?",
"options": [
"+",
"-",
"*",
"**"
],
"answer": "**"
},
{
"question": "What is the result of 'len([1, 2, 3])' in Python?",
"options": [
"3",
"2",
"1",
"4"
],
"answer": "3"
},
{
"question": "How do you handle exceptions in Python?",
"options": [
"try...except",
"catch...finally",
"throw...catch",
"handle...error"
],
"answer": "try...except"
}
]
},
"INT306 DATABASE MANAGEMENT SYSTEMS": {
"MCQs": [
{
"question": "Which SQL statement is used to extract data from a database?",
"options": [
"SELECT",
"INSERT",
"UPDATE",
"DELETE"
],
"answer": "SELECT"
},
{
"question": "What does DBMS stand for?",
"options": [
"Database Management System",
"Data Base Management Service",
"Database Management Service",
"Data Base Management System"
],
"answer": "Database Management System"
},
{
"question": "Which SQL keyword is used to prevent duplicate records?",
"options": [
"DISTINCT",
"UNIQUE",
"PRIMARY KEY",
"FOREIGN KEY"
],
"answer": "DISTINCT"
},
{
"question": "What is a foreign key in a database?",
"options": [
"A key used to uniquely identify a record",
"A key used to link records in different tables",
"A key used to prevent duplicate records",
"A key used for indexing"
],
"answer": "A key used to link records in different tables"
},
{
"question": "What is the purpose of the 'JOIN' clause in SQL?",
"options": [
"To combine rows from two or more tables based on a related column",
"To sort data",
"To filter records",
"To update records"
],
"answer": "To combine rows from two or more tables based on a related column"
},
{
"question": "What is a primary key in a database?",
"options": [
"A key used to uniquely identify a record",
"A key used to link records in different tables",
"A key used for indexing",
"A key used to prevent duplicate records"
],
"answer": "A key used to uniquely identify a record"
},
{
"question": "Which SQL statement is used to modify existing records in a database?",
"options": [
"UPDATE",
"INSERT",
"DELETE",
"SELECT"
],
"answer": "UPDATE"
},
{
"question": "What does the 'GROUP BY' clause do in SQL?",
"options": [
"Groups rows that have the same values into summary rows",
"Sorts data in ascending order",
"Filters records based on a condition",
"Combines rows from multiple tables"
],
"answer": "Groups rows that have the same values into summary rows"
},
{
"question": "What is a subquery in SQL?",
"options": [
"A query nested inside another query",
"A query used to create a new table",
"A query used to update records",
"A query used to delete records"
],
"answer": "A query nested inside another query"
},
{
"question": "What does the 'HAVING' clause do in SQL?",
"options": [
"Filters records after the 'GROUP BY' clause",
"Filters records before the 'GROUP BY' clause",
"Joins two tables",
"Sorts data in descending order"
],
"answer": "Filters records after the 'GROUP BY' clause"
}
]
},
"MEC136 ENGINEERING GRAPHICS AND DIGITAL FABRICATION": {
"MCQs": [
{
"question": "What tool is commonly used for creating technical drawings?",
"options": [
"Computer-Aided Design (CAD)",
"Text Editor",
"Spreadsheet Software",
"Database Software"
],
"answer": "Computer-Aided Design (CAD)"
},
{
"question": "Which of the following is not a type of projection?",
"options": [
"Isometric Projection",
"Orthographic Projection",
"Perspective Projection",
"Digital Projection"
],
"answer": "Digital Projection"
},
{
"question": "What is the purpose of sectioning in engineering drawings?",
"options": [
"To show internal features of an object",
"To display color schemes",
"To illustrate motion",
"To represent textures"
],
"answer": "To show internal features of an object"
},
{
"question": "Which line type is used to represent the boundary of an object in technical drawings?",
"options": [
"Object Line",
"Center Line",
"Hidden Line",
"Section Line"
],
"answer": "Object Line"
},
{
"question": "What does a dimensioning system indicate in engineering drawings?",
"options": [
"The size and location of features",
"The color of the object",
"The material used",
"The weight of the object"
],
"answer": "The size and location of features"
},
{
"question": "Which of the following is a standard format for technical drawing sheets?",
"options": [
"A4",
"A3",
"A2",
"All of the above"
],
"answer": "All of the above"
},
{
"question": "What is the function of an auxiliary view in technical drawings?",
"options": [
"To show features not visible in the principal views",
"To display color details",
"To illustrate dimensions",
"To represent textures"
],
"answer": "To show features not visible in the principal views"
},
{
"question": "What type of drawing represents an object's shape as it would appear from the front?",
"options": [
"Front View",
"Top View",
"Side View",
"Isometric View"
],
"answer": "Front View"
},
{
"question": "Which of the following is a type of solid modeling?",
"options": [
"Wireframe Modeling",
"Surface Modeling",
"Boolean Modeling",
"Sketch Modeling"
],
"answer": "Boolean Modeling"
},
{
"question": "What is the purpose of using scales in technical drawings?",
"options": [
"To represent objects at a reduced or enlarged size",
"To add color details",
"To show internal features",
"To illustrate motion"
],
"answer": "To represent objects at a reduced or enlarged size"
}
]
},
"MTH174 ENGINEERING MATHEMATICS": {
"MCQs": [
{
"question": "What is the derivative of sin(x)?",
"options": [
"cos(x)",
"sin(x)",
"-cos(x)",
"-sin(x)"
],
"answer": "cos(x)"
},
{
"question": "What is the integral of 1/x dx?",
"options": [
"ln|x| + C",
"x + C",
"1/x + C",
"x^2/2 + C"
],
"answer": "ln|x| + C"
},
{
"question": "What is the solution to the differential equation dy/dx = 2x?",
"options": [
"x² + C",
"2x + C",
"x²",
"2x² + C"
],
"answer": "x² + C"
},
{
"question": "What is the Taylor series expansion of e^x around x = 0?",
"options": [
"1 + x + x²/2! + x³/3! + ...",
"1 + x + x² + x³/3!",
"1 + x + x²/2 + x³/6",
"1 + x + x²/2 + x³/6 + ..."
],
"answer": "1 + x + x²/2! + x³/3! + ..."
},
{
"question": "What is the Laplace transform of δ(t)?",
"options": [
"1",
"t",
"e^(-s)",
"0"
],
"answer": "1"
},
{
"question": "What is the value of the limit lim x→0 (sin(x)/x)?",
"options": [
"1",
"0",
"∞",
"-1"
],
"answer": "1"
},
{