-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.json
More file actions
66 lines (66 loc) · 1.92 KB
/
Copy pathquestions.json
File metadata and controls
66 lines (66 loc) · 1.92 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
[
{
"title": "What does HTML stand for?",
"answers": ["Hyper Text Markup Language", "High Tech Machine Language", "Home Tool Markup Language", "Hyperlinks and Text Management Language"],
"correct_answer": "Hyper Text Markup Language"
},
{
"title": "Which CSS property is used to change text color?",
"answers": ["font-style", "color", "text-color", "background-color"],
"correct_answer": "color"
},
{
"title": "Which of the following is NOT a JavaScript data type?",
"answers": ["Number", "String", "Boolean", "Character"],
"correct_answer": "Character"
},
{
"title": "What does CSS stand for?",
"answers": ["Creative Style System", "Cascading Style Sheets", "Computer Styled Sections", "Colorful Style Syntax"],
"correct_answer": "Cascading Style Sheets"
},
{
"title": "Which HTML element is used to include JavaScript code?",
"answers": ["js", "javascript", "script", "code"],
"correct_answer": "script"
},{
"title": "How can we make an element's text bold?",
"answers": [
"Put it inside a b tag",
"Put it inside a strong tag",
"Use the font-weight property in CSS",
"All answers are correct"
],
"correct_answer": "All answers are correct"
},
{
"title": "How can we include an external page inside our HTML page?",
"answers": [
"By using 'include' in HTML",
"By using 'load' in HTML",
"By using the i frame tag",
"All solutions are wrong"
],
"correct_answer": "By using the i frame tag"
},
{
"title": "Which tag does not exist in HTML?",
"answers": [
"object",
"basefont",
"abbr",
"All tags exist in HTML"
],
"correct_answer": "All tags exist in HTML"
},
{
"title": "Which element does not exist in HTML5 semantics?",
"answers": [
"article",
"section",
"blockquote",
"aside"
],
"correct_answer": "blockquote"
}
]