APCSP 1st 9 weeks exam

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

1/21

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.

22 Terms

1
New cards

Overflow Error

an error that occurs when calculated data cannot fit within the designated field.  

2
New cards

Roundoff Error

error that is produced when a computer is used to perform real number calculations because many real numbers can not be represented exactly on a computer. 

3
New cards

Underflow Error

 occurs in a computer or similar device when a mathematical operation results in a number which is smaller than what the device is capable of storing. 

4
New cards

Heuristic

a problem solving approach (algorithm) to find a satisfactory solution where finding an optimal or exact solution is impractical or impossible.

5
New cards

Lossless Compression

a data compression algorithm that allows the original data to be perfectly reconstructed from the compressed data.

6
New cards

Lossy Compression

a data encoding and compression technique that deliberately discards some data in the compression process

7
New cards

Bit

(short for binary digit) is the smallest unit of data in a computer. A bit has a single binary value, either 0 or 1

8
New cards

Byte

 a unit of data that is eight binary digits long. Bytes are often used to represent a character such as a letter, number, space

9
New cards

Binary

a numbering scheme in which there are only two possible values for each digit: 0 and 1.

10
New cards

Bandwidth

the maximum amount of data that can be sent in a fixed amount of time, usually measured in bits per second.

11
New cards

URL

 uniform resource locator

12
New cards

Packet

a small chunk of any kind of data: text, numbers, lists, etc

13
New cards

Redundant

There are multiple pathways among the physical connections of the Internet to create redundancy. Even if one pathway is unavailable, there is still another way to transmit a message from sender to receiver (as shown right).

14
New cards

Expression

a combination of operators and values that evaluates to a single value.

15
New cards

Variable

 an abstraction inside the program that can hold a value. Each variable has associated data storage that represents one value at a time.

16
New cards

Assignment operator

allows a program to change the value represented by a variable.

17
New cards

Increment

add one to a number

18
New cards

Assignment

storing or updating a value in a named variable

19
New cards

Statement

a line of executable code

20
New cards

Sequential

execution of an algorithm or program, step by step, from top to bottom, where one line of code finishes before the one below it begins. One of the 3 fundamental algorithms or programming structures.

21
New cards

Operators

are used to script math equations and string handling

22
New cards

Iteration

the fundamental program structure that repeats an algorithm for a purpose - either a set number of times or until a condition is met. One of the 3 fundamental algorithm or programming structures.