InterviewSolution
Saved Bookmarks
| 1. |
Solve : What is Fh?? |
|
Answer» I was reading this sentence: I know Fh is an abbreviation, but what does it stand for. It deals with input and output, but I still am lost. F is a hexadecimal digit, h is an abbreviation. It is a suffix letter indicating that the NUMBER is written in hexadecimal where the number base is 16. The numbers 0 to 9 use the digits 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 as in base 10 (decimal) and the numbers 10 to 15 are given the letters A, B, C, D, E, F or ALTERNATIVELY a, b, c, d, e, f. When specifying a range the suffix "h" (meaning hexadecimal) is OFTEN added both numbers thus: 370h to 37Fh. In many computer architectures, input/output is "memory-mapped" and it appears that in the one that you are reading about, the floppy disk controller is assigned the address range stated. http://en.wikipedia.org/wiki/Input/output_base_address http://en.wikipedia.org/wiki/Hexadecimal |
|