Define Variables

Define Variables

9th - 12th Grade

12 Qs

quiz-placeholder

Similar activities

Code  quiz

Code quiz

5th - 12th Grade

16 Qs

Unit 3: Part I

Unit 3: Part I

10th Grade

15 Qs

Python

Python

7th - 9th Grade

12 Qs

Javascript Again 1114

Javascript Again 1114

10th Grade

14 Qs

Fall Final 2024 - CS Fundamentals

Fall Final 2024 - CS Fundamentals

9th Grade

15 Qs

JavaScript Graphics

JavaScript Graphics

9th - 12th Grade

10 Qs

Python programming

Python programming

6th - 12th Grade

16 Qs

JavaScript viktorīna

JavaScript viktorīna

9th Grade

12 Qs

Define Variables

Define Variables

Assessment

Quiz

Computers

9th - 12th Grade

Hard

CCSS
6.EE.B.6, L.3.2D, L.2.2C

+1

Standards-aligned

Created by

Barbara White

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

var x = 150

var y = 75

What is the value of the y variable?

150

75

225

Infinity

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In the following code, we define a variable and use it to draw a rectangle:

var rectWidth = 20;

rect(10, 10, rectWidth, rectWidth);

How wide is the rectangle?

Not wide enough

10

20

30

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In the following code, we define two variables, w and h, and use them to draw an ellipse and a rectangle:

var w = 20;

var h = 15;

rect(10, 10, w, h);

ellipse(10, 10, w, h);

How tall is each one of the shapes?

5

35

20

15

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The following code draws a face with a mouth (with no eyes!), using two variables:

var faceS = 100;

var mouthS = 30;

ellipse(200, 200, faceS, faceS);

ellipse(200, 220, mouthS, mouthS);

How wide is the second ellipse that draws the mouth?

30

200

100

130

Tags

CCSS.6.EE.B.6

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

A variable is a way to store _______.

vapors

verbs

values

vegetables

Tags

CCSS.6.EE.B.6

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which is the correct way to write a variable?

var = X

X = 299

var = 299

var X = 299

Tags

CCSS.6.EE.B.6

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of these is a valid variable name?

leaf_1

myVar#!

$%90);

12bucklemyshoe$

Tags

CCSS.L.3.2D

CCSS.L.2.2C

CCSS.L.1.1B

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?