Nov 6, 2010

Find out the no. of words.

How many words can be formed by using all the letters of the word "DAUGHTER"
so that the vowels always come together?


Answer:
4320

Explanation:
Given word contains 8 different letters.When the vowels AUE are always together
We may suppose them to form an entity,treated as one letter.

Then,the letters to be arranged are DGHTR(AUE).

These 6 letters can be arranged in 6P6=6!=720 ways
The vowels in the group (AUE) may arranged in 3!=6 ways.
therefore Required number of words=(720 X 6)=4320.

Find the output.

void main()
{
static int i=5;
if(--i)
{
main();
printf("%d ",i);
}
}


Output: 
0 0 0 0


Explanation:
The variable 'i' is declared as static, hence memory for 'i' will be allocated
for only once, as it encounters the statement. The function main() will be called
recursively unless 'i' becomes equal to 0, and since main() is recursively called, so
the value of static 'i' ie., 0 will be printed every time the control is returned.

Nov 4, 2010

Find the missing no?

Look at this series: 4, 7, 25, 10, __, 20, 16, 19, ... What number should fill the blank?

Answer:
13
 
Explanation:
Two series alternate here, with every third number following a different pattern. In the main series, 3 is added to each number to arrive at the next. In the alternating series, 5 is subtracted from each number to arrive at the next.

Nov 3, 2010

What is the relation?

Introducing a boy, a girl said, "He is the son of the daughter of the father of my uncle." How is the boy related to the girl?

Answer:
Brother
Explanation:
The father of the boy's uncle → the grandfather of the boy and daughter of the grandfather → sister of father.

Nov 2, 2010

What is the original price?

An article is sold at a certain price. By selling it at 2/3 of that price one loses 10%. Find the gain percent at original price.

Answer: 
35%
Explanation:


Nov 1, 2010

What is the direction??

Y is in the East of X which is in the North of Z. If P is in the South of Z, then in which direction of Y, is P?

Answer:
P is in South-West of Y.

Explanation:
P is in South-West of Y.

Oct 31, 2010

Companies Info

CEO's
TCS -N Chandrasekaran
INFOSYS -s.Gopalakrishnan
CTS-Francisco D'Souza
WIPRO - Girish S. Paranjpe,Suresh Vaswa

Oct 30, 2010

Companies Info

CEO's
Yahoo-Terry Semel
Google-Eric Schmidt
Oracle-Larry Ellison
Microsoft-Steve Balmer
Face Book-Mark Zuckerberg

Oct 29, 2010

Find The Output

main()
{
i=5;
printf("%d",i++ + ++i);
printf("\n%d",i++);
printf("\n%d",++i);
}

Answer:
12
7
9

Oct 28, 2010

What is the time??

A watch was set accurately at 8.30am and then lost 2 seconds for every 5 minutes. What time was indicated on the watch at 6.30pm on the same day?

Answer:
6.26pm

Explanation:
As given the question, the watch will lost 2 seconds for every 5 minutes,
therefore, for 10min = 4 sec
                     20min = 8 sec
                     40min = 16 sec
                     60min (1 hour)= 24 sec
                     10 hours = 240 sec which is 4 min.
Therefore after 10 hours, 4 min delay will occur i.e at 6.30pm it will show 6.26pm.