Comp Sci Unit 1

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/27

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.

28 Terms

1
New cards

Binary Definition

A way of representing information using only two options

2
New cards

Overflow Error Definition

Error from attempting to represent a number that is too large

3
New cards

Round-off Error Definition

Error from attempting to represent a number that is too precise. The value is rounded.

4
New cards

Analog Data Def

Data with values that change continuously, or smoothly, over time. Some examples of analog data include music, colors of a painting, or position of a sprinter during a race

5
New cards

Digital Data Def

Data that changes discretely through a finite set of possible values

6
New cards

Sampling Def

A process for creating a digital representation of analog data by measuring the analog data at regular intervals called samples.

7
New cards

Lossless Compression

A process for reducing the number of bits needed to represent something without losing any information. This process is reversible.

8
New cards

Lossy Compression

A process for reducing the number of bits needed to represent something in which some information is lost or thrown away. This process is not reversible.

9
New cards

Intellectual Property

A work or invention that is the result of creativity, such as a piece of writing or a design, to which one has rights and for which one may apply for a patent, copyright, trademark, etc.

10
New cards

What would be the next binary number for 11?

100

11
New cards

How many bits do a single yes or no questions require?

1 bits

12
New cards

How many bits do 3 yes or no questions require?

3 bits

13
New cards

How many distinct values can a 2 bit sequence make?

4 (2²)

14
New cards

How do you find how many distinct values can a sequence can make?

2# where # is the amount of bits in a sequence

15
New cards

What formula do you use to find the max value?

2#-1

16
New cards

How many bits are in a byte?

8

17
New cards

Computers cannot store a piece of data smaller than a ___?

Byte

18
New cards

How many is Kilo?

Thousand or 10³

19
New cards

How many is Mega?

Million or 106

20
New cards

2³ = ?

8

21
New cards

24 = ?

16

22
New cards

25 = ?

32

23
New cards

26 = ?

64

24
New cards

27 = ?

128

25
New cards

28 = ?

256

26
New cards

Method for finding binary numbers?

  1. Go down the list of 2# and see if your number is greater than it

  2. go down the list until that isn’t true

  3. Add up until it’s your number

27
New cards

Any pattern the ends with 1 will be…

odd

28
New cards

What types of data is stored using bits?

All data will be stored using bits