Freshers Jobs And Exam Results online>>Placement Papers>>Interview Questions>> Placement Papers>>Interview Questions>> Careers in India || Latest Cine Gossips and Live Market Financial and More

LATEST Update:

 

Your Ad Here
Quick Link::TANCET 2010|||TNEA 2010
Showing posts with label Placement Paper. Show all posts
Showing posts with label Placement Paper. Show all posts

Wednesday, March 24, 2010

Microsoft Interview Questions Feb 2010


Paper Type :Sample Placement Papers
Paper Date :2010-02-02


Microsoft Interview Questions


The following are actual questions from actual interviews conducted by Microsoft employees on the main campus. Microsoft Consultants are sometimes allowed to have a life, so questions asked of them during interviews don’t really count and aren’t listed.


Riddles


Why is a manhole cover round?
How many cars are there in the USA? (A popular variant is “How many gas stations are there in the USA?”)
How many manhole covers are there in the USA?
You’ve got someone working for you for seven days and a gold bar to pay them. The gold bar is segmented into seven connected pieces. You must give them a piece of gold at the end of every day. If you are only allowed to make two breaks in the gold bar, how do you pay your worker?
One train leaves Los Angeles at 15mph heading for New York. Another train leaves from New York at 20mph heading for Los Angeles on the same track. If a bird, flying at 25mph, leaves from Los Angeles at the same time as the train and flies back and forth between the two trains until they collide, how far will the bird have traveled?
Imagine a disk spinning like a record player turn table. Half of the disk is black and the other is white. Assume you have an unlimited number of color sensors. How many sensors would you have to place around the disk to determine the direction the disk is spinning? Where would they be placed?
Imagine an analog clock set to 12 o’clock. Note that the hour and minute hands overlap. How many times each day do both the hour and minute hands overlap? How would you determine the exact times of the day that this occurs?
You have two jars, 50 red marbles and 50 blue marbles. A jar will be picked at random, and then a marble will be picked from the jar. Placing all of the marbles in the jars, how can you maximize the chances of a red marble being picked? What are the exact odds of getting a red marble using your scheme?
Pairs of primes separated by a single number are called prime pairs. Examples are 17 and 19. Prove that the number between a prime pair is always divisible by 6 (assuming both numbers in the pair are greater than 6). Now prove that there are no ‘prime triples.’
There is a room with a door (closed) and three light bulbs. Outside the room there are three switches, connected to the bulbs. You may manipulate the switches as you wish, but once you open the door you can’t change them. Identify each switch with its bulb.
Suppose you had 8 billiard balls, and one of them was slightly heavier, but the only way to tell was by putting it on a scale against another. What’s the fewest number of times you’d have to use the scale to find the heavier ball?
Imagine you are standing in front of a mirror, facing it. Raise your left hand. Raise your right hand. Look at your reflection. When you raise your left hand your reflection raises what appears to be his right hand. But when you tilt your head up, your reflection does too, and does not appear to tilt his/her head down. Why is it that the mirror appears to reverse left and right, but not up and down?
You have 4 jars of pills. Each pill is a certain weight, except for contaminated pills contained in one jar, where each pill is weight + 1. How could you tell which jar had the contaminated pills in just one measurement?
The SF Chronicle has a word game where all the letters are scrambled up and you have to figure out what the word is. Imagine that a scrambled word is 5 characters long:
1. How many possible solutions are there?


2. What if we know which 5 letters are being used?


3. Develop an algorithm to solve the word.


There are 4 women who want to cross a bridge. They all begin on the same side. You have 17 minutes to get all of them across to the other side. It is night. There is one flashlight. A maximum of two people can cross at one time. Any party who crosses, either 1 or 2 people, must have the flashlight with them. The flashlight must be walked back and forth, it cannot be thrown, etc. Each woman walks at a different speed. A pair must walk together at the rate of the slower woman’s pace.
Woman 1: 1 minute to cross
Woman 2: 2 minutes to cross
Woman 3: 5 minutes to cross
Woman 4: 10 minutes to cross


For example if Woman 1 and Woman 4 walk across first, 10 minutes have elapsed when they get to the other side of the bridge. If Woman 4 then returns with the flashlight, a total of 20 minutes have passed and you have failed the mission. What is the order required to get all women across in 17 minutes? Now, what’s the other way?


