Set A: HTML Tags with their Descriptions
Column I (Tag) Column II (Description)
1. <blockquote> A. Defines a clickable button.
2. <cite> B. Defines a section that is quoted from another source.
3. <button> C. Defines the title of a work (e.g., a book, a song).
4. <code> D. Defines a piece of computer code.
5. <kbd> E. Defines keyboard input.
Set A: Answer
<blockquote> → B. Defines a section that is quoted from another source.
<cite> → C. Defines the title of a work (e.g., a book, a song).
<button> → A. Defines a clickable button.
<code> → D. Defines a piece of computer code.
<kbd> → E. Defines keyboard input.
Set B: CSS Properties with their Functions
Column I (Property) Column II (Function)
1. text-transform A. Controls the space between lines of text.
2. letter-spacing B. Controls the space between characters.
3. line-height C. Controls the space between words.
4. word-spacing D. Controls the capitalization of text (uppercase, lowercase, etc.).
5. white-space E. Controls how whitespace inside an element is handled.
Set B: Answer
text-transform → D. Controls the capitalization of text (uppercase, lowercase, etc.).
letter-spacing → B. Controls the space between characters.
line-height → A. Controls the space between lines of text.
word-spacing → C. Controls the space between words.
white-space → E. Controls how whitespace inside an element is handled.
Set C: JavaScript Concepts with Definitions
Column I (Concept) Column II (Definition)
1. Function A. A container for storing a data value.
2. Variable B. A structure that allows you to store multiple values in a single reference.
3. Array C. A reusable block of code designed to perform a particular task.
4. Object D. A collection of key-value pairs.
5. Event Listener E. A procedure that waits for and responds to a specific event, like a click.
Set C: Answer
Function → C. A reusable block of code designed to perform a particular task.
Variable → A. A container for storing a data value.
Array → B. A structure that allows you to store multiple values in a single reference.
Object → D. A collection of key-value pairs.
Event Listener → E. A procedure that waits for and responds to a specific event, like a click.
Set D: Web Design Principles with their Meanings
Column I (Principle) Column II (Meaning)
1. Contrast A. The repeating of visual elements to create consistency.
2. Repetition B. The arrangement of elements to create a sense of stability.
3. Alignment C. The difference between elements to make them stand out.
4. Proximity D. The grouping of related items close together.
5. Balance E. The lining up of elements to create order.
Set D: Answer
Contrast → C. The difference between elements to make them stand out.
Repetition → A. The repeating of visual elements to create consistency.
Alignment → E. The lining up of elements to create order.
Proximity → D. The grouping of related items close together.
Balance → B. The arrangement of elements to create a sense of stability.
Set E: HTTP Status Codes with their Meanings
Column I (Status Code) Column II (Meaning)
1. 200 A. Not Modified (used for caching)
2. 301 B. OK (successful request)
3. 304 C. Not Found (resource doesn't exist)
4. 404 D. Internal Server Error
5. 500 E. Moved Permanently (permanent redirect)
Set E: Answer
200 → B. OK (successful request)
301 → E. Moved Permanently (permanent redirect)
304 → A. Not Modified (used for caching)
404 → C. Not Found (resource doesn't exist)
500 → D. Internal Server Error