MCQ
Q.
Instructions and memory address are represented by
Correct Answer: B
The correct answer is Binary codes are the fundamental language of computers. All information, including instructions for the CPU and memory addresses where data or instructions are stored, is ultimately represented using combinations of 0s and 1s (binary digits or bits)..
🔑 Key Points
- Computers operate on electricity: At their most basic level, computers use electrical signals that are either 'on' or 'off'. These two states are perfectly represented by the binary digits 1 and 0, respectively.
- Instructions as binary: Every command that a Central Processing Unit (CPU) executes, from adding two numbers to moving data, is stored as a specific pattern of 0s and 1s, known as an opcode and its operands. These patterns are the machine code that the processor understands directly.
- Memory addresses as binary: To locate data or instructions within the computer's memory, each memory location is assigned a unique address. These addresses are also represented internally as fixed-length binary codes, allowing the CPU to pinpoint specific locations in RAM.
- Binary is universal in computing: Whether it's data, instructions, or addresses, everything within a digital computer is processed, stored, and transmitted as binary codes.
📄 Additional Information
- While humans often interact with computers using higher-level representations like characters (text), images, or programming languages, these are all translated into binary codes for the computer to process. A character code (like ASCII or Unicode) is a standard that maps human-readable characters to specific binary patterns. A binary word refers to a fixed-size group of binary digits (e.g., 32-bit word, 64-bit word) that a computer's architecture can process at once, so it describes the *length* of binary code, not the nature of the code itself. A parity bit is an extra bit added to a binary code to detect errors during data transmission or storage, but it doesn't represent the instruction or address itself.