Questions

Q:

Which of the statements given below are correct?

A) Garbine Muguruza won the Tennis 2017 French Open Women's Singles.

B) Rafael Nadal won the Tennis 2017 US Open Men's Singles.

C) Valtteri Bottas won the Formula One 2017 Brazilian Grand Prix.

 

A) Only A B) Only B
C) Only C D) Both A and B
 
Answer & Explanation Answer: B) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 19840
Q:

Crack the Missing Letter Puzzle?

 

s1509602308.jpg image

A) I B) K
C) L D) W
 
Answer & Explanation Answer: C) L

Explanation:

13 x 2 = 26 => Z (opposite side)

12 x 2 = 24 => X (opposite side)

13 x 1 = 13 => M (opposite side)

12 x 1 = 12 => L (opposite side)

Report Error

View Answer Report Error Discuss

Filed Under: Missing letters puzzles
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

37 19823
Q:

Which one of the following mixture is homogeneous

A) starch and sugar B) methanol and water
C) graphite and charcoal D) calcium carbonate and calcium bicarbonate
 
Answer & Explanation Answer: B) methanol and water

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

76 19810
Q:

What is the output of this C code?

        #include <stdio.h>
        void main()
        {
            int x = 97;
            char y = x;
            printf("%cn", y);
        }

A) a B) 97
C) Run time error D) None
 
Answer & Explanation Answer: A) a

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 19791
Q:

Find the odd word/letters/number from the given alternatives.

(A) BCE (B) WXZ (C) MNP (D) GHK

A) A B) B
C) C D) D
 
Answer & Explanation Answer: D) D

Explanation:
Report Error

View Answer Report Error Discuss

0 19779
Q:

Which of the statements given below are correct?

 

A) In 2017, Virat Kohli captained the IPL team Rising Pune Supergiant.

B) In 2017 Pro Kabaddi League, Surjeet Singh played for Bengal Warriors.

C) United Kingdom hosted the Table Tennis 2017 ITTF Women's World Cup.

 

A) Only B B) Both A and C
C) A, B and C D) No option is correct
 
Answer & Explanation Answer: A) Only B

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

3 19774
Q:

Who is the author of "Unhappy India"?

A) Vikram Seth B) Lala Lajpath Roy
C) Chethan Bhagath D) None
 
Answer & Explanation Answer: B) Lala Lajpath Roy

Explanation:

Lala Lajpath Roy is the author of Unhappy India

Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

91 19742
Q:

If the following program (myprog) is run from the command line as 

myprog 1 2 3 

what would be the output?

main(int argc, char *argv[])

{

    int i, j = 0;

    for (i = 0; i < argc ; i++)

           j = j + atoi ( argv[i]);

    printf ("%d", j);

}

A) 123 B) 6
C) Error D) "123"
 
Answer & Explanation Answer: B) 6

Explanation:

When atoi() tries to convert argv[0] to a number it cannot do so (argv[0] being a file name) and hence returns a zero.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 19722