JavaScript Variables Quiz

JavaScript Variables Quiz

10th Grade

19 Qs

quiz-placeholder

Similar activities

Python Quiz (part 1)

Python Quiz (part 1)

9th - 12th Grade

20 Qs

Computer Science - Python

Computer Science - Python

9th - 12th Grade

15 Qs

Javascript

Javascript

10th - 12th Grade

15 Qs

JavaScript Operators

JavaScript Operators

9th - 12th Grade

20 Qs

Final Review - Unit 1

Final Review - Unit 1

9th - 12th Grade

15 Qs

Python basics

Python basics

9th - 12th Grade

16 Qs

Python Basics

Python Basics

8th - 12th Grade

23 Qs

Basic Python Print statement and variable ceations

Basic Python Print statement and variable ceations

7th - 12th Grade

15 Qs

JavaScript Variables Quiz

JavaScript Variables Quiz

Assessment

Quiz

Computers

10th Grade

Hard

Created by

R. Mou

Used 5+ times

FREE Resource

19 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are variables in JavaScript similar to?

Puzzle pieces

Functions

Little boxes to store values

Strings

Loops

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword is commonly used to declare a variable in JavaScript?

const

let

int

float

var

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If you declare a variable without initializing it, what is it called?

Uninitialized

Null

Empty

Undefined

Zeroed

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does initializing a variable mean?

Naming it

Assigning a value to it

Creating a box for it

Naming and assigning a value to it

Deleting it

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to declare and initialize a variable to store the number 10?

int number = 10;

number = 10;

var number = 10;

float number = 10;

number 10;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? `var value = 53; value = 75; console.log(value);`

53

75

5375

Error

None of the above

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which type of variable is used to hold true or false values?

String

Integer

Char

Float

Boolean

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?