Coding 101- JS variables

Coding 101- JS variables

Professional Development

6 Qs

quiz-placeholder

Similar activities

R Challenge

R Challenge

Professional Development

10 Qs

JavaScript Fundamentals

JavaScript Fundamentals

9th Grade - Professional Development

10 Qs

CodeMonkey Platform Management & Resources

CodeMonkey Platform Management & Resources

Professional Development

10 Qs

Môn Toán_ Bài 4: So sánh số

Môn Toán_ Bài 4: So sánh số

Professional Development

10 Qs

GFG Quiz

GFG Quiz

11th Grade - Professional Development

10 Qs

Design of Experiments

Design of Experiments

Professional Development

10 Qs

Capital Markets- Accounting and Tax Knowledge Quiz.

Capital Markets- Accounting and Tax Knowledge Quiz.

Professional Development

10 Qs

Tatalaksana HT di Layanan Primer

Tatalaksana HT di Layanan Primer

Professional Development

10 Qs

Coding 101- JS variables

Coding 101- JS variables

Assessment

Quiz

Education

Professional Development

Medium

Created by

Mostafa Hazareh

Used 11+ 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";