Coding 101 - JS data types

Coding 101 - JS data types

Professional Development

6 Qs

quiz-placeholder

Similar activities

Action Research

Action Research

University - Professional Development

10 Qs

Clause 9&10 IATF 16949:2016

Clause 9&10 IATF 16949:2016

Professional Development

10 Qs

Testing fdpdb

Testing fdpdb

University - Professional Development

10 Qs

Administrative Law for Public Authorities - Topic 1

Administrative Law for Public Authorities - Topic 1

University - Professional Development

10 Qs

Testing of Hypotheses fdp

Testing of Hypotheses fdp

University - Professional Development

10 Qs

JavaScript Fundamentals

JavaScript Fundamentals

9th Grade - Professional Development

10 Qs

Javascript Coding

Javascript Coding

KG - Professional Development

6 Qs

RCP Via QUIZZIZ | JavaScript

RCP Via QUIZZIZ | JavaScript

Professional Development

10 Qs

Coding 101 - JS data types

Coding 101 - JS data types

Assessment

Quiz

Education

Professional Development

Hard

Created by

Mostafa Hazareh

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What is the correct data type?

const name = "Mostafa";

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct data type?

let isLoading = false;

string

number

undefined

boolean

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct data type?

let price = "550";

string

boolean

number

null

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct data type?

const address;

string

undefined

null

boolean

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct data type?

let status = null;

string

undefined

null

object

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

What is the correct data type?

const length = 120;