JS Variable Review

JS Variable Review

10th Grade

22 Qs

quiz-placeholder

Similar activities

Javascript in Khan 1116

Javascript in Khan 1116

10th Grade

21 Qs

Javascript in Khan 1116

Javascript in Khan 1116

10th Grade

20 Qs

JavaScript Quiz 2

JavaScript Quiz 2

9th - 12th Grade

20 Qs

12.14.23 Asynch Quizziz Escape Room

12.14.23 Asynch Quizziz Escape Room

9th - 12th Grade

20 Qs

Python - Quiz

Python - Quiz

9th - 11th Grade

17 Qs

Intro to JavaScript

Intro to JavaScript

9th - 12th Grade

20 Qs

CodeHS JavaScript

CodeHS JavaScript

8th - 12th Grade

21 Qs

CPA Practice 9-29-2021

CPA Practice 9-29-2021

9th - 12th Grade

19 Qs

JS Variable Review

JS Variable Review

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Jocelyn Hall

Used 14+ times

FREE Resource

22 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the name of the variable?

ball

draw

ellipse

function

Answer explanation

The variable name is 'ball', which is one of the answer choices provided. The other options, 'draw', 'ellipse', and 'function', do not represent the variable in question.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the purpose of the variable in this code?

To store the X-POSITION of the ellipse

To store the Y-POSITION of the ellipse

To store the WIDTH of the ellipse

To store the HEIGHT of the ellipse

Answer explanation

The variable is used to store the X-POSITION of the ellipse, which determines its horizontal placement on the canvas. This is crucial for rendering the ellipse at the correct location.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times do you need DECLARE a variable?

Once

Depends

Answer explanation

You only need to DECLARE a variable once in a given scope. After declaration, you can use the variable multiple times without needing to declare it again.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is animating in this code?

the ellipse is moving RIGHT

the ellipse is moving DOWN

the ellipse is getting WIDER

the ellipse is getting TALLER

Answer explanation

The code animates the ellipse by changing its vertical position, causing it to move DOWN. The other options refer to changes in width or height, which are not indicated in the code.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which line has an example a VARIABLE DECLARATION?

Line 1

Line 6

Line 8

Answer explanation

Line 1 contains a variable declaration, which typically includes a type and a variable name. The other lines do not represent variable declarations, making Line 1 the correct choice.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the purpose of the variable in this code?

To store the X-POSITION of the ellipse

To store the Y-POSITION of the ellipse

To store the WIDTH of the ellipse

To store the HEIGHT of the ellipse

Answer explanation

The variable is used to store the Y-POSITION of the ellipse, which determines its vertical placement on the canvas. This is crucial for rendering the ellipse at the correct location.

7.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What color intensity does 100 represent?

fill(120, 50, 100)

Red

Green

Blue

Answer explanation

In the fill(120, 50, 100) function, the parameters represent the RGB color model. The third parameter, 100, corresponds to the intensity of blue. Therefore, 100 represents the color intensity of Blue.

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?