HTML, CSS, Javascript

HTML, CSS, Javascript

Assessment

Flashcard

Computers

11th - 12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

19 questions

Show all answers

1.

FLASHCARD QUESTION

Front

The output of the below code is:

<p id="demo"></p>

<script>
var text = "";
var i;
for (i = 0; i < 5; i++) {
text += "The number is " + i + "<br>";
}
document.getElementById("demo").innerHTML = text;

Back

The number is 0
The number is 1
The number is 2
The number is 3
The number is 4

2.

FLASHCARD QUESTION

Front

Which of the following is the largest heading? h2, h3, h4, h6

Back

h2

3.

FLASHCARD QUESTION

Front

HTML tag that defines a division or a section in an HTML document

Back

div

4.

FLASHCARD QUESTION

Front

HTML tag defines a hyperlink

Back