10000100101
10000100101 is an eleven-bit binary numeral. In binary, each digit represents a power of two, from left to right spanning 2^10 down to 2^0. The digits contribute 2^10, 2^5, 2^2, and 2^0, yielding a decimal value of 1024 + 32 + 4 + 1 = 1061.
In other common bases, the same value is represented as 0x425 in hexadecimal and 0o2045 in octal.
11-bit numbers like this can occur in contexts with limited address spaces or bit fields, such as
If encountered in programming or digital design, it is often helpful to note its bit-length (11 bits)