JavaScript Output Quiz

JavaScript Output Quiz

University

15 Qs

quiz-placeholder

Similar activities

JavaScript Arrays Quiz

JavaScript Arrays Quiz

11th Grade - University

20 Qs

FEWD Review

FEWD Review

University

12 Qs

DSA quiz

DSA quiz

University

20 Qs

Skill Development - Debugging Practice1

Skill Development - Debugging Practice1

10th Grade - Professional Development

10 Qs

Javascript Fundamental

Javascript Fundamental

University

18 Qs

JavaScrip - DSI

JavaScrip - DSI

1st Grade - University

14 Qs

examen de programacion

examen de programacion

University

20 Qs

CodeGulf - Elimination Round

CodeGulf - Elimination Round

University

17 Qs

JavaScript Output Quiz

JavaScript Output Quiz

Assessment

Quiz

Computers

University

Medium

Created by

Karen Tan

Used 5+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? let x = 5; let y = "5"; console.log(x == y);

true

false

undefined

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output? let a; console.log(a);

null

undefined

Error

NaN

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be logged to the console? const PI = 3.14; PI = 3.14159; console.log(PI);

3.14

3.14159

Error

undefined

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens when running the following code? var x = 10; console.log(y); var y = 20;

10

undefined

ReferenceError

20

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output? console.log(2 + "2");

4

22

NaN

Error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output? console.log(2 * "2");

4

22

NaN

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be printed? let result = 10 > 5 ? "Yes" : "No"; console.log(result);

Yes

No

true

false

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?