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 |
Write a c program to build a heap method using Pointer to function and pointer to structure ?
0 Answers MAHINDRA, Protech, Sivan Tech,
Write a Program to find whether the given number or string is palindrome.
ATM machine and railway reservation class/object diagram
Describe how arrays can be passed to a user defined function
What are the 5 types of inheritance in c ++?
what is the main use of c where it can use the c
what is the maximum limit of row and column of a matrix in c programming. in linux .
actually i have 2 years teaching experience as computer faculty but now i am a DBA but when i go for interview many peoples asked me why i left my teaching profession and why i want to come in this field kindly give me the proper answer of this queston
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
What is the purpose of the preprocessor directive error?
In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?