AP CSP BJC Units 1-3 Vocabulary

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/59

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

60 Terms

1
New cards

sprite

“actor” that can be told to do actions (walk around, speak, etc.)

2
New cards

costume

picture that can be “worn” by a sprite

3
New cards

transparency

how well you can see what’s behind the sprite (ghost effect)

4
New cards

list

ordered sequence of items

5
New cards

string

sequence of characters (letters, numbers, punctuation, etc.)

6
New cards

substring

piece of an existing string (example: “nnah”, “Hannah”, ““ for “Hannah”)

7
New cards

concatenation

connecting smaller strings to make a longer string

8
New cards

debugging

process of testing code, finding issues, and fixing the issues

9
New cards

procedure

named sequence of instructions that may take inputs and may report a value

10
New cards

reporter

oval shape; report a value

11
New cards

command

jigsaw shape; tell the computer to do something

12
New cards

predicate

hexagon shape; reporter that produces a boolean value

13
New cards

expression

constant value, or call to a reporter block including its inputs (single value)

14
New cards

algorithm

sequence of steps, usually performed by a computer

15
New cards

pseudocode

algorithm written in human language, unintelligible by computers

16
New cards

parameter

input name set in the block definition (example: number of branches)

17
New cards

argument

input value, given each time the block is run (example: 6)

18
New cards

iteration

repeating program structure

19
New cards

personally identifiable information (PII)

information that can let others figure out who you are and possibly get more information about you

20
New cards

infinite loop

when a program keeps running forever

21
New cards

code segment

sequence of connected instructions that carry out a purposeful action

22
New cards

composition

using the result/output of one reporter/function as the input to another reporter/function

23
New cards

abstraction

using a procedure to help write code

24
New cards

sequencing

process of ordering code

25
New cards

variable

labeled box that can hold one value at a time (word, costume, list, etc.)

26
New cards

local variable

variable that can only be set and used in the environment in which it is defined (inputs to procedures, variables in for or script variables)

27
New cards

global variable

variable that is usable by all scripts in the program

28
New cards

boolean value

true or false value

29
New cards

conditional

controls code based on a boolean

30
New cards

element

item in a list; has unique indexes

31
New cards

index

position number of an item in a list or string

32
New cards

sublist

list used as an item in another list

33
New cards

data type

what kind of data something is (number, list, etc.)

34
New cards

primitive data type

data type that is built into a programming language (number, text, boolean, etc.)

35
New cards

abstract data type

custom data type that is meaningful to the program

36
New cards

constructor

constructs an example of the data structure

37
New cards

selector

selects one piece of the data structure

38
New cards

data abstraction

use of abstract data types in a program

39
New cards

table

two-dimensional data structure; has rows and columns

40
New cards

traversing a list

looking at each item in a list (for each is iterative, like for, but does not use indexes)

41
New cards

domain

input type that a function accepts

42
New cards

range

output type that a function reports

43
New cards

selection

selecting which part of a program to run based on a boolean value

44
New cards

boolean function

and, or, and not functions; domain and range are boolean

45
New cards

nested conditional

conditional inside another conditional

46
New cards

string

ordered sequence of characters

47
New cards

software library

collection of procedures that can be used in a program

48
New cards

application program interface (API)

documents what a programmer needs to know about a library; description of procedures’ purposes, inputs, outputs

49
New cards

Creative Commons

specific family of copyright licenses; allow others to use, share, maybe sell, and maybe revise the work

50
New cards

free software

anyone can copy, use, modify, and redistribute, including commercially, provided that any modifications are under the same license

51
New cards

open-source software

code is available to anyone

52
New cards

open access research reports

available for free download

53
New cards

recursion

calling a procedure from inside itself

54
New cards

procedural abstraction

developing a program by dividing a larger problem into sub-problems

55
New cards

modularity

form of procedural abstraction; breaking a problem into smaller problems

56
New cards

input (program)

information entered into a program by the user

57
New cards

output (program)

data sent by the program

58
New cards

higher-order function

function that takes a function as an input or reports a function as an output

59
New cards

sprite variable

variable that only works within a specific sprite

60
New cards

artificial intelligence

field of computer science loosely defined as "trying to get computers to think”