What is the correct HTML for adding a background color?
Anonymous Quiz
11%
<body bg="yellow">
72%
<body style="background-color:yellow;">
11%
<background>yellow</background>
7%
<body bg-color="yellow">
What will this code output?
Difficulty: Average๐คจ
Difficulty: Average๐คจ
const obj1 = { name: 'Alice' };
const obj2 = { name: 'Alice' };
if (obj1 === obj2) {
console.log("true");
} else {
console.log("false");
}Which CSS rule can be used to change the cursor when hovering over an element?
Anonymous Quiz
19%
hover-cursor: hand;
21%
hover: cursor;
47%
cursor: pointer;
13%
pointer: hover;
What is the correct syntax for referring to an external script called "xxx.js"?
Anonymous Quiz
69%
<script src="xxx.js"></script>
19%
<script src="xxx.js">
7%
<script src=""></script>
5%
<script name="xxx.js">
Who is making the Web standards?
Anonymous Quiz
32%
Google
9%
Mozilla
49%
The World Wide Web Consortium
10%
Microsoft
Find the error in the code.
Difficulty: Easy๐
Difficulty: Easy๐
number = 5
text = "Quantity: " + number
print(text)
๐ฅ3๐ค3๐2