-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.json
More file actions
183 lines (182 loc) · 6.7 KB
/
Copy pathquiz.json
File metadata and controls
183 lines (182 loc) · 6.7 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
[
{
"id": 1,
"question": "What is the purpose of HTML in web development?",
"options": [
"Styling web pages",
"Defining data structures",
"Programming server-side logic",
"Creating the structure of web pages"
],
"answer": "Creating the structure of web pages",
"description": "HTML (Hypertext Markup Language) is the standard markup language for creating the structure of web pages. It defines the elements and their arrangement, allowing browsers to interpret and display content on the internet."
},
{
"id": 2,
"question": "What does CSS stand for in web development?",
"options": [
"Computer Style Sheets",
"Creative Style System",
"Cascading Style Sheets",
"Colorful Style Scripts"
],
"answer": "Cascading Style Sheets",
"description": "CSS (Cascading Style Sheets) is a style sheet language used for describing the look and formatting of a document written in HTML. It controls the presentation, layout, and design of web pages, including aspects such as colors, fonts, and spacing."
},
{
"id": 3,
"question": "Which of the following is a popular front-end JavaScript framework?",
"options": [
"Express.js",
"Vue.js",
"Django",
"Flask"
],
"answer": "Vue.js",
"description": "Vue.js is a progressive JavaScript framework used for building user interfaces. It is commonly used on the front end to create dynamic and reactive web applications. Vue.js is known for its simplicity and flexibility."
},
{
"id": 4,
"question": "What is the purpose of a web server in web development?",
"options": [
"Managing databases",
"Rendering user interfaces",
"Storing client-side scripts",
"Handling HTTP requests and responses"
],
"answer": "Handling HTTP requests and responses",
"description": "A web server is a software or hardware component that handles HTTP (Hypertext Transfer Protocol) requests and responses. It serves web pages to clients, manages communication between clients and servers, and facilitates the processing of dynamic content."
},
{
"id": 5,
"question": "What is the role of AJAX in web development?",
"options": [
"Asynchronous JavaScript and XML",
"Advanced JSON and XML",
"Automated JavaScript and XHTML",
"Asynchronous JSON and XHTML"
],
"answer": "Asynchronous JavaScript and XML",
"description": "AJAX (Asynchronous JavaScript and XML) is a set of web development techniques used to create asynchronous web applications. It allows data to be retrieved from a server asynchronously in the background, enabling dynamic and responsive user interfaces."
},
{
"id": 6,
"question": "What does the term 'responsive design' refer to in web development?",
"options": [
"Designing visually appealing websites",
"Creating mobile applications",
"Designing websites that adapt to different screen sizes",
"Implementing secure server configurations"
],
"answer": "Designing websites that adapt to different screen sizes",
"description": "Responsive design in web development refers to the practice of creating websites that can adapt and provide an optimal viewing experience across various devices and screen sizes, including desktops, tablets, and mobile phones."
},
{
"id": 7,
"question": "Which part of web development is responsible for handling data storage and retrieval?",
"options": [
"Front-end development",
"Back-end development",
"Full-stack development",
"Middleware development"
],
"answer": "Back-end development",
"description": "it is very important aspect of full stack web development.."
},
{
"id": 8,
"question": "What is the correct syntax for creating a CSS class called “highlight” with a red text color?",
"options": [
".highlight { color: red; }",
"highlight { text-color: red; }",
".highlight { text-color: red; }",
"highlight { color: red; }"
],
"answer": ".highlight { color: red; }",
"description": "...."
},
{
"id": 9,
"question": "Which of the following is a popular front-end development framework maintained by Google?",
"options": [
"React",
"Angular",
"Vue.js",
"Django"
],
"answer": "Angular",
"description": "...."
},
{
"id": 10,
"question": "What does the acronym “REST” stand for in the context of web development?",
"options": [
"Representational State Transfer",
"Responsive Elements for Seamless Transition",
"Readable Element Style Transfer",
"Real-time Server Technology"
],
"answer": "Representational State Transfer",
"description": "...."
},
{
"id": 11,
"question": "Which HTTP method is typically used to retrieve data from a web server?",
"options": [
"GET",
"POST",
"PUT",
"DELETE"
],
"answer": "GET",
"description": "...."
},
{
"id": 12,
"question": "What is the purpose of the “cookie” in web development?",
"options": [
"To store data on the client’s browser for future use",
"To encrypt sensitive information during transmission",
"To handle server-side logic",
"To create user authentication systems"
],
"answer": "To store data on the client’s browser for future use",
"description": "...."
},
{
"id": 13,
"question": "What is the purpose of the “viewport” meta tag in HTML?",
"options": [
"To define the color palette for the web page",
"To set the width and initial scale of the web page for different devices",
"To define the font style and size",
"To specify the default language of the web page"
],
"answer": "To set the width and initial scale of the web page for different devices",
"description": "...."
},
{
"id": 14,
"question": "In JSON, keys must always be of which data type?",
"options": [
"String",
"Number",
"Boolean",
"Object"
],
"answer": "String",
"description": "...."
},
{
"id": 15,
"question": "JSON can be parsed using which of the following functions in JavaScript? ",
"options": [
"JSON.parse()",
"JSON.stringify()",
"JSON.decode()",
"JSON.encode()"
],
"answer": "JSON.parse()",
"description": "...."
}
]