InterviewSolution
| 1. |
If Given Equation Is 137+276=435, How Much Is 731+672=.... Find The Result. |
|
Answer» In DECIMAL number system; 137 + 276 = 413 but here its 435 (> 413) so the base system should be less than 10 and as the HIGHEST digit in the sum is 7 so the base must be greater than 7. Add the LSB; 7+6 = 5 (there must be a carry) So 7 + 6 = 5 + 8(1 carry is forwarded) and HENCE the it is in octal number system. Therefore: 731 + 672 = 1623. In decimal number system; 137 + 276 = 413 but here its 435 (> 413) so the base system should be less than 10 and as the highest digit in the sum is 7 so the base must be greater than 7. Add the LSB; 7+6 = 5 (there must be a carry) So 7 + 6 = 5 + 8(1 carry is forwarded) and hence the it is in octal number system. Therefore: 731 + 672 = 1623. |
|