If you had an infinite supply of water and a 5 quart and 3 quart pail, how would you measure exactly 4 quarts?
You have a bucket of jelly beans. Some are red, some are blue, and some green. With your eyes closed, pick out 2 of a like color. How many do you have to grab to be sure you have 2 of the same?
If you have two buckets, one with red paint and the other with blue paint, and you take one cup from the blue bucket and poor it into the red bucket. Then you take one cup from the red bucket and poor it into the blue bucket. Which bucket has the highest ratio between red and blue? Prove it mathematically.
Algorithms
What’s the difference between a linked list and an array?
Implement a linked list. Why did you pick the method you did?
Implement an algorithm to sort a linked list. Why did you pick the method you did? Now do it in O(n) time.
Describe advantages and disadvantages of the various stock sorting algorithms.
Implement an algorithm to reverse a linked list. Now do it without recursion.
Implement an algorithm to insert a node into a circular linked list without traversing it.
Implement an algorithm to sort an array. Why did you pick the method you did?
Implement an algorithm to do wild card string matching.
Implement strstr() (or some other string library function).
Reverse a string. Optimize for speed. Optimize for space.
Reverse the words in a sentence, i.e. “My name is Chris” becomes “Chris is name My.” Optimize for speed. Optimize for space.
Find a substring. Optimize for speed. Optimize for space.
Compare two strings using O(n) time with constant space.
Suppose you have an array of 1001 integers. The integers are in random order, but you know each of the integers is between 1 and 1000 (inclusive). In addition, each number appears only once in the array, except for one number, which occurs twice. Assume that you can access each element of the array only once. Describe an algorithm to find the repeated number. If you used auxiliary storage in your algorithm, can you find an algorithm that does not require it?
Count the number of set bits in a number. Now optimize for speed. Now optimize for size.
Multiple by 8 without using multiplication or addition. Now do the same with 7.
Add numbers in base n (not any of the popular ones like 10, 16, 8 or 2 — I hear that Charles Simonyi, the inventor of Hungarian Notation, favors -2 when asking this question).
Write routines to read and write a bounded buffer.
Write routines to manage a heap using an existing array.
Implement an algorithm to take an array and return one with only unique elements in it.
Implement an algorithm that takes two strings as input, and returns the intersection of the two, with each letter represented at most once. Now speed it up. Now test it.
Implement an algorithm to print out all files below a given root node.
Given that you are receiving samples from an instrument at a constant rate, and you have constant storage space, how would you design a storage algorithm that would allow me to get a representative readout of data, no matter when I looked at it? In other words, representative of the behavior of the system to date.
How would you find a cycle in a linked list?
Give me an algorithm to shuffle a deck of cards, given that the cards are stored in an array of ints.
The following asm block performs a common math function, what is it?
· cwd xor ax, dx sub ax, dxImagine this scenario:
I/O completion ports are communictaions ports which take handles to files, sockets, or any other I/O. When a Read or Write is submitted to them, they cache the data (if necessary), and attempt to take the request to completion. Upon error or completion, they call a user-supplied function to let the users application know that that particular request has completed. They work asynchronously, and can process an unlimited number of simultaneous requests.
Design the implementation and thread models for I/O completion ports. Remember to take into account multi-processor machines.
Write a function that takes in a string parameter and checks to see whether or not it is an integer, and if it is then return the integer value.
Write a function to print all of the permutations of a string.
Implement malloc.
Write a function to print the Fibonacci numbers.
Write a function to copy two strings, A and B. The last few bytes of string A overlap the first few bytes of string B.
How would you write qsort?
How would you print out the data in a binary tree, level by level, starting at the top?






Applications
How can computer technology be integrated in an elevator system for a hundred story office building? How do you optimize for availability? How would variation of traffic over a typical work week or floor or time of day affect this?
How would you implement copy-protection on a control which can be embedded in a document and duplicated readily via the Internet?
Define a user interface for indenting selected text in a Word document. Consider selections ranging from a single sentence up through selections of several pages. Consider selections not currently visible or only partially visible. What are the states of the new UI controls? How will the user know what the controls are for and when to use them?
How would you redesign an ATM?
Suppose we wanted to run a microwave oven from the computer. What kind of software would you write to do this?
What is the difference between an Ethernet Address and an IP address?
How would you design a coffee-machine for an automobile.


If you could add any feature to Microsoft Word, what would it be?


How would you go about building a keyboard for 1-handed users?


How would you build an alarm clock for deaf people?
Thinkers


How are M&Ms made?


If you had a clock with lots of moving mechanical parts, you took it apart piece by piece without keeping track of the method of how it was disassembled, then you put it back together and discovered that 3 important parts were not included; how would you go about reassembling the clock?


