Archive for MICROSOFT

You are browsing the archives of MICROSOFT.

Western Governors University | Western Governors University Reviews | WGU | Western Governors | www.wgu.edu | Online University | Degree Programs

Western Governors University (WGU) is nationally accredited by the Distance Education and Training Council (DETC) and regionally accredited by the Northwest Commission on Colleges and Universities, one of the major accrediting commissions recognized by the U.S. Department of Education and the Council for Higher Education Accreditation (CHEA), is the only online university in the U.S. [...]

Microsoft Pro-Photographer Photography Contest

The Microsoft future pro photographers photography contest is the most lucrative contest of its kind and provides a unique opportunity for college and university student photographers from around the world to showcase their artistic talent and photographic style.
Microsoft is committed to carrying the art of digital photography forward by encouraging new and emerging talent at [...]

MICROSOFT PAPER – 05 SEP 2008

Question 1. [10]
Find the output of the following program segment
#include
char *c[]={“ENTNG”, “NST”,”AMAZI”,”FIRBE”};
char** cp[]={c+3, c+2, c+1, c};
char ***cpp= cp;
void main() {
printf(“%s”,**++cpp);
printf(“%s “,*–*++cpp+3);
printf(“%s”,*cpp[-2]+3);
printf(“%s”,cpp[-1][-1]+1);
}
Question 2. [5]
Write a function delete(struct node** Head) to delete the linked list node by node by deallocating them from the memory and at the end assign the head pointer to NULL.
void deleteListTest(struct node* headRef) [...]

MICROSOFT PAPER – NOV 2007

There were basically two rounds… One written test and one Technical Interview.
In written test they asked 5 questions and time for completing those questions was 90 mins.
The lvl of difficulty was on an average 8 out of ten (mean real tough paper)… in which one question was purely program writting (it was quick sort actually [...]

MICROSOFT PAPER – 26 JUL 2007

Selection procedure and interview questions of Microsoft at Dhirubhai Ambani Institute of Information and Communication Technology (DA-IICT)
There were 4 rounds for selection procedure. First round was a written test, second round was group interview and 3rd and 4th rounds were technical interview. Each round had eliminations. Total 143 students were eligible for written test and [...]

MICROSOFT INTERVIEW QUESTIONS

These are some of the Microsoft Interview Questions
Round 1:
1. What are your interests? (as in academics/topics)
2. Given a string, search it in a set of strings (say among 1000s of string). What data structure would you use to store those 1000 strings and get the results fastest?
Answer: I answered hash tables but he said suggest [...]