↧
Binary to gray code conversion
Binary to gray code First, write the binary code and copy down MSB. The MSB of gray and binary code are same. Then, add MSB and next lower significant bit and write down the addition of them. Continue...
View ArticleBinary addition,subtraction and multiplication
Binary addition Some rules to know before we move to binary addition. 0 + 0 = 0 0 + 1 = 1 1 + 0 = 1 1 + 1 = 0 & carry 1 to next more significant bit 1 + 1 + 1 = 1 & carry 1 e.g. (10010 +...
View ArticleDecimal to binary,octal and hexadecimal conversion
Conversion of decimal to any number system of any base is a generalized method. Let’s directly move on to conversions. Decimal to binary All we have to do is just divide the number by 2 and write...
View Article