Amazon Interview Question for Software Engineer / Developers


Country: India




Comment hidden because of low score. Click to expand.
5
of 5 vote

I will ask interviewer more questions about whats in the bottle. The reason is if bottle contents are something which can be individually selected, then this can be solved in a single weighting as follows:

Lets say after asking questions, We have more information that bottle contains pills. Every pill is of 10grams each except in one of the bottle which has 9 grams pills. Also say the bottles are marked 1, 2, 3, 4 and out of that bottle 3 has contents with less weight.

So I will pick up 1 pill from bottle 1, 2 pills from bottle 2, 3 pills from bottle 3 and 4 pills from bottle 4.

So I have total of 1 + 2+ 3+4 pills = 10 pills

Their ideal weight should have been 10 pills of 10 gm each = 100 grams

Now since bottle 3 is defective, total weight of the pills would come out to be 97 grams.

That will tell us that its less by 3 grams so its 3rd bottle which is defective. If the weight would have been less by 4 grams, then the 4th bottle would have been at fault.

Programs for the same shouldnt be hard to write.

Saurabh

- Saurabh May 06, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

recommendable !

- Anand July 22, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

Can anyone explain this further?

- Anonymous January 27, 2016 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

requires 2 weighs

- code May 04, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

or 3 bottles

- nemestnyi May 04, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

You said it would need 2 weighs for 4 bottles.
Can you explain how it takes 2 weighs?

- hankm2004 May 05, 2014 | Flag
Comment hidden because of low score. Click to expand.
1
of 1 vote

1) take 2 on one side and 2 on other.. one side will be heavy and other will be less as three bottles are of same weight..
2) Now from one side separate the two bottles and weigh them obviously one will be different from other..

- Ajay May 05, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

Pick 2 bottles at random. Weigh, if unequal then you are in luck, you now know exactly which one is defective, with probability of 0.58333
if equal, choose 1 of remaining bottles, probability of you picking the right bottle : 0.5

Best of Luck :)

- AlgoAlgae May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

Lol

- Anonymous May 07, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

require 2 weights...

- lal May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

What If, If I put bottles one by one on the weighting machine and keep checking the weights, every time when we put bottle of same weight the total weight will be multiple of weight of one bottle but as soon as we put less weight bottle it will be less than that, and thus we come to know which bottle is less heavy, not sure It might be a very bad idea ;)

- Ajay Kumar May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

put two bottles at one side and remaining bottles at other side of the weighing machine, which side has less weight, choose which one from that side.

- Anonymous May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

public class test2 {

	public static void main(String[] args) {
		int[] a = {3,3,3,1};
		int compare = 0;
		int preResultIndex1 = 0;
		int finalValue1 = 0;
		int preResultIndex2 = 0;
		int finalValue2 = 0;
		
		for(int i=0; i<a.length;i++){
			if(i ==0)
				compare = a[i];
			else if(i == 1){
				if(compare != a[i]){
					preResultIndex1 = 0;
					preResultIndex2 = 1;
					finalValue1 = compare;
					finalValue2 = a[i];
				}
			}else if(i == 2){
				compare = a[i-1];
				if(compare != a[i]){
					if(preResultIndex2 != 0){
						if(finalValue1 == a[i]){
							System.out.println("found:" + preResultIndex2);
							break;							
						}else{
							System.out.println("found:" + preResultIndex1);
							break;
						}
					}else{
						preResultIndex1 = i-1;
						preResultIndex2 = i;
						finalValue1 = compare;
						finalValue2 = a[i];
					}
				}else{
					if(preResultIndex2 != 0){
						if(finalValue1 == a[i]){
							System.out.println("found:" + preResultIndex2);
							break;							
						}else{
							System.out.println("found:" + preResultIndex1);
							break;
						}
					}
					
				}
			}else if(i == 3){
				compare = a[i-1];
				if(compare != a[i]){
					if(preResultIndex2 != 0){
						if(finalValue1 == a[i]){
							System.out.println("found:" + preResultIndex2);
							break;							
						}else{
							System.out.println("found:" + preResultIndex1);
							break;
						}
					}else{
						if(preResultIndex2 != 0){
							if(finalValue1 == a[i]){
								System.out.println("found:" + preResultIndex2);
								break;							
							}else{
								System.out.println("found:" + preResultIndex1);
								break;
							}
						}else{
							System.out.println("found:"+i);
						}
					}
				}
			}
				
		}
	}
}

