-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
190 lines (140 loc) Β· 3.86 KB
/
app.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
// Q No 1
let qNo1 = prompt(
"Who is the developer of HTML?\nπ’ Robert Cailliau\nπ’ Tim Thompson\nπ’ Charles Darwin\nπ’ Tim Berners-Lee"
);
let points = 0;
if (qNo1 == "Tim Berners-Lee") {
document.write("Qno 1 β
Correct");
++points;
} else {
document.write("Qno 1 β Wrong");
points;
}
document.write(" Your Point is " + points);
document.write("<br>");
// Q No 2
let qNo2 = prompt(
"HTMl was first proposed in the year?\nπ’ 1985\nπ’ 1990\nπ’ 1995\nπ’ 2000"
);
let points1 = 0;
if (qNo2 == 1990) {
document.write("Qno 2 β
Correct");
++points1;
} else {
document.write("Qno 2 β Wrong");
points1;
}
document.write(" Your Point is " + points1);
document.write("<br>");
// Q No 3
let qNo3 = prompt(
"What type of language is HTML?\nπ’ Scripting Language\nπ’ Markup Language\nπ’ Network Protocol\nπ’ Programing Language"
);
let points3 = 0;
if (qNo3 == "Markup Language") {
document.write("Qno 3 β
Correct");
++points3;
} else {
document.write("Qno 3 β Wrong");
points3;
}
document.write(" Your Point is " + points3);
document.write("<br>");
// Q No 4
let qNo4 = prompt(
"What does the <br> tag add to your webpage?\nπ’ Paragraph break\nπ’ Long break\nπ’ Line break\nπ’ None of these"
);
let points4 = 0;
if (qNo4 == "Line break") {
document.write("Qno 4 β
Correct");
++points4;
} else {
document.write("Qno 4 β Wrong");
points4;
}
document.write(" Your Point is " + points4);
document.write("<br>");
// Q No 5
let qNo5 = prompt("HTML is subset of?\nπ’ SGMD\nπ’ SGMH\nπ’ SGML\nπ’ None");
let points5 = 0;
if (qNo5 == "SGML") {
document.write("Qno 5 β
Correct");
++points5;
} else {
document.write("Qno 5 β Wrong");
points5;
}
document.write(" Your Point is " + points5);
document.write("<br>");
// Q No 6
let qNo6 = prompt(
"The body tag is usually used after?\nπ’ html tag\nπ’ title tag\nπ’ head tag\nπ’ em tag"
);
let points6 = 0;
if (qNo6 == "head tag") {
document.write("Qno 6 β
Correct");
++points6;
} else {
document.write("Qno 6 β Wrong");
points6;
}
document.write(" Your Point is " + points6);
document.write("<br>");
// Q No 7
let qNo7 = prompt(
"Which character is used to represent the closing of a tag in HTML?\nπ’ *\nπ’ @\nπ’ /\nπ’ !"
);
let points7 = 0;
if (qNo7 == "/") {
document.write("Qno 7 β
Correct");
++points7;
} else {
document.write("Qno 7 β Wrong");
points7;
}
document.write(" Your Point is " + points7);
document.write("<br>");
// Q No 8
let qNo8 = prompt(
"In HTML, tags that include both on and off tags are called?\nπ’ document tag\nπ’ comment tag\nπ’ container tag\nπ’ None of the above"
);
let points8 = 0;
if (qNo8 == "container tag") {
document.write("Qno 8 β
Correct");
++points8;
} else {
document.write("Qno 8 β Wrong");
points8;
}
document.write(" Your Point is " + points8);
document.write("<br>");
// Q No 9
let qNo9 = prompt(
"Full form of URl is?\nπ’ Uniform read locator\nπ’ Uniform research locator\nπ’ Uniform resource locator\nπ’ United research locator"
);
let points9 = 0;
if (qNo9 == "Uniform resource locator") {
document.write("Qno 9 β
Correct");
++points9;
} else {
document.write("Qno 9 β Wrong");
points9;
}
document.write(" Your Point is " + points9);
document.write("<br>");
// Q No 8
let qNo10 = prompt(
"Which program do you need to write HTMl?\nπ’ HTML development suite 4\nπ’ A graphics program\nπ’ Any text editor\nπ’ All of these"
);
let points10 = 0;
if (qNo10 == "Any text editor") {
document.write("Qno 10 β
Correct");
++points10;
} else {
document.write("Qno 10 β Wrong");
points10;
}
document.write(" Your Point is " + points10);
// document.write("<br>");
// document.write("<br>");
// document.write("Total Marks is " + points + points1 + points3 + points4 + points5 + points6 + points7 + points8 + points9 + points10)