IOTA : Web Development Bootcamp Quiz 4

IOTA : Web Development Bootcamp Quiz 4

University

8 Qs

quiz-placeholder

Similar activities

Apps Script Quiz - Day 4 Lesson

Apps Script Quiz - Day 4 Lesson

University

10 Qs

IP 10.03.2023

IP 10.03.2023

University

9 Qs

HTML CSS

HTML CSS

University

8 Qs

Array

Array

University

11 Qs

3.1-basic-CSS-review

3.1-basic-CSS-review

7th Grade - Professional Development

10 Qs

BOOLEAN CLUB QUIZ 1

BOOLEAN CLUB QUIZ 1

University

10 Qs

Microsoft Word 2

Microsoft Word 2

University

10 Qs

CSS FlexBox

CSS FlexBox

University

6 Qs

IOTA : Web Development Bootcamp Quiz 4

IOTA : Web Development Bootcamp Quiz 4

Assessment

Quiz

Computers

University

Hard

Created by

IOTA IIITS

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
What is the output of the following code?
1 2 3
1 3 2
2 1 3
3 2 1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does "document.getElementsByClassName('className")" return?
Javascript Array Object
HTMLCollection Object
Array of objects
HTMLArray Object

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a JavaScript runtime environment?
Node.js
Browser
Deno
VS Code

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are correct for selecting all the elements with class "box" ?
document.getElementsByTagName("box");
document.getElementsByClassName("box");
document.getElementById("box");
document.querySelector(".box");

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
What will be printed to the console for the following code if inner div is clicked?
inner clicked outer clicked
outer clicked inner clicked
inner clicked
outer clicked

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following can change the display of an element to flex? a) element.style.display="flex"; b) element.display="flex"; c) element.style.setProperty("display","flex"); d) element.setProperty("display","flex");
a) and b) are correct.
b) and c) are correct.
a) and c) are correct.
Only a) is correct

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
How much time would be taken to fulfil Promise.all when it will be called with googleSearchResults and chatGPTSearchResults as input?
1 sec
4 sec
5 sec
0 sec

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image
What is the output of the following code?
1 2 3 4
2 1 3 4
2 3 1 4
3 4 1 2