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

List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

0 Answers   Ignou,


Should a function contain a return statement if it does not return a value?

0 Answers  


When should a type cast be used?

0 Answers  


What is the mean of this statement:: if(int i=0 * i=9)

2 Answers   HCL,


What is typeof in c?

0 Answers  






Is exit(status) truly equivalent to returning the same status from main?

0 Answers  


what is pointer ?

10 Answers   Kernex Micro Systems,


Where does the name "C" come from, anyway?

0 Answers   Celstream,


How can I invoke another program from within a C program?

8 Answers  


When is an interface "good"?

1 Answers  


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

0 Answers  


What is the purpose of void pointer?

0 Answers  


Categories