JavaScript-Day2

JavaScript-Day2

University

15 Qs

quiz-placeholder

Similar activities

Quiz Informatika Genap KLs 7

Quiz Informatika Genap KLs 7

7th Grade - University

15 Qs

Module 5: Creating Dynamic Web Pages with Scripting

Module 5: Creating Dynamic Web Pages with Scripting

University

15 Qs

Asesmen Sumatif PHP

Asesmen Sumatif PHP

10th Grade - University

20 Qs

Codean - JavaScript Variablel & Function

Codean - JavaScript Variablel & Function

University

15 Qs

Binary Search

Binary Search

University

12 Qs

PAW.09 - DOM Javascript

PAW.09 - DOM Javascript

University

10 Qs

Web Development Quiz

Web Development Quiz

University

19 Qs

DSA (QUIZ 2) Stacks and Queues Quiz

DSA (QUIZ 2) Stacks and Queues Quiz

University

15 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?