Test 1 Flashcards

(58 cards)

1
Q

bit

A

binary digit w/a value of 0 or 1

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

byte

A

group of 8 bits (equivalent to one character)

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

kilobyte (KB)

A

1024 bytes, rounded down to 1000 bytes

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

megabyte (MB)

A

1 million bytes

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

gigaByte

A

1 Billion bytes

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

terabyte

A

1 trillion bytes, 1000 GB

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

petabyte

A

1 quadrillion bytes

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

exabyte

A

1 quintillion

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

RAM

A

random access memory, temporary storage, volatile memory

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

ROM

A

read only memory, permanent storage, non-volatile memory, contains programs/instructions

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

CPU

A

central processing unit, microprocessor, brain/engine of computer
Ex. Intel, AMD, TSMC

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

hardware

A

physical parts of a computer

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

software

A

instructions (programs) that tell the hardware what to do

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

algorithm

A

a finite sequence of computer implementable instructions to solve a class of problems/perform a computation

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

pixel

A

picture element

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

resolution

A

of pixels horizontally/vertically

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

cache

A

high speed storage memory

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

memory caching

A

run a program the first time, close it, run it the second time, it opens faster

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

disk caching

A

using links within a website, takes less time to go back to main website after navigating from inner link

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

operating system (OS)

A

software that supports a computer’s basic functions

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

input devices

A

keyboard, mouse, microphone, touch screen

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

output devices

A

headphones, speakers, monitors, printers

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

linux

A

good OS to know, makes you stand out

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

hackintosh

A

putting an apple OS into another machine

25
ssd
solid state drive
26
basic computer specs
cpu (central processing unit intel, m1, etc), RAM, hard drive
27
what does 0 mean in binary
off
28
what does 1 mean in binary
on
29
data compression
reduction in the amount of space needed to store a piece of data or the bandwidth to transmit it
30
lossless
data can be retrieved without loss of original info
31
lossy
some info may be lost, quality decreases
32
compression ratio
size of compressed data divided by size of original data
33
analog
data represented in a physical way, signal continually fluctuates in voltage (up and down)
34
ASCII
american standard code for info interchange, 128 unique characters, 7 bits per character
35
UNIcode mapping
corresponds with ASCII, used for foreign languages requiring other characters
36
lossless text compression techniques (3 types of encoding)
keyword encoding, run-length encoding, huffman encoding
37
KEYword encoding
compresses common words into single characters Ex. "the" becomes "-"
38
compression ratio
the total number of original characters divided by the number of characters after it is compressed
39
why is data compression important?
saves storage space (RAM), was more important in the past when vast amounts of storage were not availible
40
RRun-length encoding
replaces repeated values with a flag (*) Ex. bbbbbbbb would become *b8 these three characters take up less space than storing 8 "b's"
41
would you compress "jjj"
no, because the compressed version would take up the same amount of characters as the uncompressed version "*j3" "jjj"
42
huffman encoding
using shorter bits for more common letters like "a" and using longer bits for uncommon letters like "x" a= 00 x= 1011
43
digital signal
has only a high or low state, corresponding to the 2 binary digits
44
electronic signals
all signals degrade as they move down a line
45
stereo
electrical signal sent to each speaker (left and right)
46
a signal is digitized by...
sampling (periodically measuring the voltage), quantization (represent the voltage as a number using a finite number of bits)
47
what are some examples of audio formats
WAV, AU, AIFF, MP3
48
color pallette
colors supported by a monitor (red, green, blue)
49
raster graphics
treat image as collection of pixels (GIF, PNG, JPEG)
50
vector graphics
treat image as collection of lines and geometric objects (flash, SVG) images can be scaled big or small without losing quality, good for line art
51
BMP
bitmap, suited for compression by run-length encoding
52
GIF
graphics interchanged format, pallette of 256 colors, each pixel requires 8 or fewer bits
53
PNG
portable network graphics, greater compression w/wide range of color depths
54
JPEG
joint photographic experts group, averages hue over short distances, adjustable degree of compression
55
metadata
data about data, date and time image was created, size/resolution of image, location photo was taken, etc.
56
codec
COmpressor DECompressor, methods to shrink the size of a video to allow it to be played on a computer or over a network
57
if most of an image in 2 frames has not changed, why waste space duplicating it?
temporal compression
58
spatial compression
removing repetitive info within a frame