Answer Posted / 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 |
Post New Answer View All Answers
What is integer constants?
How can you return multiple values from a function?
Is void a keyword in c?
Where is volatile variable stored?
How can I use a preprocessorif expression to ?
What are loops c?
Explain how can you restore a redirected standard stream?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Write a program to implement queue.
Do string constants represent numerical values?
How can I change the size of the dynamically allocated array?
What is the translation phases used in c language?
What type is sizeof?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
How can you allocate arrays or structures bigger than 64K?