ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories  >>  Software  >>  Programming Languages  >>  C
 
 


 

 
 C interview questions  C Interview Questions
 C++ interview questions  C++ Interview Questions
 VC++ interview questions  VC++ Interview Questions
 Delphi interview questions  Delphi Interview Questions
 Programming Languages AllOther interview questions  Programming Languages AllOther Interview Questions
Question
what is the hexidecimal number of 4100?
 Question Submitted By :: Praveen
I also faced this Question!!     Rank Answer Posted By  
 
  Re: what is the hexidecimal number of 4100?
Answer
# 1
FA0
 
Is This Answer Correct ?    0 Yes 2 No
Jitrendra Kr. Arya
 
  Re: what is the hexidecimal number of 4100?
Answer
# 2
We know that 4096=0x1000, and we just need to add
4100-4096=4 to 0x1000.
So 0x1000 + 4 = 0x1004.
 
Is This Answer Correct ?    1 Yes 0 No
Oleg
 
 
 
  Re: what is the hexidecimal number of 4100?
Answer
# 3
hexadecimal number of 4100 is FA0
 
Is This Answer Correct ?    0 Yes 1 No
Honey
 
  Re: what is the hexidecimal number of 4100?
Answer
# 4
1004H is the hexadecimal conversion of 4100
 
Is This Answer Correct ?    0 Yes 1 No
Rama
 
  Re: what is the hexidecimal number of 4100?
Answer
# 5
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 ?    0 Yes 0 No
Shilpa
 
  Re: what is the hexidecimal number of 4100?
Answer
# 6
16|4100
                     16|256-4
                     16|16-0
                      16|1-0
                       

the answer is 4100->1004
 
Is This Answer Correct ?    0 Yes 0 No
A,dinesh Kumar
 
  Re: what is the hexidecimal number of 4100?
Answer
# 7
I think it is 1004
But JITENDRA, why do you think it's FA0
 
Is This Answer Correct ?    0 Yes 0 No
Revathy
 
  Re: what is the hexidecimal number of 4100?
Answer
# 8
(1004)H is the haxadecimal conversion of (4100)d
 
Is This Answer Correct ?    0 Yes 0 No
Himanshu
 
  Re: what is the hexidecimal number of 4100?
Answer
# 9
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 ?    0 Yes 0 No
Ganges
 
  Re: what is the hexidecimal number of 4100?
Answer
# 10
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 0 No
David E. West
 
  Re: what is the hexidecimal number of 4100?
Answer
# 11
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 ?    0 Yes 0 No
Yoganathan.m
 
  Re: what is the hexidecimal number of 4100?
Answer
# 12
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 ?    0 Yes 0 No
Anilkumar927@gmail.com
 
  Re: what is the hexidecimal number of 4100?
Answer
# 13
Simply open calculator in windows. switch to scientific 
view, n check ANY answer :)
 
Is This Answer Correct ?    0 Yes 0 No
Vishal Ramawat
 

 
 
 
Other C Interview Questions
 
  Question Asked @ Answers
 
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END  3
how the size of an integer is decided? - is it based on processor or compiler or OS? nvidia11
what is the function of .h in #include<stdio.h> in c ? IBM4
What's the best way to declare and define global variables?  2
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6 TCS2
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above Accenture2
Difference between Class and Struct. Motorola4
compute the nth mumber in the fibonacci sequence? TCS6
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass. Microsoft2
to find out the reverse digit of a given number Infosys3
1 232 34543 4567654 can anyone tell me how to slove this c question  3
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above HCL2
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}  2
write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview Satyam2
What is an anonymous union and where to apply that ? HP1
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output? Verifone11
what is the use of getch() function in C program.. difference b/w getch() and getche()?? Wipro10
can you explain in brief what is "r+" mode in a file... i know that it si used to read and modify rhe existing content.... but explalanation about the file pointer in "r+" mode i wann to know??????????? Cognizent1
What do you mean by team??  2
Write a programme to find even numbers without using any conditional statement? Infosys3
 
For more C Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com