Js variables data type arithmetic expression

Js variables data type arithmetic expression

11th Grade

10 Qs

quiz-placeholder

Similar activities

Intro to JS: Variables & Values

Intro to JS: Variables & Values

11th Grade - University

8 Qs

JavaScript

JavaScript

11th Grade

15 Qs

JavaScript Basics Quiz

JavaScript Basics Quiz

9th - 12th Grade

9 Qs

PENSAMENTO_COMPUTACIONAL_Funções em JavaScript

PENSAMENTO_COMPUTACIONAL_Funções em JavaScript

11th Grade

10 Qs

Quiz Face-Off – Year 11: Gold vs Diamond-Lower case answers only

Quiz Face-Off – Year 11: Gold vs Diamond-Lower case answers only

11th Grade

10 Qs

Operating System(2)

Operating System(2)

10th Grade - University

10 Qs

PIT U3L1 - Understanding Software Basics

PIT U3L1 - Understanding Software Basics

9th Grade - University

15 Qs

Lesson 1: Shared Data

Lesson 1: Shared Data

9th - 12th Grade

15 Qs

Js variables data type arithmetic expression

Js variables data type arithmetic expression

Assessment

Quiz

Information Technology (IT)

11th Grade

Hard

Created by

cid ungriano

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Media Image

What is the data type of the variable userName?




Number

Boolean

String

Undefined

2.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Media Image

What happens when the line age = 30; is executed?

The value of age is updated to 30.

The program runs without errors.

A TypeError occurs because age is declared with const.

The program will ignore the line.

3.

MULTIPLE CHOICE QUESTION

30 sec • 4 pts

Media Image

Which of the following correctly explains the line isStudent = false;?

A new variable is created.

The boolean value of isStudent is updated.

A syntax error occurs because let variables cannot be changed.

false is appended to isStudent.

4.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

Media Image

Why can userName be reassigned but age cannot?



userName is a const variable, and age is a let variable.

Both variables can be reassigned.

userName is declared with let, allowing reassignment, but age is declared with const, making it immutable.

const only prevents reassignment for numbers, not strings.

5.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

Media Image

Which statement is true about the let and const keywords?

let allows reassignment, but const does not.

const is used only for numbers.

let variables are automatically converted to strings.

const variables can be reassigned inside a function.

6.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

Media Image

If the user enters "15" in the prompt, what will be the value of userAge immediately after input?

15 (as a number)

"15" (as a string)

Undefined

NaN

7.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

Media Image

What will be the value of yearsSinceBirth?

2000

25

"25"

NaN

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?