Author: vlsifacts

Binary Coded Decimal

You must have seen the digital clock in the railway station or at many other places. The hour, minute and second digits are seven-segment displays that deal with binary coded decimal (BCD) numbers. In this particular article, we will learn…

Floating Point Format

Imagine you have a processor with registers of size 32 bits. Can the processor store a number larger than 32 bits in one register? It is possible if the number is represented in floating point format. The floating point format…

Hexadecimal Arithmetic

Though the computers store everything in binary format, the user interface deals with the hexadecimal format for ease of understanding. For a human, it is easy to deal with hexadecimal than the stream of ones and zeros. So, in this…