Microsoft Technical Paper | Placement Papers - Technical & HR Questions - Interview Preparation PDF Download

Q1. Give a very good method to count the number of ones in a n (e.g. 32) bit number.

ANS: Given below are simple solutions, find a solution that does it in log (n) steps.

Iterative

function iterative count (unsigned int n)

begin

int count=0;

while (n)

begin

count += n & 0x1 ;

n >>= 1;

end

return count;

end

Sparse Count

function sparse count (unsigned int n)

begin

int count=0;

while (n)

begin

count++;

n &= (n-1);

end

return count ;

end

Q2. In a Xs and 0s game (i.e. TIC TAC TOE) if you write a program for this give a fast way to generate the moves by the computer. I mean this should be the fastest way possible.

ANS: The answer is that you need to store all possible configurations of the board and the move that is associated with that. Then it boils down to just accessing the right element and getting the corresponding move for it. Do some analysis and do some more optimization in storage since otherwise it becomes infeasible to get the required storage in a DOS machine.

Q3. Reverse a linked list.

ANS: Possible answers -

iterative loop

curr->next = prev;

prev = curr;

curr = next;

next = curr->next

endloop

recursive reverse(ptr)

if (ptr->next == NULL)

return ptr;

temp = reverse(ptr->next);

temp->next = ptr;

return ptr;

end

Q4. Given an array of integers, find the contiguous sub-array with the largest sum.

ANS: Can be done in O(n) time and O(1) extra space. Scan array from 1 to n. Remember the best sub-array seen so far and the best sub-array ending in i.

Q5. Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.

ANS: [Is there an O(n) time solution that uses only O(1) extra space and does not destroy the original array?]

Q6. Sort an array of size n containing integers between 1 and K, given a temporary scratch integer array of size K.

ANS: Compute cumulative counts of integers in the auxiliary array. Now scan the original array, rotating cycles! [Can someone word this more nicely?]

Q7. An array of size k contains integers between 1 and n. You are given an additional scratch array of size n. Compress the original array by removing duplicates in it. What if k << n?

ANS: Can be done in O(k) time i.e. without initializing the auxiliary array!

Q8. An array of integers. The sum of the array is known not to overflow an integer. Compute the sum. What if we know that integers are in 2s complement form?

ANS: If numbers are in 2s complement, an ordinary looking loop like for(i=total=0;i< n;total+=array[i++]); will do. No need to check for overflows!

Q9. An array of characters. Reverse the order of words in it.

ANS: Write a routine to reverse a character array. Now call it for the given array and for each word in it.

Q10. An array of integers of size n. Generate a random permutation of the array, given a function rand_n() that returns an integer between 1 and n, both inclusive, with equal probability. What is the expected time of your algorithm?

ANS: Expected time should ring a bell. To compute a random permutation, use the standard algorithm of scanning array from n down to 1, swapping i-th element with a uniformly random element <= i-th. To compute a uniformly random integer between 1 and k (k < n), call rand_n() repeatedly until it returns a value in the desired range.

The document Microsoft Technical Paper | Placement Papers - Technical & HR Questions - Interview Preparation is a part of the Interview Preparation Course Placement Papers - Technical & HR Questions.
All you need of Interview Preparation at this link: Interview Preparation
85 docs|57 tests

Top Courses for Interview Preparation

FAQs on Microsoft Technical Paper - Placement Papers - Technical & HR Questions - Interview Preparation

1. What is the significance of Microsoft Technical Paper in the field of technology?
Ans. Microsoft Technical Paper is a valuable resource in the field of technology as it provides in-depth knowledge and insights into various topics related to Microsoft products, services, and technologies. It offers detailed information, best practices, and recommendations for developers, IT professionals, and technology enthusiasts.
2. How can Microsoft Technical Paper help individuals in their career growth?
Ans. Microsoft Technical Paper can greatly contribute to career growth by providing individuals with up-to-date information and expertise in the latest Microsoft technologies. It helps professionals stay relevant in their field, acquire new skills, and enhance their knowledge, making them more competitive in the job market.
3. Are the Microsoft Technical Papers accessible to beginners or are they more suitable for advanced users?
Ans. Microsoft Technical Papers cater to both beginners and advanced users. While some papers might delve into advanced concepts, many papers also provide introductory information, step-by-step guides, and practical examples to help beginners understand and get started with Microsoft technologies.
4. Can Microsoft Technical Papers be used as reference materials for academic projects or research papers?
Ans. Yes, Microsoft Technical Papers can be used as valuable reference materials for academic projects or research papers. They offer detailed insights, technical specifications, and practical implementation examples that can support and enhance the quality of academic work in the field of technology.
5. How frequently are new Microsoft Technical Papers released and how can one stay updated with the latest releases?
Ans. New Microsoft Technical Papers are released periodically to cover the latest updates and advancements in Microsoft technologies. To stay updated with the latest releases, individuals can visit the official Microsoft website, subscribe to relevant newsletters or blogs, or follow Microsoft's social media channels to receive notifications about new papers and other important updates.
85 docs|57 tests
Download as PDF
Explore Courses for Interview Preparation exam

Top Courses for Interview Preparation

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Exam

,

ppt

,

Objective type Questions

,

Microsoft Technical Paper | Placement Papers - Technical & HR Questions - Interview Preparation

,

Microsoft Technical Paper | Placement Papers - Technical & HR Questions - Interview Preparation

,

Summary

,

Important questions

,

Microsoft Technical Paper | Placement Papers - Technical & HR Questions - Interview Preparation

,

Extra Questions

,

shortcuts and tricks

,

study material

,

Free

,

Semester Notes

,

practice quizzes

,

pdf

,

Viva Questions

,

past year papers

,

Previous Year Questions with Solutions

,

Sample Paper

,

video lectures

,

mock tests for examination

,

MCQs

;