Searching for "L"

Q:

enum colors {BLACK,BLUE,GREEN}

main()

{

printf( "%d..%d..%d", BLACK, BLUE, GREEN );

return(1);

}

A) 1..2..3 B) 0..1..2
C) 1..1..1 D) 0..0..0
 
Answer & Explanation Answer: B) 0..1..2

Explanation:

enum assigns numbers starting from 0, if not explicitly defined.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

Q:

Who has scored the most Test hundreds ever

A) Steve Waugh B) Sachin Tendulkar
C) Shane warne D) Sunil Gavaskar
 
Answer & Explanation Answer: B) Sachin Tendulkar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

Who is the leading wicket taker in the history of test cricket

A) Shane Warne B) Brian Lara
C) Courtney Walsh D) Muttiah Muralitharan
 
Answer & Explanation Answer: D) Muttiah Muralitharan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

Two electric bulbs marked 25W – 220V and 100W – 220V are connected in series to a 440Vsupply. Which of the bulbs will fuse?

A) 25 W B) Both
C) 100 W D) Neither
 
Answer & Explanation Answer: A) 25 W

Explanation:

Resistances of both the bulbs are

 

R1=V^2/P1 = 220^2/25

 

R2 = V^2/P2 = 220^2/100

 

Hence  R1gt ; R2

 

When connected in series, the voltages divide in them in the ratio of their resistances. The voltage of 440 V devides in such a way that voltage across 25 w bulb will be more than 220 V. Hence 25 w bulb will fuse.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE

Q:

#define clrscr() 100

main()

{

clrscr();

printf( "%dn", clrscr() );

}

A) 100 B) 0
C) Compilation error D) Exception occurs
 
Answer & Explanation Answer: A) 100

Explanation:

Preprocessor executes as a seperate pass before the execution of the compiler. So textual replacement of clrscr() to 100 occurs.The input program to compiler looks like this :

main ()

{

100;

printf("%d\n",100);

}

Note: 100; is an executable statement but with no action. So it doesn't give any problem.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

Q:

Who has scored the most runs in a single First class innings

A) Hanif Mohammad B) Brian Lara
C) Sir Donald Bradman D) Sachin Tendulkar
 
Answer & Explanation Answer: B) Brian Lara

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

Q:

The present worth of Rs.169 due in 2 years at 4% per annum compound interest is

A) Rs.156.25 B) Rs.150
C) Rs.140 D) Rs125.25
 
Answer & Explanation Answer: A) Rs.156.25

Explanation:

 

Present Worth

 

=P1+R1002

 

=1691+41002

 

= Rs.156.25

Report Error

View Answer Report Error Discuss

Filed Under: Compound Interest
Exam Prep: Bank Exams
Job Role: Bank PO

Q:

When was the first cricket test match played

A) 1873 B) 1877
C) 1870 D) 1788
 
Answer & Explanation Answer: B) 1877

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports