InterviewSolution
Saved Bookmarks
| 1. |
On multiplication of (10.10) and (01.01), we get ____________(a) 101.0010(b) 0010.101(c) 011.0010(d) 110.0011I had been asked this question in an online interview.I need to ask this question from Arithmetic Operation topic in section Number System and Codes of Digital Circuits |
|
Answer» RIGHT choice is (C) 011.0010 Easy EXPLANATION: The rules for binary multiplication are: 0 * 0 = 0 0 * 1 = 0 1 * 0 = 0 1 * 1 = 1 |
|