This document discusses different number systems used in computing including decimal, binary, hexadecimal, and binary-coded decimal (BCD). It explains how each system uses a positional notation with a base or radix to represent numbers. Decimal uses base 10 with digits 0-9, binary uses base 2 with digits 0-1, hexadecimal uses base 16 with digits 0-9 and A-F, and BCD encodes each decimal digit as a 4-bit binary number. The document describes how to convert between these number systems through division and remainder operations. Hexadecimal is commonly used to efficiently represent large binary numbers with fewer digits.