-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.php
More file actions
153 lines (114 loc) · 5.93 KB
/
questions.php
File metadata and controls
153 lines (114 loc) · 5.93 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
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>JONAS' MATH QUIZ</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="page-wrap">
<h1>JONAS' MATH QUIZ</h1>
<form action="resultat.php" method="post" id="quiz">
<ol>
<img src="images/J1.JPG" alt="" width="300" height="250" />
<li>
<h3>0, 1, 2, 3 är exempel på</h3>
<div>
<input type="radio" name="question-1-answers" id="question-1-answers-A" value="A" />
<label for="question-1-answers-A">A) Romerska siffror </label>
</div>
<div>
<input type="radio" name="question-1-answers" id="question-1-answers-B" value="B" />
<label for="question-1-answers-B">B) Arabiska siffror</label>
</div>
<div>
<input type="radio" name="question-1-answers" id="question-1-answers-C" value="C" />
<label for="question-1-answers-C">C) En kryptovaluta</label>
</div>
</li>
<img src="images/P2.PNG" alt="" width="300" height="250" />
<li>
<h3>Vad heter detta berömda matematiska teorem?</h3>
<div>
<input type="radio" name="question-2-answers" id="question-2-answers-A" value="A" />
<label for="question-2-answers-A">A) Pythagoras sats</label>
</div>
<div>
<input type="radio" name="question-2-answers" id="question-2-answers-B" value="B" />
<label for="question-2-answers-B">B) Black–Scholes ekvation</label>
</div>
<div>
<input type="radio" name="question-2-answers" id="question-2-answers-C" value="C" />
<label for="question-2-answers-C">C) Menachem's seed</label>
</div>
</li>
<img src="images/P3.JPG" alt="" width="300" height="250" />
<li>
<h3>Två vinklar och en sida i en triangel är kända.
Du räknar ut sista vinkeln och de andra två sidorna. Vad har du gjort?</h3>
<div>
<input type="radio" name="question-3-answers" id="question-3-answers-A" value="A" />
<label for="question-3-answers-A">A) Triangulering</label>
</div>
<div>
<input type="radio" name="question-3-answers" id="question-3-answers-B" value="B" />
<label for="question-3-answers-B">B) Triangel solvering</label>
</div>
<div>
<input type="radio" name="question-3-answers" id="question-3-answers-C" value="C" />
<label for="question-3-answers-C">C) Kvadrant optimering</label>
</div>
</li>
<img src="images/P4.PNG" alt="" width="300" height="250" />
<li>
<h3>Vad är svaret om uttrycket evalueras?</h3>
<div>
<input type="radio" name="question-4-answers" id="question-4-answers-A" value="A" />
<label for="question-4-answers-A">A) 128</label>
</div>
<div>
<input type="radio" name="question-4-answers" id="question-4-answers-B" value="B" />
<label for="question-4-answers-B">B) 0</label>
</div>
<div>
<input type="radio" name="question-4-answers" id="question-4-answers-C" value="C" />
<label for="question-4-answers-C">C) 1</label>
</div>
</li>
<img src="images/P5.PNG" alt="" width="300" height="250" />
<li>
<h3>Vad är i multiplicerat med i?</h3>
<div>
<input type="radio" name="question-5-answers" id="question-5-answers-A" value="A" />
<label for="question-5-answers-A">A) 2i</label>
</div>
<div>
<input type="radio" name="question-5-answers" id="question-5-answers-B" value="B" />
<label for="question-5-answers-B">B) 1</label>
</div>
<div>
<input type="radio" name="question-5-answers" id="question-5-answers-C" value="C" />
<label for="question-5-answers-C">C) -1</label>
</div>
</li>
<img src="images/J6.JPG" alt="" width="300" height="250" />
<li>
<h3>Vem har inte jobbat som matematik lärare?</h3>
<div>
<input type="radio" name="question-6-answers" id="question-6-answers-A" value="A" />
<label for="question-6-answers-A">A) Jonas Mårtensson</label>
</div>
<div>
<input type="radio" name="question-6-answers" id="question-6-answers-B" value="B" />
<label for="question-6-answers-B">B) Jonas Sigrell</label>
</div>
<div>
<input type="radio" name="question-6-answers" id="question-6-answers-C" value="C" />
<label for="question-6-answers-C">C) Jeffrey Epstein</label>
</div>
</li>
</ol>
<input type="submit" value="Submit" class="submitbtn" />
</form>
</div>
</body>
</html>