AP CSP Vocab Flashcards

1
Q

costumes

A

something that can be “worn” by a sprite.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

sprite

A

an actor on the stage who knows how to do many different things, such as walk around the stage and speak the lines of the play. in comp sci context a object you control with code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

transparency

A

how much you can see what’s behind an image.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

list

A

an ordered sequence of items.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

string

A

a sequence of characters (letters, digits, punctuation, etc.).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

substring

A

a piece of some existing string.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

concatenate

A

to make a bigger string by connecting two or more smaller strings.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

debugging

A

The process of testing, finding problems, and fixing code issues

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

procedure

A

a named sequence of instructions that may take inputs and may report a value. also can be known as methods or functions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Reporters

A

type of procedure that reports a value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Commands

A

type of procedure that tells the computer to do something without reporting a value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

expression

A

either a constant value (such as “4” or “winter”) or a call to a reporter block including its inputs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

value

A

can be a number, a string, a sprite, a costume, a script, a list—anything).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

algorithm

A

a sequence of steps that are usually performed by a computer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

pseudocode

A

an algorithm written in human language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

parameter

A

the input name, such as number of branches.

16
Q

argument

A

the input value, such as 6 for a hexagonal pinwheel.

17
Q

iteration

A

a repeating program structure that is looping or in repetition

18
Q

Personally identifiable information (PII)

A

information that can let others figure out who you are and possibly get more information like your Social Security number, age, race, phone number(s), medical information, financial information, or biometric data (such as your thumbprint or face scan).

19
Q

infinite loop

A

When a program keeps running forever

20
Q

code segment

A

a sequence of connected instructions that carry out a purposeful action. instructions in the code segment are carried out in order, from top to bottom.