Microsoft Interview Questions
Microsoft Interview Questions
piece removed (any size or orientation), how would you cut the
remainder
of the cake into two equal halves with one straight cut of a knife ?
2. You're given an array containing both positive and negative integers and
required to find the subarray with the largest sum (O(N) a la KBL).
determine if there are any duplicates in it. You are allowed to destroy
for this, each supposedly better than the others ]. How about finding both
use of any floating point computations at all. [This one had me stuck for
quite some time and I first gave a solution that did have floating point
computations ].
5. Given only putchar (no sprintf, itoa, etc.) write a routine putlong that
taking % 10 and / 10, which gives us the decimal value in reverse order.
This requires an array since we need to print it out in the correct order.
The interviewer wasn't too pleased and asked me to give a solution which
in it.
8. How many points are there on the globe where by walking one mile
south,
one mile east and one mile north you reach the place where you started.
9. Give a very good method to count the number of ones in a 32 bit number.
10. What are the different ways to say, the value of x can be either a 0
out in assembly.
if (x == 0)
y=0
else
y =x
problem.
13. In an X's and 0's 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. 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.
14. I was given two lines of assembly code, which found the absolute value
of a number stored in two's complement form. I had to recognize what the
code was doing. Pretty simple if you know some assembly and some
fundamentals on number representation.
16. How would go about finding out where to find a book in a library. (You
do not know how exactly the books are organized beforehand).
18. Tradeoff between time spent in testing a product and getting into the
market first.
19. What to test for given that there isn't enough time to test everything
you want to.
a) An ASCII character is one byte long and the most significant bit
Kanji character is that in its first byte the most significant bit
is '1'.
Now you are given an array of a characters (both ASCII and Kanji) and,
an index into the array.
The index points to the start of some character. Now you need to write a
function to do a backspace (i.e. delete the character before the given
index).
21. Delete an element from a doubly linked list (which kind? with a dummy
header or without?)
23. Given two strings S1 and S2. Delete from S2 all those characters which
occur in S1 also and finally create a clean S2 with the relevant chars
deleted. (ref. e12.cpp)
24. Assuming that locks are the only reason due to which deadlocks can
occur in a system. What would be a foolproof method of avoiding deadlocks
in the system.
"a*b" etc.
28. Write a routine that prints out a 2-D array in spiral order!
33. There are 3 ants at 3 corners of a triangle, they randomly start moving
towards another corner.. what is the probability that they do not collide.
34. Write an efficient algorithm and C code to shuffle a pack of cards.. this
one was a feedback process until we came up with one with no extra
storage.
40. Given a sequence of characters. How will you convert the lower
way.
44. Tell me the courses you liked and why did you like them.
45. Give an instance in your life in which u were faced with a problem and
you tackled it successfully. (oops!)
46. What is your ideal working environment. ( They usually to hear that u
can work in group also.)
49. Do you want to know any thing about the company.( Try to ask some
53. Give a good data structure for having n queues (n not fixed) in a
finite memory segment. You can have some data-structure separate for
each queue. Try to use at least 90% of the memory space.
54. Do a breadth first traversal of a tree. (print a tree level by level, each
level in a different line)
56. Write, efficient code for extracting unique elements from a sorted list
of array. e.g. (1, 1, 3, 3, 3, 5, 5, 5, 9, 9, 9, 9) -> (1, 3, 5, 9).
58. Given a list of numbers (fixed list) Now given any other list,
how can you efficiently find out if there is any element in the
60. If you are on a boat and you throw out a suitcase, will the level of
water increase?
62. write C code for deleting an element from a linked list (C++)
a) void *ptr;
OP
OA
OB
|
OC
for that.
OP
OB
/\
/ \
/ \
O? O?
file system
71. Write an efficient C code for 'tr' program. 'tr' has two command
input file, replaces each character in the first string with the
and so on.
the code
while (!eof)
c = getc();
putc(array[c - 'a']);
74. given a new disk, how do you determine which interleaving is the best
75. draw the graph with performace on one axis and 'n' on another, where
be answered carefully)
76. I was shown a c++ code and was asked to find out the bug in that. The
bug
return the pointer to that object. Since the object is local to the
77. A real life problem - A square picture is cut into 16 squares and
13. A character set has 1 and 2 byte characters. One byte characters
have 0 as the first bit. You just keep accumulating the characters
in a buffer. Suppose at some point the user types a backspace, how can
you remove the character efficiently. ( Note: You cant store the last
14. How would you reverse the bits of a number with log N arithmetic
15. What is the simple way to check if the sum of two unsigned integers
have resulted in an overflow. (why does the algorithm only works for
unsigned
numbers? )
Solution:
suffix with largest sum and then update both after adding the
i+1th element.
5. Find the largest 10**n less than given number, then div etc.
11. reverse the pointers till you reach the end and print-and-reverse as
you return.
12. Have two 'threads' one at twice the speed of the other traversing the
list and see if at anytime they meet.
13. Scan the bytes backward till you reach one with the first bit
Start from there and scan forward to find what the last character is.
14. Flip adjacent bits, then flip adjacent 2 bit sets, then 4-bits
and so on. Each of this swap can be done in constant time using
struct rect {
//ASK questions like what kind of list, and if templates can be used. If
//the ascending relationship is defined, etc.
append it to the end of the list, i.e. the old head of the original list)
6. Given ships travel between points A and B, one every hour leaving from
journey takes 1hr 40 mts. How many ships does each ship encounter in its
7. Write a SetPixel (x, y) function, given a pointer to the bitmap. Each pixel
is represented by 1 bit. There are 640 pixels per row. In each byte,
while the bits are numbered right to left, pixels are numbered left to right.
Avoid multiplications and divisions to improve performance.
8. How do you represent an n-ary tree? Write a program to print the nodes
of such a tree in breadth first order. (and use a queue), not efficient
Also, if P(A, B) is a function that takes two 0-1 strings A,B in this
representation, when can we say that P(A,B) returns the sum of these two
numbers? … if the position of the most significant set bit is odd, the
number is negative, otherwise, the number is positive. How do u find out
the most significant (i.e. left most) signed bit
2. Given a maze with cheese at one place and a mouse at some entrance,
write
1. A byte has only one of its bits set. Write the code to find out which bit is
set.
2. You have a long tape which contains numbers from 1 to a 1000 randomly
which number it is. The condition is the algorithm you choose should be
4. You have a singly linked list (no prev pointer). Your current pointer
pointing to a node x. Write code to delete x. You can have as many temp
pointers as you need.
1. Given two sorted linked lists write code to merge them (so that the final
list is sorted?).
4. Given an integer use only putchar to print each num of the int out on the
5. Write a class for a linked list. Give all the member functions that u would
6. A pic has a bitmap assoc w/ it and a 256 long array of original palettes.
Now we have a change list, where some old colors are mapped onto new
colors. Write the code to change the original palette. Now if the original
bitmap has to be changed, write the code that will scan the pic as well as
the changed palette array. The code shud be O(N) and not O(N^2). The
struct
of the original palette may b changed to accomplish this.
7. If a pic is getting built in one window and a dialog box pops up on top
8. If x = a and y = b, how to swap the two var values w/o using a tmp var?
2. Asked to examine a piece of code and figure out the bug. The trick was to
know operator precedence; in particular, the ? operator.
3. SQL queries
4. Networks question: binding to a UDP socket, info about BSD sockets, etc.
Assume that two of the numbers are corrupted and become zero.
Keep two variables – sum and product, compare with series and factorial
of the entire array