- mannerh1 May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

can you please explain the algorithm..?

- Ajay May 05, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

One scan is needed for finding one lower digit.
For the first time you can register first digit to compare.
For the second time, you can compare the first digit and present one.
If they have the same value, you can move next round.
If not you can see what is the lower one between two digits with saving the values and indexes.
For the third time, you can compare the second digit and third digit.
If they have the same value, you have to compare the results of the previous round. That means you have to pick up one of two different values.
For the fourth time, you can compare the third digit and fourth digit.
If previous results are setting, you can find which one is lower.
Using preResultIndex2 variable you can see the results of previous round.

- mannerh1 May 05, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

God know how with only 1 measurement ! But what we can do is keep all of the four bottles on the weighing machine... Note the total weight, and pseudo individual weights (total weight / 4..).. remove one bottle, now note down the weight of the removed bottle (total weight - weight of 3 bottles), if it is less than the pseudo individual weight then this is the bottle which is odd man out. If the removed bottle's weight is greater than pseudo individual weight then this bottle is one among the 3 bottles which weigh same. Now you know the actual weight of the true bottle. keep removing the bottles until you find a bottle which is not same as weight of the true bottle.

- Pradeep Kashyap May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 1 vote

effectively in the worst case, you will remove all the bottles except one and weighing 4 times.. (or n times for n bottles.).. It is the most ineffective way

- Ajay May 06, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

I think we need to design a 3-WAY comparison scale... LOL

- ninhnnsoc May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

I think u r correct we need to justify why it can't be done in one shot and go for 4 4 way weighing machine.

- anonymous May 05, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 2 vote

Bottles are 1, 2, 3, 4. L = Left pan of scale, R = Right pan of scale

Step 1:

L(1), R(2) - if pan weights are not equal, we have found the bottle that weighs less
If pan weights are equal, do Step 2.

Step 2:

L(1, 3), R(2,4) - this step will tell us which of the two bottles - 3/4 is of lesser weight.

All bottles have been weighed just once and we know which bottle weighs less.

- Prashant May 06, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

How about using four different weighing machines and keep all the bottles on it at the same time, the one which weighs less is defective.. in one single weigh...may not be cost effective though but worth a try.

- Airfix May 06, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
1
of 1 vote

lols.. if cost effectiveness is the thing then why are we weighing them..

- Ajay May 06, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

not likely to be done...

- linusyang2016 May 10, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Get 3 sticks of wood and mark the middle. Find some rope and time one rope to the end of the first stick (stick 1) to the middle of one of the other sticks (stick 2), repeat the process on the other end of stick 1 (to stick 3). Tie the bottles to the ends of stick 2 and 3, hang the contraption from the middle of stick 1 and you will have a double balance.

There are two possible scenarios, the bottle is defective because it either weights less than the others or it weights more than the others. In either case you will find which one is defective by looking at the balance of stick 2 and 3.

- Ff May 10, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 votes

more clarifications please

- linusyang2016 May 11, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 votes

Last sentence is false.
The same end of the stick (say end x) will go down when either:
1) defective bottle is heavier and is attached to x
2) defective bottle is lighter and is attached to the diagonally opposite of x
So how would you tell which case is it?
If we are told that defective bottle is heavier (or lighter) then, indeed, this kind of scale would work.

- Anonymous May 23, 2014 | Flag
Comment hidden because of low score. Click to expand.
0
of 0 vote

We can't do it in a single weigh but if there are 8 bottles and 1 bottle weigh different than the other 7, then we can find it in 2 weighs.
1) Divide the 8 bottles in a group of 3,3,2
2) weigh group of 3 and 3, if the weight is equal then the bottle is present in the other group of 2 and we can determine in one more step.
3) if the bottle is present in one of the group in 3, then choose 2 bottles at random from this group weigh them if the weight is equal, the defected bottle is the other one which we left else we have found the bottle in group of two.

- Ajay July 07, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

We can find defective bottle in only one weight:
1. Put 2 bottle at one side and remaining 2 at another side of weight machine.
2. One side will heavy and another side will be less.(due to one of them have less weight)
3. Remove one and one bottle form both side.(one from left and one from right side of weight machine)
4. If remaining bottle on weight machine are equal.
5. Removed bottle form less weight side will be defective.
6. Else remaining bottle on weight machine will show the defective bottle.

- singh.durgesh2011 October 30, 2019 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More