InterviewSolution
Saved Bookmarks
| 1. |
Perform binary subtraction: 101111 – 010101 = ?(a) 100100(b) 010101(c) 011010(d) 011001I have been asked this question in unit test.My query is from Arithmetic Operation in chapter Number System and Codes of Digital Circuits |
|
Answer» CORRECT choice is (c) 011010 The explanation: The rules for Binary Subtraction are : 0 – 0 = 0 0 – 1 = 1 ( BORROW 1) 1 – 0 = 1 1 – 1 = 0 |
|