Wednesday, January 5, 2011

Microsoft Placement Process


Company Profile

Many people think Microsoft = software. They do software—but they also do hardware, services, research, and more. They work on PC operating systems and applications—like Windows and Windows Live. Products for IT professionals and developers—like Windows Server and Visual Studio. Online services such as Bing and MSN. Business solutions like Office and Exchange. And devices like Xbox, keyboards, webcams, and mice.


Eligibility CSE and IT


Package :  10.49 LPA (approx)



Placement Process Details at NIT Suratkal:

The process followed by Microsoft was as follows:

12-Aug - 10:

05:00pm-06:00pm-Written test –Final & Pre-final year tests will be conducted Simultaneously in separate classrooms

13-Aug-10

09:00am-1:00pm- Test Paper Evaluation 
11.00am- PPT by Shamik Basu
3.30pm: Test Result announcement
4.00pm- Final year Interview Process


14-Aug-10:

09:00am -Intern Interview process


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, dx

* Imagine 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?

* Interviewer hands you a black pen and says nothing but “This pen is red.”

Saturday, December 18, 2010

Top 50 Engineering College in India

Last few days were pretty busy for JobKiBaate team. After hard work of 1 month we are able to devise statistical method to ‘rank Engineering Colleges’ across country.
Details are posted as below:
 
Why engineering colleges ranking?

Consider this:
Ø  For fresher to decide the best option available.
Ø   For colleges to know what they need to improve and where they stand in the pecking order.
Ø   For recruiters and human resource managers to decide the college they would visit for campus interviews and negotiates pay packages.


What is new in this ranking? 
For giving rank to the best engineering college in India, I have considered the following parameters
1.   Selection process                 -20%
2.   Academic excellence            -20%
3.   Infrastructure                       -20%
4.   Research work                    -20%
5.   Placement                           -20%


 
RANK
INSTITUTE NAME
1
Indian Institute of Technology, Bombay
2
Indian Institute of Technology, Delhi
3
Indian Institute of Technology, Kanpur
4
Indian Institute of Technology, Kharagpur
5
Indian Institute of Technology, Madras
6
Birla Institute of Technology, Pilani
7
Indian Institute of Technology, Roorkee
8
Indian Institute of Technology, Guwahati
9
Institute of Technology, BHU
10
National Institute of Technology, Trichy
11
National Institute of Technology, Surathkal
12
National Institute of Technology, Warangal
13
Indian School of Mines, Dhanbad
14
International Institute of Information Technology, Hyderabad
15
Delhi Technological University (DCE), Delhi
16
Netaji Subhas Institute of Technology, Delhi
17
Birla Institute of Technology, Mesra
18
Jadavpur University
19
Anna University, Chennai,
20
National Institute of Technology, Allahabad
21
National Institute of Technology, Calicat
22
National Institute of Technology (MNIT), Jaipur
23
PEC University of Technology, Chandigarh
24
National Institute of Technology, Rourkela
25
Thapar University, Patiala
26
National Institute of Technology (SVNIT), Surat
27
National Institute of Technology (VNIT), Nagpur,
28
Indian Institute of Information Technology Allahabad
29
Bengal Engineering and Science University, Shibpur
30
Harcourt Butler Technological Institute, Kanpur
31
National Institute of Technology (MANIT), Bhopal
32
PSG College of Technology, Coimbatore
33
SASTRA, Thanjavur
34
VIT University Vellore
35
Veermata Jijabai Technological Institute (VJTI), Mumbai
36
National Institute of Technology, Durgapur
37
Manipal Institute of Technology, Manipal
38
National Institute of Technology, Kurukshetra
39
National Institute of Technology, Jalandhar
40
National Institute of Technology, Jamshedpur
41
Osmania University, Hyderabad
42
Amrita Institute of Technology & Science, Coimbatore
43
CUSAT Kochi
44
RV College of Engineering, Bangalore
45
College of Engineering, Calicut
46
Indian Institute of Information Technology, Gwalior
47
National Institute of Technology, Silchar
48
Coimbatore Institute of Technology, Coimbatore
49
Dhirubhai Ambani IICT, Gandhinagar
50
College of Engineering, Pune




Comment here about the Ranking:

Thursday, December 16, 2010

What is Inside India's $35 PC?



It is a PC, not a toy. And it works quite fine. But the actual cost once it is commercially produced could be a little more...


