Big Idea 2 Flashcards

1
Q

Binary

A

made up of 1s and 0s

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

Binary Digits also known as

A

bits

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

1 byte =

A

8 bits

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

Abstraction

A

remove details to make something more general. this makes it easier to use the process for multiple purposes rather than one specific purpose.

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

Converting Decimal Numbers to Binary

A

Decimal - base 10: 1, 10, 100, etc
Binary - base 2: 1, 2, 4, 8, 16, 32, etc

  1. Write down decimal number
  2. Subtract the largest binary number from that number that will not make the number negative
  3. Put a 1 in the column of the binary number subtracted and 0s in the ones not used
  4. Repeat
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How can binary numbers be represented

A

Letters
Colors (RGB)
Machine Instructions

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

Overflow Error

A

when the integer needed to be represented needs more bits than the programming language can represent

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

Round-Off Error

A

Occurs when there are very obscure decimal points.

(0.999999998 could just be 1)

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

Analog Data

A

a continuous stream of data values

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

Data Compression

A

reducing amount of space of a file

Lossless - allow original image to be restored. no data is lost, but the file size cannot be compressed as much (spot patterns in the code and replace them with shorter code)
Lossy - lose some data in the compression process. original cannot be restored, but compression is greater

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

Raw Data

A

data collected from all sorts of events. computers were made to help manage this.

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

How Computers Help Process Data

A
  • Cleaning: removing corrupt data, flagging invalid data, helps clear out abbreviations made (Rd or Road)
  • Filtering: different subsets can be identified to help ppl make meaning out of data
  • Classifying: grouping data in large datasets by commonalities
  • Bias: when data doesn’t represent all possibilities in the pool of available options
  • Patterns
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Correlation

A

correlation doesn’t mean one causes the other. just something that share similar characteristics

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

Scalability

A

ability to increase the capacity of a resource without having to go to a completely new solution, allowing the resource to continue to operate at acceptable levels when increased capacity is added.

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

Metadata

A

data that describes data:

  • Date
  • Time
  • Author
  • File Size
  • File Type
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How many more bits are available if you go from a 32 bit computer to a 64 bit one

A

2^32

17
Q

When is sampling needed

A

When converting analog data to digital data

18
Q

How many unique combination in a byte

A

256 (2^8)