APSCP unit 3 vocab for Exams

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
GameKnowt Play
New
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/38

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

39 Terms

1
New cards

string

a linear sequence of characters, words, or other data

2
New cards

dichotomous

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

3
New cards

binary code

code represented with the two symbols of 1 and 0

4
New cards

bits

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

5
New cards

digital

how information is stored, accessed, transformed and used by computers

6
New cards

state space

the space of potential possibilities

7
New cards

exponential growth

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

8
New cards

fixed-point numbers

numbers where the decimal point is always in the same place.

9
New cards

floating-point numbers

numbers where the decimal point can float because there is no fixed number of digits before and after the decimal point. AKA: real numbers

10
New cards

real numbers

numbers approximated by floating-point representations that do not necessarily have infinite precision.

11
New cards

scientific notation

the mathematical representation of a decimal number in floating-point form. examples: 4 x 10³ for 4,000, 4.002 x 10³x 10 for 4,002 or 2.345E6 for 2,345,000.

12
New cards

binary code

code represented with the two symbols of 1 and 0.

13
New cards

decimal

describes the base-10 number system. The most commonly used number system.

14
New cards

ASCII (American Standard Code for Information Interchange)

a table that outlines a common set of conventions established for converting between binary values and alphanumeric (represents 128 different characters)

15
New cards

alphanumeric

the characters that consist of uppercase and lowercase letters in addition to numerals 0-9.

16
New cards

digital noise

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

17
New cards

abstraction

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

18
New cards

bit string

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

19
New cards

mapping

associating each element of a given set with one or more elements of a second set.

20
New cards

data

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

21
New cards

unicode

a binary encoding system that can represent much more of the world's text than ASCII can (represents 65,536 different characters)

22
New cards

Morse Code

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

23
New cards

Baudot Code

a binary code invented by Emile Baudot in 1870 that uses crosses and dots in order to encode 2^5 or 32 characters.

24
New cards

variable-width encoding

using codes of different lengths to encode a character set for representation (example: Morse Code)

25
New cards

fixed-width encoding

using codes with a fixed width to encode a character set for representation (example: Baudot Code)

26
New cards

discrete

separate or divided (digital)

27
New cards

continuous

unbroken, without interruption (analog)

28
New cards

approximation

digital copies are only approximations of the natural object.

29
New cards

analog

non-digital signals or information represented by a continuously variable

30
New cards

physical quantity such as spatial position or voltage.

31
New cards

list

A list is an ordered sequence of elements. For example, [value1, value2, value3, …] describes a list where value1 is the first element, value 2 is the second element, value 3 is the third element, and so on.

32
New cards

element

An element is an individual value in a list that is assigned a unique index.

33
New cards

data structure

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

34
New cards

data abstraction

help manage complexity in programs by giving a collection of data a name without referencing the specific details of the representation.

35
New cards

output

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

36
New cards

join

the "join" block in Scratch concatenates, or links two values together. Example: "hello" and "there" would result in "hellothere".

37
New cards

linear search

a method for finding a target value within a list (whether presorted or not) by checking each value until a match is found or until all the elements have been searched.

38
New cards

procedure

a group of blocks that are combined to perform a specific task.

39
New cards

substring

a subset of a string of alphanumeric fields or variables.