The king arranged a party and ordered 1000 drink bottles. He found that One drink bottle consists of poison which causes death within 10 min even a drop of drink taken. There are 1000 slaves to check which bottle consists of poison.
Least how many slaves required to point out the poisonous bottle? (Party starts in 30 minutes)
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
We can use binary system .........1000<1024=2^10.........
We can test the samples
slave 1= bottle 1:
slave 2= bottle 2:
slave 3= bottle 1 + bottle 2:
.......0000000001 (slave 1 only died) means first bottle is poisonous
.......0000000010 (slave 2 only died) means second is poisonous
.......0000000011 (slave 1 and slave 2 died) means third is poisonous... so on....
So Answer=10