Coding 101- JS variables

Coding 101- JS variables

Professional Development

6 Qs

quiz-placeholder

Similar activities

lesson1 quiz

lesson1 quiz

6th Grade - Professional Development

7 Qs

Computers Html Quiz

Computers Html Quiz

KG - Professional Development

10 Qs

Jovenes a Programar

Jovenes a Programar

KG - Professional Development

10 Qs

HTML

HTML

6th Grade - Professional Development

10 Qs

prueba B

prueba B

6th Grade - Professional Development

10 Qs

Итоговое тестирование

Итоговое тестирование

Professional Development

11 Qs

JIWASRAYA PROMAPAN

JIWASRAYA PROMAPAN

Professional Development

9 Qs

Frontend Development

Frontend Development

Professional Development

10 Qs

Coding 101- JS variables

Coding 101- JS variables

Assessment

Quiz

Education

Professional Development

Medium

Created by

Mostafa Hazareh

Used 9+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Inside which HTML element do we put the JavaScript?

<js>

<scripting>

<javascript>

<script>

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Where is the correct place to insert JavaScript?

The <meta> section

The <body> section

The <div> section

The <title> section

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax for referring to an external script called "script.js"?

<script href="script.js">

<script name="script.js">

<script src="script.js">

<script> script.js </script>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Create a variable called price, assign the value 500 to it.

let price = 500;

let price: 500;

let price = "500";

let price : 500;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one is not correct?

let color = "blue";

const color = "blue"

const color = #0000FF;

let color = "#0000FF"

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Create a variable called carName and assign the value volvo to it.

let carName: "volvo";

let carName = "volvo";

let carname = volvo;

let carname : "volvo";