It is not without reason that Renault-Nissan CEO Carlos Ghosn called India the land from where he could learn some frugal engineering. While Ghosn may have had Tata Nano on his mind, the case, it seems, is no different when it comes to the PCs.

India's $35 PC—that has evoked extreme reactions from different sections—may not be a market ready product yet like Nano, but it is certainly not a toy. Dataquest managed to lay its hands on one of the devices and found that despite a few shortcomings, it is actually a working tablet with fairly smooth functionality.

First things first. It is actually an Android-based tablet, not Linux-based, as reported by a section of the media. The processor is an ARM 9 (Freescale i.MX233). It is encased in a rubber frame, and the look and feel is quite good. Since the PC has not been named yet, the shiny encryption on the rubberized cover is Android.

The tablet has  Wi-Fi connectivity, a bulit-in camera and has everything that one can expect from an Android Tablet: calendar, i-reader and other apps. It has a touch screen panel with a stylus and a virtual keyboard. On the left, there is a mini SD card slot, SIM card slot, two mini USB ports, a video out and a headphone jack too. It has internal memory of 2 GB. And the fact that there two USB ports available, one can easily fit in a USB keyboard and mouse if desired. It has a solar power option too, which though may not be an invention, is good enough if comes within the $35.

That is all about specs...

So then, what all can the little master essentially do? Already developed within the IIT systems, the tablet has preloaded educational software and most of the lectures are aimed to be delivered with it. Videos of lectures can be loaded to the tablet and students won’t necessarily have to miss one anymore. This writer had the opportunity to watch one by Prof T S Navarauan.

In the two hour long involvement with the device, besides getting a feel of it and trying hard to understand Prof Navarauan, this writer also managed to look at its other functions like the media player, open office, multiple content viewer, check mails and located CyberMedia office on Google Map, even greeted a friend on Skype and read few paragraphs using PDF reader. That is really a long list. And at one time one felt that one was probably overloading it with too many commands, but the good thing is it didn’t give up. It did not hang.

What, however, was a little difficult to deal with was that it doesn’t have a hard-drive. Another drawback is that  the webcam is on the back panel. Also, its 7″ 800×480 touchscreen was quite resistive – not bad but resistive. This is supposedly to bring down the cost, as a classy touchscreen is sure to bring up the cost largely. Android being the console, the software for it can be from anywhere. The device will always be dependent on open-source software, which I feel if used on a regular basis, would need some access to regular technical support. Microsoft has apprently already offered its Windows CE Software for the tablet.

What is $35 in $35 PC?
While the device passed the test, the story gets a little diluted when one comes to calculating the cost. The $35 that has got the world make notice, Dataquest learns, is broadly the material cost and not the total cost of the finished product. That means the production cost and other indirect costs are not included in this. Of course, the price will still be $35 because of subsidies, but the cost would be a little more. But considering the facts, it will be 20% to 40% extra, not 100% extra, if it comes to the commercial market.

This is how the cost break-up looks like: the ARM9 Processor costs $5, memory costs for $3, WiFi for $4, other discrete components for $3, battery for $5, and the 7″ 800×480 touchscreen for $15. That makes it $35.


The Story Behind the PC
The inspiration to make this tablet ,of course came from the MIT’s $100 Laptop, informs two people who have been closely associated with the project. In fact, unlike what has been reported by media, it did not come out of student projects. It was Kapil Sibal who was personally involved in ensuring that it happens. And his initial target was making a PC for $10. He apparently approached a few Indian companies but got lukewarm experience. It is then that he approached the institutes. Research scholars in four IITs—Bomaby, Madras, Kharagpur, and Kanpur—and IISc Bangalore—were put together for the project. It was all done centrally as many of the people who worked on teams at each of the locations, in fact, did not even know who was working in another institute. The motherboard design actually came from a student in VIT Vellore and the PCB was made by IIT Kanpur on the design. The idea was to make it at $10. But finally, it could go down to $35.

However, the research team members are hopeful that if the hardware price-drop continues, in future it could go down further.

About 8,500 colleges are expected to sign up for the first phase of roll-out. Reportedly, the Manipur Government has already announced its order of 75,000 tablets for the students of its state. The production is expected to start in next three months overseas but will be shifted back to the country after sometime.

