Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

Microsoft C Interview Questions
Questions Answers Views Company eMail

what is the difference between NULL('\0') and 0?

14 16373

Which is the best sort method for library management?

1 2344

Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

3838

There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?

5 7568

find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1855

how to swap two integers 1 and 32767 without using third variable

11 13684

what is the hardware model of CFG( context free grammar)

2238

how to print the character with maximum occurence and print that number of occurence too in a string given ?

2029

what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }

6 6676

The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1056

Post New Microsoft C Interview Questions


Microsoft C Interview Questions


Un-Answered Questions

What are the steps in which unicode codesets can be set with the weblogic jdriver?

509


What is the difference between method activity and event activity in workflow ?

511


How do you get the attribute of the web element?

484


You wan to make a user/ vendor a valid part of srm. How will you do that? Does this need anything particular to be done?

461


I am working at ADP in HR/PAYROLL process now i want to learn SAP HR will it help me out to get a job with the domain knowledge and i hold 2 years exp in HR Payroll. can i keep my cv as having 2years domain knowledge do companies hire if i have domain knowledge kindly advice on this.

3988






what are different storage options supported by oracle ?

1606


What is a java executable jar file?

469


What is a start tag?

438


What Mapper does?

665


which of the following is not a coding defect? Option 1 Test harness defect Option 2 Data flow defect Option 3 Initialisation defect Option 4 Algorithmic defect

1799


Can I overload to string method

964


In which layer SMTP is used?

688


Do you think you are a quick learner? Give example.

761


What is explicit mode in sql server?

530


1.IN CASE OF DYNAMIC METHOD DISPATCH WHY WE USE REFERENCE VARIABLE,WE CAN USE THE DIFFERENT DEFINED OBJECT DIRECTLY TO ACCESS THE DATA MEMBER AND MEMBER FUNCTION OF THAT RESPECTIVE CLASS?WHAT IS THE MAIN FUNCTION OF "REFERENCE VARIABLE" HERE?

3780