InterviewSolution
Saved Bookmarks
| 1. |
How Many Bytes Do A S9 (7) Comp-3 Field Occupy? |
|
Answer» It will TAKE 4 bytes to occupy. Sign is stored as hex value in the LAST nibble. General formula is INT((n/2) + 1)), where n=7 in this EXAMPLE. It will take 4 bytes to occupy. Sign is stored as hex value in the last nibble. General formula is INT((n/2) + 1)), where n=7 in this example. |
|