Aptitude Question:
Download Questions PDF

Mr. and Mrs. Aye and Mr. and Mrs. Bee competed in a chess tournament.Of the three games played:
a)In only the first game werethe two players married to each other.
b)The men won two games and the women won one game.
c)The Ayes won more games than the Bees.
d)Anyone who lost game did not play the subsequent game.
Who did not lose a game?

Answer:

AM=Mr. Aye

AF= Mrs. Aye

BM=Mr. Bee

BF=Mrs. Bee

The possible sequence of matches can be :

AM(Win) Vs.AF

AM(win) Vs. BM

AM Vs. BF(win) Hence Mrs. Bee never lose.

Download Aptitude Interview Questions And Answers PDF

Previous QuestionNext Question
The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A programmer sends a program to receiver. There it waits for 10 milliseconds. And response will be back to programmer in 20 milliseconds. How much time the program takes to get a response back to the programmer, after it is sent? Please tell me the answer with explanation?These ques were asked in the Intuit paper. There were 11 ques:

1. Write a C function(statement given) for definition of strlen(used to return the leanth of a null character terminated ASCII string):
unsigned int strlen(char *str)

2.U have a rectangular board with a rectangular hole in it(could be anywr at any inclination). Draw a single straight line to cut the solid are into 2 equal halves.

3.what is the output of the following prog?
#include
void main()
{
int i=10;
int j=i%2;
if (j==0)
cout<<"Got it:"< else
cout<<"out it:"< }