Flashcard on Programming Concepts

Flashcard on Programming Concepts

Assessment

Flashcard

Computers

10th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

A(n) ____________________ statement stops executing a loop and begins executing the code after the loop.

Back

break

2.

FLASHCARD QUESTION

Front

A variable declared inside of a function is a(n) ____________________ variable.

Back

local

3.

FLASHCARD QUESTION

Front

A(n) ____________________ is passed into a function as input to use in the function.

Back

parameter

4.

FLASHCARD QUESTION

Front

____________________ loops are used to repeat code a specific number of times.

Back

for

5.

FLASHCARD QUESTION

Front

A(n) ____________________ statement is used to send information from a function back to the program.

Back

return

6.

FLASHCARD QUESTION

Front

____________________ can be used to break a problem down into smaller parts.

Back

decomposition

7.

FLASHCARD QUESTION

Front

____________________ loops are used to repeat code as long as a specific condition is true.

Back

while

8.

FLASHCARD QUESTION

Front

A(n) ____________________ is helpful to explain code in natural language.

Back

comment

9.

FLASHCARD QUESTION

Front

A(n) ____________________ statement is used to conditionally execute a block of code.

Back

if