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 |
Sir i need notes for structure,functions,pointers in c language can you help me please
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
what is difference between #include<stdio.h> and #include"stdio.h"
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
What is sizeof int in c?
Write a program to compare two strings without using the strcmp() function
42 Answers Accenture, Arba Minch University,
What is getche() function?
What is function and its example?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
How does free() know explain how much memory to release?
macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration
12 Answers HCL, Infosys, Microsoft,