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  Contact Us     Login  |  Sign Up                      
tip   SiteMap shows list of All Categories in this site.
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 3 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 ?    2 Yes 1 No
Oleg
 
 
 
  Re: what is the hexidecimal number of 4100?
Answer
# 3
hexadecimal number of 4100 is FA0
 
Is This Answer Correct ?    0 Yes 2 No
Honey
 
  Re: what is the hexidecimal number of 4100?
Answer
# 4
1004H is the hexadecimal conversion of 4100
 
Is This Answer Correct ?    1 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 ?    2 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 ?    1 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 ?    1 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 ?    1 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
 
  Re: what is the hexidecimal number of 4100?
Answer
# 14
hey oleg make it as 4095
4100-4095=5
0x1005
 
Is This Answer Correct ?    0 Yes 0 No
Kantilal
 

 
 
 
Other C Interview Questions
 
  Question Asked @ Answers
 
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean? Intel4
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile? Oracle3
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } CitiGroup4
what are the languages used in c#? Infosys1
What are Storage Classes in C ? HP14
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT; TCS5
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer  1
difference between memcpy and strcpy  1
How do I initialize a pointer to a function?  2
what is the use of call back function in c?tell me with example  1
How does free() know how many bytes to free?  5
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?  1
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.  1
char ch="{'H','I',0};printf("%s",ch);what is output Accenture9
Can I pass constant values to functions which accept structure arguments?  2
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); } ME3
what is the use of using linked list and array? Infosys9
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); } ADITI5
what is calloc and malloc?  1
what is the difference between malloc() and calloc() function?  1
 
For more C Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

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