This document discusses various methods of data representation in computers, including:
1. Numeric data such as integers and real numbers can be represented in binary, octal, hexadecimal, or decimal number systems. Positional number systems like binary are preferred in computers due to their efficient hardware implementation.
2. Fixed point numbers represent numeric values using a binary number and radix point at a fixed location. Signed magnitude, 1's complement, and 2's complement representations allow representing positive and negative numbers.
3. Floating point numbers represent values using a signed mantissa and exponent, allowing a wider range of numbers but with less precision than fixed point. The radix and radix point position are implied rather than fixed.