There are N egg baskets and the number of eggs in each
basket is a known quantity. Two players take turns to remove
these eggs from the baskets. On each turn, a player must
remove at least one egg, and may remove any number of eggs
provided they all belong to the same basket. The player
picking the last egg(s) wins the game. If you are allowed to
decide who is going to start first, what mathematical
function would you use to decide so that you end up on the
winning side?

Answers were Sorted based on User's Feedback



There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / guest

i need answer for it

Is This Answer Correct ?    4 Yes 2 No

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / playboy

There are N buckets & each contains n eggs in it.
Then let opponent to start a game.
If opponent picks x eggs then u choose n-x from perticular
bucket.

This way u can win...

Is This Answer Correct ?    2 Yes 2 No

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / khushboo

It is said that there are N egg bags with eggs in it. So
every bag should have eggs..
Now answer depends on Number of Bags containing only one bag

Suppose there is
1. all bag contains more then 1 egg then I will choose first
2. only one bag with one egg then I will choose second
3. Two bags contain one egg I will choose third..

So It depends on how I reach to the last bag in first place

Is This Answer Correct ?    1 Yes 2 No

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / lokesh

if the XOR of all the numbers of eggs is zero than second
player win else first player will win.
(From NIM game(game theory))

Is This Answer Correct ?    1 Yes 2 No

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / guest

n-1 if n is odd and n+1 if n is even

Is This Answer Correct ?    0 Yes 2 No

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / guest

n-1 if n is odd and n+1 if n is even

Is This Answer Correct ?    0 Yes 2 No

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / ghfhj erwe

0

Is This Answer Correct ?    1 Yes 4 No

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take..

Answer / rahul

N%2

if it gives 0 then the person can choose to go second.if
nonzero then he should go first.But this logic is acceptable
only if there is atleast one egg in each basket.

Is This Answer Correct ?    2 Yes 7 No

Post New Answer

More C Interview Questions

Can we include one C program into another C program if yes how?

7 Answers   Infosys,


What is the difference between procedural and declarative language?

0 Answers  


What are pointers in C? Give an example where to illustrate their significance.

0 Answers   Wipro,


What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }

21 Answers   ADITI, Student, TCS,


# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }

5 Answers  






What is function prototype in c with example?

0 Answers  


What is the use of static variable in c?

0 Answers  


What are the different pointer models in c?

4 Answers  


Is fortran still used in 2018?

0 Answers  


How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran

0 Answers  


write a program whose output will be- 1 12 123 1234

10 Answers  


What is strcmp in c?

0 Answers  


Categories