InterviewSolution
Saved Bookmarks
| 1. |
How Is Sign Stored In A Comp-3 Field? |
|
Answer» It is stored in the LAST nibble. For EXAMPLE if your number is +100, it STORES HEX 0C in the last byte, hex 1C if your number is 101, hex 2C if your number is 102, hex 1D if the number is -101, hex 2D if the number is -102 etc... It is stored in the last nibble. For example if your number is +100, it stores hex 0C in the last byte, hex 1C if your number is 101, hex 2C if your number is 102, hex 1D if the number is -101, hex 2D if the number is -102 etc... |
|