Question 1
Create a navbar and change the color of its first element to red.
Answer
<html><head><title>Question 1title>head><body><nav><li>Homeli><li>Aboutli><li>Blogli><li>Contactli>nav>body>html>
document.getElementsByTagName("nav")[0].firstElementChild.style.color = "red";
This solution selects the nav
element using getElementsByTagName
, then selects its first child element using firstElementChild
. Finally, it applies the style.color
property to change the text color to red.
Note that there are other ways to achieve this task as well. For example, you could use querySelector
to select the first li
element inside the nav
:
document.querySelector("nav li:first-child").style.color = "red";
Question 2
Create a table without tbody
, then use the "View Page Source" (Ctrl+U shortcut on Chrome) button to check whether it has a tbody
or not.
Answer
<!DOCTYPE html><html><head><title>Question 2</title></head><body><table><tr><td>1</td><td>2</td><td>3</td></tr><tr><td>4</td><td>5</td><td>6</td></tr><tr><td>7</td><td>8</td><td>9</td></tr></table></body></html>
No
- the page source does not show a tbody
element because it is automatically added by the browser. If you inspect the element using your browser
## Question 3
Create an element with three children and change the color of first and last children to green.
Answer
<!DOCTYPE html><html><head><title>Question 3</title></head><body><div><p>First child</p><p>Second child</p><p>Last child</p></div></body></html>
document.querySelector("div").firstElementChild.style.color = "green";document.querySelector("div").lastElementChild.style.color = "green";
Explanation
- The HTML code creates a
div
element with threep
elements as children. - The JavaScript code uses
document.querySelector
to select thediv
element and its first and last children using thefirstElementChild
andlastElementChild
properties, respectively. - The
style.color
property is used to change the color of the selected elements to green. Note: There are other ways to achieve this task as well. For example, you could use getElementsByTagName to select the first and last p elements inside the div:
document.getElementsByTagName("div")[0].firstElementChild.style.color = "green";document.getElementsByTagName("div")[0].lastElementChild.style.color = "green";
Question 4
Write a JavaScript code to change the background of all li tags to cyan.
Answer
<!DOCTYPE html><html><head><title>Question 4</title></head><body><ul><li>Item 1</li><li>Item 2</li><li>Item 3</li><li>Item 4</li></ul></body></html>
Array.from(document.getElementsByTagName("li")).forEach((element) => {element.style.background = "cyan";});
Explanation
- The HTML code creates an unordered list (
ul
) with four list items (li
). - The JavaScript code uses
document.getElementsByTagName
to select allli
elements andArray.from
to convert the resulting NodeList into an array. - The
forEach
method is used to iterate over the array and change thebackground
style of each element to cyan.
Note: There are other ways to achieve this task as well. For example, you could use querySelectorAll to select all li elements:
document.querySelectorAll("li").forEach((element) => {element.style.background = "cyan";});
Question 5
Which of the followings is used to look for the farthest ancestor that matches a given CSS selector?
a) matches b) closest c) contains d) none of these
Answer
The correct answer is d) none of these.
While matches is used to check if an element matches a given CSS selector, closest is used to find the closest ancestor element that matches a given selector. However, neither of them is used to look for the farthest ancestor that matches a given CSS selector.