If you had to learn a new computer language, how would you go about doing it?


You have been assigned to design Bill Gates bathroom. Naturally, cost is not a consideration. You may not speak to Bill.


What was the hardest question asked of you so far today?


If MS told you we were willing to invest $5 million in a start up of your choice, what business would you start? Why?


If you could gather all of the computer manufacturers in the world together into one room and then tell them one thing that they would be compelled to do, what would it be?


Explain a scenario for testing a salt shaker.
If you are going to receive an award in 5 years, what is it for and who is the audience?


How would you explain how to use Microsoft Excel to your grandma?


Why is it that when you turn on the hot water in any hotel, for example, the hot water comes pouring out almost instantaneously?


Why do you want to work at Microsoft?


Suppose you go home, enter your house/apartment, hit the light switch, and nothing happens – no light floods the room. What exactly, in order, are the steps you would take in determining what the problem was?

Infosys Latest Placement Paper Pattern And Selection Process






Infosys Latest Placement Paper Pattern And Selection Process
Company Name : Infosys
Type : Fresher, Job Interview
Hi friends..
    I attended Infy on 5th march, 2010 at RGM, Nandyal (Andhra Pradesh). There are 2 Rounds:-
Written And HR

We had 2 report before 9 am in the morning. Then there was a Powerpoint Presentation about the Infosys (about 1 hour). PPT was immediately followed by written test.

Written Test:
It consists of 2 sections - reasoning(30 questions,40 min) & vocab(40 ques, 35 min). Sectional Cutoff - Reasoning 60% (18/30), Vocabulary 50% (20/40). For a student who attended CAT is a smooth road to crack the written test.
REASONING consisted of following questions:-
1-5) 
Puzzle Test, Very damn easy.. A para was given on the basis of the buttons on the remote control. There are some buttons..
  • BR-seeks the channel to 2 places up (76 to 78, 13 to 15)
  • FC-seeks to our favorite channel
  • EN-seeks to next even numbered channel
  • PN-seeks to next prime numbered channel
  • PC-seeks to next channel
  • PR-seeks to previous channel
5 Questions are given on the basis of the above data.
6-10) This is also very easy if u have practice. 5 figures are given in each question. we should pick the odd figured one. u can find these questions in R. S. Agarwal. Very easy ones if u have thorough practice.
11-15) data sufficiency questions.

A question n correspondingly 2 statements are given for each question. The options for all the 5 questions are same.
A. Statement 1 alone is sufficient but statement 2 alone is not sufficient to answer the question asked.
B. Statement 2 alone is sufficient but statement 1 alone is not sufficient to answer the question asked.
C. Both statements 1 and 2 together are sufficient to answer the question but neither statement is sufficient alone.
D. Each statement alone is sufficient to answer the question.
E. Statements 1 and 2 are not sufficient to answer the question asked and additional data is needed to answer the statements.

Don't practice them from R. S. Agarwal.
The level of toughness is some what higher than R. S. Agarwal questions. Practice from TIME material.
16-20) Data Interpretation
Felt damn tough this one. I didn't do this at all. A table is given n 5 questions are given correspondingly. I felt tough because the data is given in the form of ton, ounce, troy ton, troy ounce, etc. as I don't know this conversion I dint do this.
21-25) Again Puzzle Test. - easy one.
Practice all the 6 sections of puzzle test from R. S. Agarwal thoroughly. very easy if u have enough practice. There are 5 music companies HMV, TIPS, T-Series, Venus, Sony. There are 5 films Dhadkan, Fiza, etc, There are 5 music directors A.R. Rahman, Anumalik, Ismail Darbar, etc. 5 questions are given. very easy if you practice well.

