JavaScript and React Quiz

JavaScript and React Quiz

University

10 Qs

quiz-placeholder

Similar activities

Lesson 3 Getting Started with C Programming

Lesson 3 Getting Started with C Programming

12th Grade - University

14 Qs

control system

control system

University

15 Qs

Simple Easy Basic Lua Quiz

Simple Easy Basic Lua Quiz

4th Grade - Professional Development

10 Qs

Brainy Bites: Python

Brainy Bites: Python

University

12 Qs

Aux  - Intro a la Informática (Python)

Aux - Intro a la Informática (Python)

University

10 Qs

Quiz 6 Gold batch JS

Quiz 6 Gold batch JS

University

10 Qs

Java Strings

Java Strings

1st Grade - Professional Development

10 Qs

Arrays

Arrays

University

15 Qs

JavaScript and React Quiz

JavaScript and React Quiz

Assessment

Quiz

Other

University

Easy

Created by

Gnaneshwar Reddy

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code: var x = 1; function foo() { var x = 2; function bar() { console.log(x); } return bar; } var baz = foo(); baz();

1

2

undefined

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code: var x = [1, 2, 3]; var y = x.slice(1); console.log(y);

[1, 2]

[2, 3]

[1, 3]

Error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code: var x = 5; console.log(++x);

5

6

NaN

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code: var x = true; var y = false; console.log(x || y);

true

false

null

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code: console.log(typeof null);

"null"

"object"

"undefined"

Error

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is React.js?

A JavaScript framework

A JavaScript library for building user interfaces

A CSS library

A database

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who developed React.js?

Google

Microsoft

Facebook

Apple

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?