There is a new game in which 3 person play each other and only one wins. If 81 person participated in the tournament give a quick reply that how many matches will be played to decide the winner
Read Answers(11) | 9,642 Views |
We are sitting across a round circular table ( Me and you ) and we start a game of taking turns in placing a coin on the table ( i.e. I put one coin and then you put one coin and so on ) the last person who is not able to put the coin on table losses.
If you start this game who will win this game ? And what strategy you will apply to increase your probability of winning this game.
(
Assumptions
Size of table is much larger then the size of coin
Both of us have infinite supply of same sized coins
)
Read Answers(9) | 8,098 Views |
Write an algorithm for Soduku puzzle
Read Answers(18) | 21,157 Views |
How many trees can you plant on Earth so that each tree is equidistant from any other tree
Read Answers(16) | 10,581 Views |
You have twelve coins, all look alike. All coins are of equal weight except one, which may be heavier or lighter.
You have a pan balance and you can use it only three times. Put coins in different combinations and weigh three times. After the third time you should precisely say which coin is the culprit and whether it is heavier or lighter than the rest.
Read Answers(22) | 7,032 Views |
1) Write a function int round(float x) to round off a floating point num to int.
2)Write a program to swap two integer pointers.
Read Answers(21) | 14,206 Views |
Can you overload a function with the return type?
what is the output of the below.?why?
Class A
{
public:
void func();
};
class B:pubic A
{
void func(int a);
};
int main()
{
B derv;
derv.func();
}
Read Answers(24) | 22,607 Views |