Questions

Q:

Select the antonym of

to abnegate

 

A) to eject B) to evict
C)  to admit D) to bounce
 
Answer & Explanation Answer: C)  to admit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 22977
Q:

Read each sentence to find out whether there is any error in any part

Coleridge as well as Wordsworth were(a) of the opinion that the opposite of poetry is(b) not prose but(c) science. No error.(d)

A) a B) b
C) c D) d
 
Answer & Explanation Answer: A) a

Explanation:

Were’ needs to be replaced with ‘was’ to make the sentence grammatically correct. This is because,‘If the subjects are joined by as well as, with, along with, together with, and not, in addition to, but, besides, except, rather than, accompanied by, like, unlike, no less than, nothing but, led by, headed by, guided by, controlled by, governed by,etc..Then the verb will agree with the first subject’ Thus, the correct sentence would be, ‘Coleridge as well as Wordsworth was of the opinion that the opposite of poetry os not prose but science’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 22928
Q:

What is the heat released by a heating filament rated 20 W when it is kept on for 2 seconds?

 

A) 40 B) 10
C) 80 D) 20
 
Answer & Explanation Answer: A) 40

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 22925
Q:

What is the output of this C code?

   #include <stdio.h>
    int main()
    {
        int a = 1, b = 1;
        switch (a)
        {
        case a*b:
            printf("yes ");
        case a-b:
            printf("non");
            break;
        }
    }

A) yes B) no
C) Compile time error D) yes no
 
Answer & Explanation Answer: C) Compile time error

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

7 22794
Q:

A sum of money becomes 7/6 of itself in 3 years at a certain rate of simple interst. The rate per annum 

A) 5% B) 5.5%
C) 6% D) 6.5%
 
Answer & Explanation Answer: B) 5.5%

Explanation:

sum = x. amount =7x/6.

S.I. =(7x/6 – x) = x/6 ; time = 3 years

Rate =[ (100 * x) / (x * 6 * 3)]% = 5.5%

Report Error

View Answer Report Error Discuss

18 22738
Q:

Which of the following software applications would be the most appropriate for performing numerical and statistical calculations?

A) Database B) Document Processor
C) Graphic Package D) Spread Sheet
 
Answer & Explanation Answer: D) Spread Sheet

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

76 22732
Q:

The British Governor General and Viceroy who served for the longest period in India was

A) Lord Curzon B) Lord Lrwin
C) Lord Dalhousie D) Lord Linlithgow
 
Answer & Explanation Answer: D) Lord Linlithgow

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

62 22724
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

8 22691