top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How many minimum number of Eggs were there in the basket ?

+1 vote
1,128 views

A women was carrying a basket of Eggs when a passer-by bumped her and she dropped the basket and all the eggs broke, Passer-by asked her number of eggs to pay her. Women replied, I don’t remember exactly , but I do recall that whether I divided the eggs by 2,3,4,5 or 6 there was always one egg left over. When I took the eggs out in groups of seven, I emptied the basket.

Can you tell, “How many minimum number of Eggs were there in the basket”?

posted May 13, 2014 by Nimish

Share this puzzle
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

**Answer is 301
We can also solve it by programming like:

            int i=0;
    while(true){
        if(i%2==1 && i%3==1 && i%4==1 && i%5==1 && i%6==1 && i%7==0){
            System.out.println("Answer is "+i);
            break;
        }else{
            i++;
        }
    }**
answer Jun 20, 2014 by Anuj Agrawal
0 votes

(ANSWER minimum number = 301)

Use MS Office Excel
in Column A input A1=1, A2=2 ...... to A1000=1000
In cell B1 input the following formula:
=AND((MOD(A1,2)=1),(MOD(A1,3)=1),MOD(A1,4)=1,MOD(A1,5)=1,MOD(A1,6)=1,MOD(A1,7)=0)
copy the formula to B2 ..... B1000
Find which of the results is/are TRUE
Between 1 to 1000 we find two results are true which are 301 and 721

answer Oct 30, 2015 by Parlin Simanjuntak



Similar Puzzles
0 votes

A man and a woman both carrying baskets with eggs inside passed each other on the sidewalk. The man told the woman, "If you give me one of your eggs I will have twice as many as you, but if I give you an egg you and I will have the same amount."

How many eggs were in each basket?

+3 votes

In a basket of apples,
when counted in twos, there was one extra
when counted in threes, there were two extra when counted in fours, there were three extra
when counted in fives, there were four extra
when counted in sixes, there were five extra.

However, if the apples were counted in sevens, no extra apple was left.

Can you calculate the minimum number of apples that were present in the basket ?

0 votes

On taking delivery of a consignment of eggs the market stall owner was furious to find that several were cracked. In fact, on counting them up in order to assess the damage he found that 72 were cracked, which was 12 per cent of the total consignment.
How many eggs in total were in the consignment?

0 votes

A certain number of workers can finish a piece of work in 100 days.
If there were 10 workers less, it would take 10 days more for the work to be finished.
How many workers were there originally?

0 votes

A certain number of men can finish a piece of work in 30 days.
If however there were 15 men less it will take 30 days more for the work to be finished.
How many men were there originally?

...