Unit 2 Data Flashcards

(61 cards)

1
Q

shorthand for a single binary digit and is either 0 or 1

A

bit

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

8 bits

A

byte

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

_________ can be used to represent all __________; anything stored on a computer

A

binary sequences, digital data

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

6 bits

A

pixel

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

________ are grouped to represent _________. ——— the process of simplifying complex information by focusing on essential details while hiding or ignoring irrelevant ones

A

bits, abstractions

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

Abstractions help reference a prior set of directions to repeat the same outcome without having to _______________

A

rewrite the same code

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

_________ contain the most abstractions

A

high level languages

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

___________ values that change smoothly over time; rather than in discrete intervals; continuous

A

analog signal

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

_______ an analog single that has been broken up into steps; discrete

A

digital signal

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

________ can approximate analog data by using __________

A

digital data, samples

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

________ measuring values of the analog signal at regular intervals; are measured to find out the bits required

A

sample

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

smaller sample rate -» ______________

A

more accurately the digital represents the analog signal

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

________ an abstraction inside a program that can hold a value

A

variable

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

__________ not large enough to store data

A

overflow error

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

the size of numbers is only limited to the size of the computer’s _________-

A

memory

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

How to convert BIN to DEC?

A
  1. write out 1, 2, 4, 8, 16, 32, 64, 128
  2. put the digits below
  3. multiply the digits below
  4. add all
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

How to convert DEC to BIN?

A
  1. write out 1, 2, 4, 8, 16, 32, 64, 128
  2. go until you can subtract
    ex: if 14-16 then put a zero
  3. put a zero on those that cannot subtract and a 1 for those that can
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

_______ occurs when DEC are rounded. ex: 1/3 does not equal 0.33

A

roundoff error

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

________ reducing the size (# of bits) of transmitted or stored data.

fewer bits DOES NOT EQUAL less info

A

data compression

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

Charateristics of Lossy Data

A
  • significantly reduced
  • decreases resolution
  • not recover the original file
  • data will be lost
  • better for storage and transmissions
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Characteristics of Lossless Data

A
  • not data lost
  • original file can be produced without loss
  • can be difficult to store, transfer, handle
  • used in situations where the ability to fully reconstruct is important
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Data set challenges regardless of size:
- ______
- _______
- ________
- the need to combine data sources

A

need to clean data
incomplete data
invalid data

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

_________ uses historical data to predict; uses information collected from big data to influence our daily lives
ex: social media uses patterns to target advertising

A

predicting algorithms

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

content of data may contain __________. Identity theft is becoming very common
_______ when people are tricked into sharing personal info

A

personal information, phishing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
_______ data that describes your data; changing this does not change the primary data. ex: location, time, filename
metadata
26
meta data is used to increase the _______________
effective use of data by providing additional info
27
_______ a repeated process, how computer code is processed
iterative
28
combining data sources is part of the process of using computers to process info. if there is not enough _________ it will not be able to run the program; with ________ ------- is a factor.
memory, large data
29
___________ are more susceptible to attackers because there are a lot of ways in
large data sets
30
________ serves to protect data.
encryption
31
formula to find max numbers: formula to find largest number: IF NUMBER IS LARGER THEN IT WILL RESULT IN AN OVERFLOW ERROR
2^x 2^x-1 x = number of bits
32
_________ allow each object to be given certain properties
parameters
33
__________ need to work with low level languages because the computer can only understand ____________
high-level, binary
34
a computer can be a high level abstraction for all the parts that encompass it. ________ an electric of physical signal that varies continuously over time, representing some other quantity
analog signal
35
A computer can only function from _____________. _________ - a signal that can represent an analog signal at discrete(individually) amplitudes
digital data, digital signal
36
What does the binary search algorithm start with?
The middle of a sorted data set of numbers or strings in alphabetical order
37
What does the binary search algorithm eliminate?
Half of the data
38
What is required for the binary search algorithm to work?
Data must be in sorted order
39
How does binary search compare to sequential linear search?
Binary search is often more efficient when applied to sorted data
40
What are the lowest level components of any value in binary?
Bits
41
What values do bits represent in binary?
0 and 1
42
How many bits are in one byte?
8 bits
43
What is the range of values that can be represented in 8 bits?
0-255
44
What is the binary representation of the decimal number 204?
11001100
45
What is the decimal number system range?
0-9
46
What process is used to convert decimal to binary?
List the numbers from right to left and subtract accordingly
47
What is the purpose of data compression?
To reduce the size (number of bits) of transmitted or stored data
48
Does fewer bits always mean less information?
No
49
What are the two types of data compression algorithms?
* Lossless * Lossy
50
What does lossless data compression guarantee?
Complete reconstruction of the original data
51
What does lossy data compression allow?
Reconstruction of an approximation of the original data
52
What are metadata?
Data about data
53
Give an example of metadata.
Date of creation or file size of an image
54
What does cleaning data involve?
Making the data uniform without changing their meaning
55
What is scalability in the context of data?
The ability to change in size
56
Why are large data sets difficult to process?
They may contain overlapping names/data
57
What is a common problem caused by the type or source of data collected?
Bias
58
in situations where quality or ability to reconstruct the original is maximally important _____________ is chosen
lossless compression
59
in situations where minimizing data size or transmission time is maximally important, ____________ is chosen
lossy compression
60
A correlation found in data does not necessarily indicate a relationship. _______ is needed to understand the exact nature of the relationship
additional research
61
the process of accessing each item in a list one at a time
traversal