Understanding Variables

Understanding Variables

9th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

JavaScript Basics 101

JavaScript Basics 101

12th Grade

10 Qs

Programming Variables

Programming Variables

10th Grade

10 Qs

JavaScript

JavaScript

10th - 12th Grade

9 Qs

Variables in Computer Science

Variables in Computer Science

9th - 12th Grade

7 Qs

Variables Computer Science

Variables Computer Science

9th - 12th Grade

7 Qs

Lists Code.org

Lists Code.org

9th - 12th Grade

10 Qs

Code.org AP CSP Lists

Code.org AP CSP Lists

9th - 12th Grade

10 Qs

Chapter 5

Chapter 5

9th Grade

10 Qs

Understanding Variables

Understanding Variables

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Chad Miller

Used 10+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 20 pts

What number will be output by the console.log command on line 7?

1 var age;

2 var year

3 age = 10;

4 year = 20;

5 year = 100;

6 age = 200;

  1. 7 console.log (age)

10

200

20

300

2.

MULTIPLE CHOICE QUESTION

3 mins • 20 pts

What number will be output by the console.log command on line 5?

1 var boop = 10;

2 boop = boop + 1;

3 boop = boop + 2;

4 boop = boop + 3;

5 console.log (boop);

10

11

12

16

3.

MULTIPLE CHOICE QUESTION

3 mins • 20 pts

What number will be output by the console.log command on line 5?

1 var skit = 20;

2 var rat = 10;

3 skit = skit +5 ;

4 rat = skit + rat;

5 console.log (rat);

35

10

15

12

220

4.

MULTIPLE CHOICE QUESTION

3 mins • 20 pts

What will be the order of letters printed to the console when this program is run?

1 console.log ("b");

2 myFunction (letters);

3 myFunction (letters);

4 function letters

console.log"c";

console.log "d";

abc

bcdb

bcdcd

bccdd

5.

MULTIPLE CHOICE QUESTION

3 mins • 20 pts

Which of the following is true of functions?

Programs written with functions run more quickly.

Functions can help remove repeated code from a program

Functions are called once but can be declared many times.

Replacing repeated code with a function will reduce the number of commands the computer needs to run.