Programming Basics Reading

Programming Basics Reading

Assessment

Passage

Computers

9th - 10th Grade

Medium

Created by

Andrew Ward

Used 5+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable in programming?

A named memory address that holds a value

A constant value that cannot be changed

A special character used in identifiers

A programming language

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an acceptable identifier for a variable?

highScore123

123score

high score

$core

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In programming, what is the process of giving a variable a value called?

Declaration

Assignment

Initialization

Execution

4.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

A constant value in a program is usually written in _______.

5.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

A variable that can be accessed throughout the program is called a ______ variable.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In some programming languages, variables can be declared and assigned a value in the same line of code. True or False?

True

False