what is the hexidecimal number of 4100?
Answers were Sorted based on User's Feedback
Answer / tpt
4001 = 1*2^11 + 1*2^10 + 1*2^9 + 1*2^8 + 1*2^7 + 0*2^6 +
1*2^5 + 0*2^4 + 0*2^3 + 0*2^2 + 0*2^1 + 1*2^0
binary:
1111 1010 0001
hex/binary
0 0
1 1
2 10
3 11
4 100
5 101
6 110
7 111
8 1000
9 1001
A 1010
B 1011
C 1100
D 1101
E 1110
F 1111
so the hexadecimal format would be:
FA1
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / david e. west
I wonder if the nujmber 4100 was picked because it is only 4
more than the "round number" 4096, which is the typical page
size on most 32-bit MMU paging architectures and whose hex
value is 0x1000. Then just add 4 for 0x1004. (Or maybe I'm
over thinking it.)
| Is This Answer Correct ? | 0 Yes | 2 No |
wap to print "hello world" without using the main function.
can we access one file to one directory?
What is const and volatile in c?
What is the use of structure padding in c?
What is the difference between int and float?
what is the use of #pragma pack, wer it is used?
Who invented bcpl language?
can i know the source code for reversing a linked list with out using a temporary variable?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
why division operator not work in case of float constant?
Which one would you prefer - a macro or a function?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none