26-30) Syllogisms (Topic: Deductions in TIME, Logic in R. S. Agarwal)
Very easy if u practice. For concept, refer time material. don't study R. S. Agarwal (You will be messing if u study R. S. Agarwal). So please refer TIME for concept. And practice questions from both time as well as R. S. Agarwal for perfection.
I did all Syllogisms, Data Sufficiency n 1st puzzle test perfectly. 3 questions from 2nd Puzzle Test. 4 Questions from odd figures. (15 + 3 + 4= 22 questions perfectly). I guessed all the questions of data interpretation.
VOCABULARY SECTION: Easy if u have strong English Basics (Use of Tenses, Articles, Prepositions, Adjectives etc). Time management is the key and the most n most n most important factor in this section.
1-5) Reading comprehension. very lengthy one. Given detailed information of bananas, its uses, etc. It was a straight lift from TIME material. First read the question and then read the passage. Try to scan the keywords of the question in the passage firstly. After u get the keyword, try reading from 3 lines before the keyword and 2 lines after the keyword. Try to read as fast as you can.
6-10) Reading comprehension again. Very lengthy one. Given detailed information of the Sweatshops (Not sweet, it's sweat), Labour, Human rights, etc. Follow same tips.
11-18) Sentence correction.(practice from TIME). A very lengthy sentence is given. and the wrong part is underlined. 4 options are given. choose the correct one.
19-26) Sentence CompletionA blank is given in the question. pick the correct answer from the 4 options.
27-34) Sentence Correction4 sentences are given. All the 4 sentences are same with slight grammatical differences. Off from 4 sentences, Only 1 is correct. Choose the correct one.
35-40) InferencesEach question has a passage. 4 statements are given for each question. Pick up the appropriate inference.
All the sentences given in sentence completion and sentence correction are very lengthy. According to my knowledge, I did almost 30-35 questions correctly. I completed the vocabulary test in 23 min only. And I had 7 min to recheck the paper.
The answer sheet is given along with a blank paper for rough work. 1st reasoning question paper is given. after the completion of 40 min, reasoning question paper (not the answer sheet) is taken back. n vocabulary question paper is given.
I cracked the written test, Got 3rd place out of 800 members attended totally. At first, they announced top 20 members in the test. I got the 3rd place.
Then they announced the total Shortlisted candidates who cracked the written test. 64 members got through the written test. (64/80)
As i got the 3rd place, they called to attend HR according to the rank basis. there were 3 HRs. there was roughly not more than 5 minutes for me to attend the HR.
I attended the HR. interviewer was around the age of 50. For HR I prepared common questions like tell me about yourself, Hobbies, Activities in college, Leadership Skills etc...
I was expecting these questions but it was like a short pitch bouncer bowled at 160 kmph case for me. Only question I was asked is "don't tell me anything. Just tell about your project. don't tell anything other than this." In-spite-of this I managed well. So I advise you all to prepare well for your project also. My interview was completed at 4 pm in the evening.
At about 9 pm the results were announced. To my greatest surprise, I was shocked for not being selected. My name wasn't there in the list. :(
Out of 64, 37 students were selected at last. I don't know the criteria for the selection. "LUCK" should also favor for our success.

Infosys Test Paper -5 Jan 10



Company Name : Infosys

Type : Fresher
Exam/Interview Date : 05-Jan-2010
No of Rounds : Aptitude Test, Client/Manager Interview
Location : Delhi

Written test:
Aptitude
pattern is changed. No puzzles were there. 30 questions 40 mins

* set 1: a cube question, a cube painted with different colors, some sides and colrs given on the basis of data given find colors on other sides and ans some questions(easy one)
* set 2: series completion, where some figures are given. practice them from RS agarwal( verbal and non verbal reasoning)
* set 3: 5-6 data sufficiency qustions, easy but still practice them from MBA preparation stuff
* set 4: a bar graph question. just calculation based.
* set 5 : logical reasoning quaetion, heights and weights of some friends given , some conditions given( this was the toughest question) and i couldn't do it at all.
* set 6: syllogysm like ,all A's are B's , some C's are not A's ( please practice these type of question, otherwise u will get confused there, as these type of question are asked in many companies)
V.imp

ENGLISH SECTION:: 40 ques, 30 mins
V imp section, this is the eliminating section, most guys do not qualify this section's cut off, soo pleez prcatice for verbal scetion, refer MBA stuff, not at higher level but just the most basic level.
Speed is very important for this section. 2 PASSAGES( very long, dont do them first unless u r very confident on ur verbal section)
other things: grammer correction ques, conclusion , inference deduce type of question.
choose the correct sentence question,



not sure but cutoff was 50% verbal and 60 % apti

HR interview: make simple resume, prepare question like "about urself", hobies, about infosys, current news, etc etc( u mus be knowing all that) i will tell how u answer them nicely.

Listen guys, no one is perfect neither am I, so if u could'nt figure out ur strengths , weaknesses, impressive hobbies , plez sit and think over, what u do in free time , what u do daily, every one has some good qualities no matter how small they are. study urself a lot as this will help not only in Infosys but everywhere u go for job in ur entire life.
just dont say ur strenght is hard working or I dont have any weaknesses. I mean what ever u say u must be ready to state instances from ur life and backen it up.