Learn Python, Microsoft 365 and Google Workspace
Connect with me: Youtube | LinkedIn | WhatsApp Channel | Web | Facebook | Twitter
To access the updated handouts, please click on the following link: https://yasirbhutta.github.io/computer-basics/docs/number-systems.html
A bit is the smallest unit of information in a computer. It can be either 0 or 1. Bits are used to represent all of the data that is stored and processed on a computer, including text, images, audio, and video.
Module 12: Boolean Operations
Boolean operations are used to manipulate bits. The two most common Boolean operations are AND and OR. The AND operation returns 1 if both bits are 1, and 0 otherwise. The OR operation returns 1 if either bit is 1, and 0 otherwise.
Module 13: Hexadecimal Notation
Hexadecimal notation is a way of representing numbers using 16 symbols instead of 10. The hexadecimal symbols are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F.
Module 14: Storing a Bit
Bits are stored in memory using electrical charges. A bit is stored as a high voltage if it is a 1, and a low voltage if it is a 0.
Bits are used in a variety of ways in computers. For example, bits are used to:
Represent text characters: Each character in the English alphabet is represented by a unique sequence of bits. Represent images: Images are represented by a grid of pixels. Each pixel is represented by a combination of red, green, and blue bits. Represent audio: Audio is represented by a series of samples. Each sample is represented by a combination of bits. Represent video: Video is represented by a series of images. Each image is represented by a grid of pixels. Each pixel is represented by a combination of red, green, and blue bits. Examples of bits in use
Here are some examples of how bits are used in the real world:
Sr. No. | Units | Abbr. | Description | Approximate Size |
---|---|---|---|---|
1 | Bit | Computer works with binary digits in 0’s and 1’s form. A binary digit is called bit. | ||
2 | Nibble | 4 bit | ||
3 | Byte | 8 bit (Store single character) | 1 character | |
4 | Kilobyte | KB | 1024 Bytes | 1 page |
5 | Megabyte | MB | 1024 KB (1 millon bytes) | 1000 pages |
6 | Gigabyte | GB | 1024 MB(1 billion bytes) | 1 million pages |
7 | Terabyte | TB | 1024 GB(1 trillion bytes) | 1 billion pages |
A bit pattern is a sequence of bits, which are the smallest unit of data in computing. A bit can have two values: 0 or 1. Bit patterns are used to represent all kinds of data, including numbers, letters, symbols, and images.
Bit patterns can be of any length, but they are typically represented as strings of binary digits. For example, the bit pattern “01000001” represents the letter “A” in ASCII code. [^1]
Bit patterns are used in a wide variety of computing applications. For example, they are used to store and transmit data, to encode and decode information, and to perform mathematical and logical operations.
Image source: engineersgarage.com
Here are some examples of bit patterns:
Bit patterns are a powerful tool for representing and manipulating information in computing.
Each ASCII character is assigned a unique code. For example, the ASCII code for the letter “A” is 65. The ASCII code for the space character is 32.
For example, to convert the letter “A” to binary code, you would follow these steps:
The following table shows some common ASCII characters and their binary codes:
Character | ASCII Code | Binary Code |
---|---|---|
A | 65 | 1000001 |
B | 66 | 1000010 |
C | 67 | 1000011 |
… | … | … |
Z | 90 | 1011010 |
0 | 48 | 110000 |
1 | 49 | 110001 |
2 | 50 | 110010 |
… | … | … |
9 | 57 | 111001 |
space | 32 | 100000 |
! | 33 | 100001 |
” | 34 | 100010 |
# | 35 | 100011 |
… | … | … |
~ | 126 | 1111110 |
click on the following link to view complete table: ASCII, decimal, hexadecimal, octal, and binary conversion table - IBM
Convert decimal code to binary code:
For example, to convert the decimal number 10 to binary code, we would do the following:
10 / 2 = 5 Remainder: 0 (bit #1)
5 / 2 = 2 Remainder: 1 (bit #2)
2 / 2 = 1 Remainder: 0 (bit #3)
1 / 2 = 0 Remainder: 1 (bit #4)
So, 10 (decimal) = 1010 (binary)
Another example, to convert the decimal number 15 to binary code
Division by 2 |
Quotient | Remainder |
(Digit) | Bit # | |||
---|---|---|---|---|
(15)/2 | 7 | 1 | 0 | |
(7)/2 | 3 | 1 | 1 | |
(3)/2 | 1 | 1 | 2 | |
(1)/2 | 0 | 1 | 3 |
So, 15 (decimal) = 1111 (binary)
click on the following link to covert decimal to binary: https://www.rapidtables.com/convert/number/decimal-to-binary.html
How to convert a binary number to decimal step by step with an example:
Method 1: Using place values and powers of 2
1. Identify the binary number: Let’s use the binary number 1101 as an example.
2. Understand place values: In binary, each digit represents a power of 2. Starting from the rightmost digit, the powers of 2 increase as you move left (2^0, 2^1, 2^2, and so on).
3. Assign values based on position:
4. Multiply and sum:
Steps applied to the example:
Binary number: 1101
5. Sum the products: 1 (rightmost) + 0 + 4 + 8 = 13 (decimal)
Therefore, 1101 (binary) is equal to 13 (decimal).
See also:
Boolean expressions are expressions that use Boolean operations to combine bits. Boolean expressions can be used to perform simple calculations on bits, such as checking if two bits are both equal to 1, or checking if a bit is equal to 0.
Truth tables are a way of representing the output of a Boolean expression for all possible combinations of inputs. Truth tables can be used to verify that a Boolean expression works as expected.
Example: Let’s create a truth table for the expression A AND B:
A | B | A AND B |
---|---|---|
0 | 0 | 0 |
0 | 1 | 0 |
1 | 0 | 0 |
1 | 1 | 1 |
In this example:
Example: Let’s create a truth table for the expression A OR B:
A | B | A OR B |
---|---|---|
0 | 0 | 0 |
0 | 1 | 1 |
1 | 0 | 1 |
1 | 1 | 1 |
In this example:
Here are some examples of Boolean expressions:
A AND B
: This expression returns 1 if both bits A and B are equal to 1, and 0 otherwise.A OR B
: This expression returns 1 if either bit A or bit B is equal to 1, and 0 otherwise.NOT A
: This expression returns the opposite of bit A.(A AND B) OR C
: This expression returns 1 if either A AND B is equal to 1, or C is equal to 1, and 0 otherwise.Boolean operations are used in a variety of applications, including:
Hexadecimal notation is a way of representing numbers using 16 symbols instead of 10. The hexadecimal symbols are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, and F.
Hexadecimal notation is a more compact way of representing binary numbers. For example, the binary number 1010101010101010 can be represented as the hexadecimal number 0xAAAA.
Hex | Binary |
---|---|
0 | 0000 |
1 | 0001 |
2 | 0010 |
3 | 0011 |
4 | 0100 |
5 | 0101 |
6 | 0110 |
7 | 0111 |
8 | 1000 |
9 | 1001 |
A | 1010 |
B | 1011 |
C | 1100 |
D | 1101 |
E | 1110 |
F | 1111 |
To convert a hexadecimal number to binary, simply replace each hexadecimal digit with its corresponding binary equivalent. For example, to convert the hexadecimal number 0xAAAA to binary, we would replace the A digits with the binary number 1010, and we would replace the F digits with the binary number 1111. This would give us the binary number 1010101010101010.
To convert a binary number to hexadecimal, simply group the binary digits into groups of four. Then, replace each group of four binary digits with its corresponding hexadecimal digit. For example, to convert the binary number 1010101010101010 to hexadecimal, we would group the binary digits into groups of four:
1010 1010 1010 1010
Then, we would replace each group of four binary digits with its corresponding hexadecimal digit:
AAAA
This would give us the hexadecimal number 0xAAAA.
How to convert hex to binary:
Another example, to convert hexadecimal number 1E
to binary:
How to convert hexadecimal to decimal step by step with an example:
Steps:
Identify the hexadecimal number: Let’s use D3A5 (hex) as an example.
Therefore, D3A5 (hex) is equal to 54,181 (decimal).
1A3
to DecimalWrite Down the Hex Number:
For example, let’s say the hex number is 1A3.
1A3 → 1 × 16² + A × 16¹ + 3 × 16⁰
1 × 16² + 10 × 16¹ + 3 × 16⁰
16² = 256, 16¹ = 16, 16⁰ = 1
1 × 256 = 256
10 × 16 = 160
3 × 1 = 3
256 + 160 + 3 = 419
Hexadecimal 1A3
= Decimal 419
2F4
to Decimal2F4
2 × 16² + F × 16¹ + 4 × 16⁰
F
= 15
2 × 16² + 15 × 16¹ + 4 × 16⁰
16² = 256, 16¹ = 16, 16⁰ = 1
2 × 256 = 512
15 × 16 = 240
4 × 1 = 4
512 + 240 + 4 = 756
Hexadecimal 2F4
= Decimal 756
Hexadecimal notation is used in a variety of applications, including:
Bits are stored in memory using electrical charges. A bit is stored as a high voltage if it is a 1, and a low voltage if it is a 0.
There are two main types of memory in a computer: RAM and ROM. RAM stands for random-access memory. RAM is used to store data that is currently being used by the computer. ROM stands for read-only memory. ROM is used to store data that is permanent, such as the computer’s BIOS.
RAM:
RAM is made up of millions or even billions of tiny transistors. Each transistor can store a single bit of data. The transistors are arranged in a grid, and each transistor is addressed by a unique address.
When the computer needs to access a bit of data in RAM, it sends the address of the bit to the memory controller. The memory controller then sends a signal to the transistor at that address. The transistor then switches to the appropriate state (high voltage or low voltage) to represent the bit of data.
ROM:
ROM is made up of a series of interconnected cells. Each cell can store a single bit of data. The cells are arranged in a grid, and each cell is addressed by a unique address.
When the computer needs to access a bit of data in ROM, it sends the address of the bit to the memory controller. The memory controller then sends a signal to the cell at that address. The cell then reads the bit of data and sends it back to the memory controller.
A binary digit is also known as a ___.
Answer: Bit
In Boolean operations, the ___ operation returns 1 if either bit is 1.
Answer: OR
The ASCII code for the letter “A” is ___ in decimal.
Answer: 65
The binary equivalent of the decimal number 10 is ___.
Answer: 1010
A ___ consists of 1024 megabytes.
Answer: Gigabyte
A bit pattern is a sequence of ___ used to represent data.
Answer: Bits
To convert a binary number to decimal, multiply each bit by its corresponding power of ___ and sum the results.
Answer: 2
Answer Key (Fill in the Blanks):
A bit can have only two values: 0 or 1.
True
Hexadecimal notation uses 10 symbols to represent numbers.
False (It uses 16 symbols.)
Boolean expressions are used to perform logical operations on bits.
True
ASCII code represents each character with a unique 16-bit binary code.
False (It uses a 7-bit or 8-bit binary code.)
In binary to decimal conversion, each digit in the binary number represents a power of 10.
False (It represents a power of 2.)
What does ASCII stand for?
What is the ASCII code for the letter “A”?
How would you convert the letter “B” to binary code using ASCII?
Which unit of measurement is typically used to measure the storage capacity of a hard drive?
What is the relationship between a kilobit (Kb) and a kilobyte (KB)?
Which of the following is the largest unit of data storage?
Which unit is commonly used to measure the speed of data transfer?
Which of the following is equivalent to 1024 gigabytes?
1 megabyte (MB)
Answer:
The binary number ( 11111111_2 ) can be converted to decimal as follows:
Each digit in the binary number represents a power of 2, starting from the rightmost digit (the least significant bit):
[
11111111_2 = (1 \times 2^7) + (1 \times 2^6) + (1 \times 2^5) + (1 \times 2^4) + (1 \times 2^3) + (1 \times 2^2) + (1 \times 2^1) + (1 \times 2^0)
]
[
= 128 + 64 + 32 + 16 + 8 + 4 + 2 + 1
]
[
= 255
]
Why is this significant in computer systems?
The value ( 255 ) is the largest number that can be represented using an 8-bit binary number, which is often referred to as a byte. It is significant because bytes are the fundamental unit of data in computer systems, and ( 255 ) represents the maximum value for unsigned 8-bit data.
Answers
To check if both bits ( A ) and ( B ) are 1:
[
A \text{ AND } B
]
Explanation: The AND operation returns 1 only when both ( A = 1 ) and ( B = 1 ).
To check if at least one of the bits ( A ) or ( B ) is 1:
[
A \text{ OR } B
]
Explanation: The OR operation returns 1 if either ( A = 1 ), ( B = 1 ), or both are 1.
To invert the value of a bit ( A ):
[
\text{NOT } A
]
Explanation: The NOT operation flips the value of ( A ); if ( A = 1 ), it returns 0, and if ( A = 0 ), it returns 1.
To evaluate to 1 if both ( A ) and ( B ) are 1, or ( C ) is 1:
[
(A \text{ AND } B) \text{ OR } C
]
Explanation: The expression first checks if ( A \text{ AND } B ) evaluates to 1. If not, it evaluates ( C ), returning 1 if ( C = 1 ).
What is the purpose of a truth table and Complete the following truth table for the expression ( A \text{ XOR } B ):
[
\begin{array}{|c|c|c|}
\hline
A & B & A \text{ XOR } B
\hline
0 & 0 &
0 & 1 &
1 & 0 &
1 & 1 &
\hline
\end{array}
]
4. Boolean Expression Examples
A AND B
(A OR B) AND C
5. Applications of Boolean Operations
[^1] ASCII, decimal, hexadecimal, octal, and binary conversion table - IBM