FEW-Js1

FEW-Js1

University

11 Qs

quiz-placeholder

Similar activities

Roblox

Roblox

KG - Professional Development

10 Qs

Intermediate Robotics Programming

Intermediate Robotics Programming

University - Professional Development

16 Qs

Informática Básica - Hadware

Informática Básica - Hadware

University

12 Qs

home

home

KG - Professional Development

15 Qs

Customer Relationship Management & Live Chat

Customer Relationship Management & Live Chat

12th Grade - Professional Development

10 Qs

C Basics

C Basics

University

12 Qs

pc1

pc1

University

10 Qs

Introduction to HCI

Introduction to HCI

University

10 Qs

FEW-Js1

FEW-Js1

Assessment

Quiz

Design

University

Hard

Created by

Gakwaya Nkundimana Joel

Used 2+ times

FREE Resource

11 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to declare a constant variable in JavaScript?

constant PI=3.14;

let PI=3.14;

const pi=3.14

none above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if you try to reassign a value to a variable declared with const?

it will change the value

it will throw an error

it will create a new variable

nothing will happen

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is the answer for this "let num; console.log(num);

null

0

undefined

error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one of these variable names is NOT valid in JavaScript?

myVar

$price

1st_name

_myname

5.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

let, var, and const are used to ______ variables in JavaScript.

6.

FILL IN THE BLANK QUESTION

45 sec • 1 pt

Variables created with const must be ______ during create.

7.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What will be the output?
const num;

num = 5;

console.log(num);

5

undefined

syntax error

num

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?