Posts

Showing posts from September, 2021

Binary Number System

Image
 Binary Number System: The number system wit base(or radix) two is known  as the binary number system .Only two symbols   are used to represent numbers in this system and these are 0 and 1. These are known as bits.  Decimal to binary conversion : Any decimal number can be converted into its equivalent binary number. For integers ,the conversion is obtained by continuous division by 2 and keeping track of the remainder, while for fractional parts, the conversion is affected by continuous multiplication by 2 and keeping track of the integers generated . Example: Convert (13) 10 an equivalent base-2 number  For Fractional number  Example: Convert (0.65625) 10  to an  equivalent base-2 number  Example: Express the 25.5 decimal numbers in the binary  from : Binary to Decimal : Any binary number can be converted into its equivalent decimal number using the weights assigned to each  bit position. Example: find the decimal equivalent o...