what is the hexidecimal number of 4100?

Answers were Sorted based on User's Feedback



what is the hexidecimal number of 4100?..

Answer / rakesh ranjan

F001

is the correct answer

Is This Answer Correct ?    0 Yes 0 No

what is the hexidecimal number of 4100?..

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

what is the hexidecimal number of 4100?..

Answer / honey

hexadecimal number of 4100 is FA0

Is This Answer Correct ?    2 Yes 4 No

what is the hexidecimal number of 4100?..

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

what is the hexidecimal number of 4100?..

Answer / kantilal

hey oleg make it as 4095
4100-4095=5
0x1005

Is This Answer Correct ?    0 Yes 2 No

what is the hexidecimal number of 4100?..

Answer / jitrendra kr. arya

FA0

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More C Interview Questions

How to declare pointer variables?

0 Answers  


What is a union?

0 Answers  


What are the advantages of using macro in c language?

0 Answers  


Why is structure padding done in c?

0 Answers  


write a program to remove duplicate from an ordered char array? in c

2 Answers  






Explain what standard functions are available to manipulate strings?

0 Answers  


What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

0 Answers  


What is a null pointer in c?

0 Answers  


Explain can the sizeof operator be used to tell the size of an array passed to a function?

0 Answers  


What does return 1 means in c?

0 Answers  


who is the father of C Language?

20 Answers   CTS, UST,


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


Categories