-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphysics edited
174 lines (156 loc) · 3.59 KB
/
physics edited
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
-- Table quiz1
CREATE TABLE quiz1(
Q_ID INT PRIMARY KEY,
Questions varchar(200),
A VARCHAR(100),
B VARCHAR(100),
C VARCHAR(100),
D VARCHAR(100),
ANSWER VARCHAR(5)
);
INSERT INTO quiz1 VALUES(
1,
'What is the SI unit of electric current?',
'A) Volt',
'B) Ampere',
'C) Ohm',
'D) Coulomb',
'B'
);
INSERT INTO quiz1 VALUES(
2,
'Which law of thermodynamics states that energy cannot be created or destroyed, only transformed?',
'A) Zeroth Law',
'B) First Law',
'C) Third Law',
'D) Fourth Law',
'B'
);
INSERT INTO quiz1 VALUES(
3,
'Unit of capacitance??',
'A) Farad',
'B) Ampere',
'C) Ohm',
'D) Coulomb',
'A'
);
INSERT INTO quiz1 VALUES(
4,
'Which of the following is a fundamental force of nature?',
'A) Frictional Force',
'B) Gravitational Force',
'C) Tension Force',
'D) Electrostatic Force',
'B'
);
INSERT INTO quiz1 VALUES(
5,
'Which of the following is a vector quantity?',
'A) Speed',
'B) Mass',
'C) Distance',
'D) Charge',
'A'
);
-- Table quiz2
CREATE TABLE quiz2(
Q_ID INT PRIMARY KEY,
Questions varchar(200),
A VARCHAR(100),
B VARCHAR(100),
C VARCHAR(100),
D VARCHAR(100),
ANSWER VARCHAR(5)
);
INSERT INTO quiz2 VALUES(
1,
'What is the term for the phenomenon where a particle can exist in multiple states simultaneously until observed?',
'A) Superposition',
'B) Entanglement',
'C) Diffraction',
'D) Complementarity',
'A'
);
INSERT INTO quiz2 VALUES(
2,
'What is the term for the process by which an atomic nucleus splits into two or more smaller nuclei, releasing a large amount of energy?',
'A) Fusion',
'B) Fission',
'C) Annihilation',
'D) Decay',
'B'
);
INSERT INTO quiz2 VALUES(
3,
'Which of the following particles is an example of a hadron?',
'A) Electron',
'B) Neutron',
'C) Positron',
'D) Proton',
'D'
);
INSERT INTO quiz2 VALUES(
4,
'What is the speed of light in a vacuum, approximately?',
'A) 3.00 x 10^8 miles per hour',
'B) 30,000 kilometers per second',
'C) 299,792,458 meters per second',
'D) 3,000,000 meters per second',
'B'
);
INSERT INTO quiz2 VALUES(
5,
'According to the theory of general relativity, what does gravity result from?',
'A) The exchange of virtual gravitons',
'B) The expansion of the universe',
'C) The curvature of spacetime caused by mass',
'D) The attraction between positive and negative charges',
'C'
);
-- Table quiz3
CREATE TABLE quiz3(
Q_ID INT PRIMARY KEY,
Questions varchar(200),
A VARCHAR(100),
B VARCHAR(100),
C VARCHAR(100),
D VARCHAR(100),
ANSWER VARCHAR(5)
);
INSERT INTO quiz3 VALUES(
1,
'What is the formula for calculating electric power?',
'A) P=IV',
'B) P=IRT',
'C) P=IT',
'D) P=RT',
'A'
);
INSERT INTO quiz3 VALUES(
2,
'According to the law of conservation of momentum, what happens to the total momentum of a closed system?',
'A) It decreases',
'B) It remains constant',
'C) It increases',
'D) It depends on external forces',
'A'
);
INSERT INTO quiz3 VALUES(
3,
'Which of the following colors of light has the shortest wavelength?',
'A) Red',
'B) Blue',
'C) Yellow',
'D) Violet',
'D'
);
INSERT INTO quiz3 VALUES(
4,
'Which law states that pressure and volume of a gas are inversely proportional at constant temperature?',
'A) Boyle''s Law',
'B) Charles''s Law',
'C) Gay-Lussac''s Law',
'D) Avogadro''s Law',
'A'
);