Section 1: Representation of Numbers Flashcards
Q: What is the binary (Base 2) system used for in computers?
A: It represents data using 0s and 1s, corresponding to electrical states (on/off).
Q: How do you convert a binary number to a decimal number?
A: Sum the binary digits, each multiplied by 2^n, where n is the position from the right, starting at 0.
Q: How do you convert a decimal number to binary?
A: Use successive division by 2, recording remainders, and read them from bottom to top.
Q: What is hexadecimal (Base 16), and why is it useful?
A: Hexadecimal is a compact way to represent binary, grouping 4 binary digits into one hex digit (0–9, A–F).
Q: How are octal (Base 8) numbers related to binary?
A: Octal groups binary digits in sets of 3.