01 - Computer Basics | 03. Number Bases Flashcards

An overview of common number bases in computing

1
Q

What are the three most commonly used number bases in computing?

A
  1. Binary
  2. Hexadecimal
  3. Decimal
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does Binary Information mean and what are the categories of it?

A

Binary information is defined as relating to, composed of, or involving two things. What we, as computer scientists, understand as examples of binary can be broken into two distinct categories:

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

What are binary numbers expressed as?

A

Binary numbers are expressed as a combination of 0s and 1s. For example, 100110 is the binary equivalent of the number 38. Binary numbers are expressed using a base of two.

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

What is the binary for each decimal 1-10?

A

Decimal 1 is Binary 1
Decimal 2 is Binary 10
Decimal 3 is Binary 11
Decimal 4 is Binary 100
Decimal 5 is Binary 101
Decimal 6 is Binary 1110
Decimal 7 is Binary 1111
Decimal 8 is Binary 1000
Decimal 9 is Binary 1001
Decimal 10 is Binary 1010

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

What are common examples of binary data?

A
  1. Machine Code (001010101100111001010010011)
  2. Boolean Expressions (True or False)
  3. Hardware states (On or Off)
  4. Networking and File Storage
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

T/F Computers only understand two states of being?

A

TRUE - Being off and on represented by 0 and 1 respectively

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

T/F Computer hardware would be incredibly large, expensive, and resource-intensive if they were made to handle ten different states of data.

A

TRUE

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

What are the specific lengths for binary data?

A

ASCII and Unicode

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

T/F ASCII is the current international standard for characters

A

FALSE - The current international standard for characters is Unicode. ASCII is an older system for representing characters.

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

What are the specific lengths for binary data?

A
  • Byte is 8 bits
  • Word is two Bytes (16 bits)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

File storage on your computer is referenced by what size?

A

Storage is referenced by Byte size. For example, your favorite app might be 250 MegaBytes (MB)

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

What does MB stand for and what is it?

A

Megabyte. 1 million bytes of information.

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

What is another way to state 1 million bytes of information?

A

MB - Megabyte

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

What is hexadecimal and what does it do?

A

Hexadecimal (base 16), often called “hex,” is a convenient and concise way to represent binary numbers on a computer.

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

What are hex numbers often used for?

A

Hex numbers are often used for values like colors and any other place where we need to represent bits more space efficiently. They are also commonly used to represent memory addresses.

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

Every four binary digits can become a single _________________?

A

Hexadecimal digit

16
Q

What are the 16 numerals for the decimal to hexadecimal conversion?

A

Decimal 1 is Hexadecimal 1
Decimal 2 is Hexadecimal 2
Decimal 3 is Hexadecimal 3
Decimal 4 is Hexadecimal 4
Decimal 5 is Hexadecimal 5
Decimal 6 is Hexadecimal 6
Decimal 7 is Hexadecimal 7
Decimal 8 is Hexadecimal 8
Decimal 9 is Hexadecimal 9
Decimal 10 is Hexadecimal A
Decimal 11 is Hexadecimal B
Decimal 12 is Hexadecimal C
Decimal 13 is Hexadecimal D
Decimal 14 is Hexadecimal E
Decimal 15 is Hexadecimal F

17
Q

Binary numbers are expressed in base number 2 which means? Where are they found?

A

Binary numbers are expressed in base 2, meaning they are represented using only the values 1 and 0. Binary data can be found in computing in areas such as machine code and boolean expressions.

18
Q

Hexadecimal numbers are expressed in base number 16 which means? Where are they found?

A

Hexadecimal numbers are expressed in base 16. They are represented using a combination of decimal numbers 0-9 as well as letters A-F. Hexadecimal numbers can be found in memory addresses as well as colors.