what is the hexidecimal number of 4100?
Answers were Sorted based on User's Feedback
Answer / a,dinesh kumar
16|4100
16|256-4
16|16-0
16|1-0
the answer is 4100->1004
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / revathy
I think it is 1004
But JITENDRA, why do you think it's FA0
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shilpa
I Think 1004 h is correct ans
how come FA0 IS CORRECT
PLZ ANSWER TO ME IF MY ANS IS WRONG
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / himanshu
(1004)H is the haxadecimal conversion of (4100)d
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ganges
1004 is the correct answer. One another way to solve the
problem is convert the decimal to binary then to the Hexa
(machine way!)
4100 (decimal) ->1,00 00,00 00,01 00 (binary) -> 1004 (hexa)
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / oleg
We know that 4096=0x1000, and we just need to add
4100-4096=4 to 0x1000.
So 0x1000 + 4 = 0x1004.
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / anilkumar927@gmail.com
Hi Jitrendra,
I hope that 1004 is the correct ANS.
still you have doubt about this please do it in calculator.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / yoganathan.m
THE GIVEN NO IS DECIMAL VALUE(4100) SO, FIRST WE NEED TO
CONVERT THAT VALUE IN TO BINARY VALUE.
THIS IS POSSIBLE BY DIVIDING BY 2 UP TO 0 OR 1.
THEN WE NEED TO SEPARATE THOSE VALUES BY 4 APART.
THEN USING 8421 RULE WE HAVE TO GIVE VALUE.
ie,4100 when divide we get 0001 0000 0000 0100.
the answer is exactly 1004.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / vishal ramawat
Simply open calculator in windows. switch to scientific
view, n check ANY answer :)
| Is This Answer Correct ? | 0 Yes | 0 No |
how to find your architecture is LittleEndian or BigEndian?
HOW TO SWAP TWO NOS IN ONE STEP?
Explain is it valid to address one element beyond the end of an array?
What is the difference between printf and scanf )?
Can we change the value of static variable in c?
How do you search data in a data file using random access method?
What are the uses of pre-processor directives?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What is string function c?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
what is uses of .net
which of 'arrays' or 'pointers' are faster?