It is learnt that the Chief of ‘One Laptop Per Child’ (OLPC), Nicholas Negroponte has invited the HRD ministry officials to visit Massachusetts Institute of Technology (MIT) and asked the Indian Government to make the laptop open for the students of other countries too. And you thought our calling it frugal engineering was just some journalistic excess?

Thursday, December 9, 2010

Record 1359 Offers : Tata Consultancy Services Placement process at SASTRA Thanjavur



 
 


TCS visited SASTRA, Thanjavur on 7th, 8th and 9th December, 2010 and recruited astonishing 1359 students from there. After CTS show at VIT Vellore this is remarkable. TCS in past also recruited in big number from south but it seems highest ever one institute offers..


The process followed by them was aptitude test followed by an interview. Test was conducted online and contains 3 sections; interview was mainly focused on HR and technical questions.
  

Offer by the company:
 
Eligibility
B.Tech, M.Tech, MCA (60%+ in 10th, 12th & B.Tech/PG)
Salary
3.16LPA
Profile Offered
Assistant System Engineer Trainee
Location
Undisclosed
Date of visit
  7th, 8th and 9th December 2010
Bond
2 Years’ service bond (Rs.50,000)


Placement Process Details:

Recruitment procedure: The process followed by TCS was: 

1. Aptitude Test (Online)

2. Personal interview

Aptitude Test:

-Online
-Quantitative: 80 minutes, 35 questions 

Questions asked by TCS
 
1) A game is played between 2 players and one player is declared as winner. All the winners from first round are played in second round. All the winners from second round are played in third round and so on. If 8 rounds are played to declare only one player as winner, how many players are played in first round


2) Ferrari S.P.A is an Italian sports car manufacturer based in Maranello, Italy. Founded by Enzo Ferrari in 1928 as Scuderia Ferrari , the company sponsored drivers and manufactured race cars before moving into production of street-legal vehicles in 1947 as Ferrari S.P.A. Throughout its history, the company has been noted for its continued participation in racing, especially in Formula One where it has employed great success . Rohit once bought a Ferrari. It could go 4 times as fast as Mohan's old Mercedes. If the speed of Mohan's Mercedes is 46 km/hr and the distance traveled by the Ferrari is 953 km, find the total time taken for Rohit to drive that distance.


3) A sheet of paper has statements numbered from 1 to 70. For all values of and from 1 to 70. Statement n says 'At least n of the statements on this sheet are false.' Which statements are true and which are false?


4) Middle earth  is a fictional land inhabited by Hobbits, Elves, dwarfish and men. The Hobbits and the Elves are peaceful creatures who prefer slow, silent lives and appreciate nature and art. The dwarfish and the men engage in physical games. The game is as follows. A tourney is one where out of the two teams that play a match, the one that loses get eliminated. The matches are played in different   rounds where in every round, half of the teams get eliminated from the tournament. If there are 8 rounds played in a knock-out tourney how many matches were played?


5)Given a collection of points P in the plane, a 1-set is a point in P that can be separated from the rest by a line, .i.e the point lies on one side of the line while the others lie on the other side.
The number of 1-sets of P is denoted by n1(P). The minimum value of n1(P) over all configurations P of 5 points in the plane in general position(.i.e no three points in P lie on a line) is
 
6)
The citizens of planet negate are 8 fingered and have thus developed their decimal system in base 8. A certain street in negate contains 1000 (in base 8) buildings numbered 1 to 1000. How many 3s are used in numbering these buildings?

Personal Interview:
 
Interview was both TECH and HR

Tech interview:

In Tech interview following things were asked: DBMS - Normalization, SQL Queries, SQL Tuning OS - Mutex, Semaphores etc. C - Swapping without third variable, GCD / LCM, Fibonacci.

Mainly asked from your project and area of interest..


HR Interview: In HR normal questions were asked like why do you want to join us and why should I hire you etc.

Tell me about yourself?
Why should I hire you?
Why TCS?
Why IT sector?
Latest trend in IT sector?
How do you see yourself in 5 years?

 
Result:
Total: 1359


 
Company Profile: 
 
Tata Consultancy Services Limited (TCS Limited) is one of the world's largest providers of information technology, consulting, services and business-process outsourcing operations. As of 2007, it is Asia's largest and India's No.1 IT services firm with the largest number of employees among all the Indian IT companies with strength of over 100,000 IT consultants in 47 countries.