01 - Computer Basics | 03. Number Bases Flashcards
An overview of common number bases in computing
What are the three most commonly used number bases in computing?
- Binary
- Hexadecimal
- Decimal
What does Binary Information mean and what are the categories of it?
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:
- Binary Numbers
- Binary Data
What are binary numbers expressed as?
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.
What is the binary for each decimal 1-10?
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
What are common examples of binary data?
- Machine Code (001010101100111001010010011)
- Boolean Expressions (True or False)
- Hardware states (On or Off)
- Networking and File Storage
T/F Computers only understand two states of being?
TRUE - Being off and on represented by 0 and 1 respectively
T/F Computer hardware would be incredibly large, expensive, and resource-intensive if they were made to handle ten different states of data.
TRUE
What are the specific lengths for binary data?
ASCII and Unicode
T/F ASCII is the current international standard for characters
FALSE - The current international standard for characters is Unicode. ASCII is an older system for representing characters.
What are the specific lengths for binary data?
- Byte is 8 bits
- Word is two Bytes (16 bits)
File storage on your computer is referenced by what size?
Storage is referenced by Byte size. For example, your favorite app might be 250 MegaBytes (MB)
What does MB stand for and what is it?
Megabyte. 1 million bytes of information.
What is another way to state 1 million bytes of information?
MB - Megabyte
What is hexadecimal and what does it do?
Hexadecimal (base 16), often called “hex,” is a convenient and concise way to represent binary numbers on a computer.
What are hex numbers often used for?
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.