Difficulty: Easy
Correct Answer: 1
Explanation:
Introduction / Context:Computer memory and data movement are measured in bits and bytes. Knowing how many bits form a byte is fundamental for understanding storage sizes, data alignment, and instruction encoding. Here we translate an 8-bit sequence into the number of bytes it represents.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Count bits: '1100 0101' contains 8 bits.Apply definition: 8 bits = 1 byte.Therefore, the sequence occupies exactly 1 byte.Verification / Alternative check:
Any 8-bit pattern—from 0000 0000 to 1111 1111—constitutes 1 byte; 1100 0101 is one such pattern.Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1
Discussion & Comments