Module 2 Flashcards

1
Q

What is a bit?

A

A single 0 or 1 is called a bit

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

What is a byte?

A

Eight bits, like 11000101, are called a byte

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

How do you convert binary to decimal?

A

List the powers of two from right to left. Write the digits of the binary number below their corresponding powers. Add them up.

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

What is ASCII?

A

ASCII (American Standard Code for Information Interchange) is a character encoding format that represents text in computers and other devices

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

What is unicode?

A

Unicode is a universal character encoding standard where each letter, digit, or symbol is assigned a unique numeric value

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

What is 1 kilobit or 1 Kb?

A

2^10 or 1024

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

What is 1 megabit or 1 Mb?

A

2^20 or 1048576

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

What is 1 gigabit or 1 Gb?

A

2^30 or 1073741824

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

What is hexadecimal?

A

Base 16, it goes from 0 to F

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

What is Octal?

A

Base 8, it goes from 0 to 7

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

What is unsigned binary numbers?

A

Positive numbers (no arithmetic signs)

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

What is Overflow?

A

Overflow occurs when the result of a binary operation is too large to fit in allowed number of bits

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

What are Logical Gates?

A

A logic gate (or just gate) is a transistor circuit that implements a logic function

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

What is a NOT gate?

A

A NOT gate is called an inverter. It does the opposite, e.g if input is 0, NOT outputs 1.

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

What is a AND gate?

A

An AND gate outputs 1 only if both the gate’s inputs are 1’s. If one or both inputs is 0, the AND gate outputs 0.

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

What is an OR gate?

A

An OR gate outputs 1 if either, or both, of the gate’s inputs is a 1. If both inputs are 0, the OR gate outputs 0.

17
Q

What is JPEG

A

JEPG is a compression standard

18
Q

What is Video

A

A compression standard in the format of MP4

19
Q

What is resolution?

A

Resolution is the number of pixels per row and the number of rows of pixels

20
Q

What is audio

A

Audio, or sound, is the vibration of air molecules that human ears can detect.

21
Q

What is an analog signal

A

Analog means the signal changes continuously over time

22
Q

What is a digital signal

A

It’s a signal that has been encoded into a digital format, which can be stored and processed by computers and other digital devices. (1s and 0s)

23
Q

What is WAV

A

WAV is a common uncompressed audio format, primarily for Microsoft Windows PCs

24
Q

What is bit depth

A

Audio value is stored using a fixed number of bits, known as bit depth, commonly 16 or 24 bits.

25
What is Zettabyte
is one sextillion or 10^21 bytes
26
What is Data visualization
Data visualization is the display of data in a format, such as a table or chart, that seeks to achieve a goal of conveying particular information to a viewer
27
What is Cardinality
Cardinality is the number of unique elements in a dataset
28
What is a spreadsheet
A spreadsheet is useful for representing data tables, calculating data using equations, and creating charts for data.
29
What is compression
Compression reduces the size of a file
30
How to convert from Binary to Hex?
Memorize 100, 1, 10 , 11 then 100 again, it's 4 digits long
31
How to convert from Hex to Decimal?
Each letter or number represents a value in binary. Multiply that number by 16 to the power of it's index and add them all up. FFF = 15*16^ + 15*16^1 + 15*16^0 = 4095
32
How to convert from Decimal to hex
Divide the value by 16 and record the remainder. Divide the resulting quotient by 16 and record the remainder. Do this until the quotient is 0 and then starting from the bottom is your number.
33
How to convert Binary to Octal
Same as Binary to Hex but it goes from 0 to 7 and only 3 digits.
34
What is a synthesizer
A synthesizer is an electronic musical instrument that generates digital audio signals
35