JavaScript-Day2

JavaScript-Day2

University

15 Qs

quiz-placeholder

Similar activities

Quizizz SIOTICS #2

Quizizz SIOTICS #2

10th Grade - University

20 Qs

DSA (QUIZ 6) Hashing, Graphs, Advanced Graph Algorithms, and DP

DSA (QUIZ 6) Hashing, Graphs, Advanced Graph Algorithms, and DP

University

20 Qs

Computer Programming I Finals

Computer Programming I Finals

University

11 Qs

แข่งขันcodingม.ปลาย

แข่งขันcodingม.ปลาย

12th Grade - University

15 Qs

Codean - Java Loop

Codean - Java Loop

University

17 Qs

Quiz de JavaScript

Quiz de JavaScript

University

20 Qs

Arrays in CQuiz

Arrays in CQuiz

1st Grade - University

10 Qs

Quiz desarrollo app moviles

Quiz desarrollo app moviles

University

20 Qs

JavaScript-Day2

JavaScript-Day2

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

Chitra Muthu

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which type of loop executes at least once before checking the condition?

for loop

while loop

do-while loop

foreach loop

2.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What will the following code output?

for (let i = 0; i < 5; i++) {

console.log(i);

}

0 to 4

1 to 5

0 to 5

Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which statement is used to exit a loop prematurely?

stop

return

break

exit

4.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What is the correct way to select an element with the ID demo?

document.getElementsByClassName('demo')

document.getElementById('demo')

document.querySelector('.demo')

document.getElementsByTagName('demo')

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

How can you create a new HTML element using JavaScript?

document.newElement("p")

document.appendChild("p")

document.createElement("p")

document.writeElement("p")

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which property is used to change the text of an HTML element?

innerText

textContent

innerHTML

All of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Which method is used to remove an element from the DOM?

element.remove()

document.deleteElement()

element.destroy()

document.removeChild()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?