AP CSP Unit 3 Vocabulary (copy)

5.0(1)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/33

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

34 Terms

1
New cards

procedure

a named collection of steps in an algorithm that can be reused anytime it is needed without restating the detailed steps (abstraction)

2
New cards

concatenation

chaining together or placing two or more separate things side by side so that they are treated as one.

3
New cards

string

a linear sequence of characters, words, or other data

4
New cards

dichotomous

in which something can only be one thing or another (yes or no)

5
New cards

binary code

code represented with the two symbols of 1 and 0

6
New cards

bits

the foundation for digital computing (1s and 0s) - short for binary digits

7
New cards

digital

electronic technology that generates, stores and processes data in 0s and 1s.

8
New cards

state space

the space of potential possibilities

9
New cards

exponential growth

the rate of growth that rapidly increases in proportion to the growing total number or size

10
New cards

ASCII (American Standard Code for Information Interchange)

a table that outlines a common set of conventions for converting between binary values and alphanumeric characters

11
New cards

alphanumeric

the characters that consist of uppercase and lowercase letters and numerals 0-9

12
New cards

digital noise

irrelevant or meaningless data that has found its way into otherwise meaningful code

13
New cards

abstraction

the process of removing or suppressing details to create a manageable level of complexity

14
New cards

bit string

a sequence of bits that can be used to represent sets or manipulate binary data

15
New cards

mapping

the process of connecting a data field from one source to a data field in another source.

16
New cards

data

characters, symbols, or quantities on which operations are performed, stored, and/or transmitted by a computer

17
New cards

unicode

a binary encoding system representing much more of the world's text than ASCII (represents 65,536 different characters, including of different languages)

18
New cards

Morse Code

a code where letters are represented by combinations of long and short signals of light or sound

19
New cards

Baudot Code

a binary code invented by Emile (lastName) in 1870 that encodes 32 characters. It uses dots and crosses to represent binary characters in telegraphy.

20
New cards

variable-width

using codes of different lengths to encode a character set (e.g., Morse Code)

21
New cards

fixed-width

a flat data file in which each variable is represented by a pre-determined number of characters (Baudot Code).

22
New cards

discrete

separate or divided (digital)

23
New cards

continuous

unbroken, without interruption (analog)

24
New cards

approximation

methods that trade small losses in the quality of results for significant gains in performance and efficiency.

25
New cards

analog

non-digital signals represented by a continuously variable physical quantity

26
New cards

list

a data structure (also called an array) that stores multiple pieces of information at once

27
New cards

data structure

a particular way of organizing and storing data, such as an array or table

28
New cards

index value

the representation of where each item in a list is located

29
New cards

output

observable behaviors generated by the computer, such as animation, sound, and text

30
New cards

join

a block in Scratch that concatenates or links two values together

31
New cards

linear search

a method for finding a target value within a list by checking each value until a match is found or all elements are searched

32
New cards

substring

a subset of a string of alphanumeric fields or variables

33
New cards

encoding

convert (information or an instruction) into a particular form.

34
New cards

linear search

Each item in an array is visited and checked against the search term. This is done until the item is found or the end of the array is reached.