Questions

Q:

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

When I finished writing the letter,(a) I could not help admiring myself to have(b) achieved the impossible(c). No error.(d)

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

Explanation:

The modal ‘Could’ is used to express possibility. It is simply used to state one or more things that are possible or were possible in the past. In this statement, ‘to have achieved’ needs to be replaced with ‘for achieving’ to make the sentence correct. Thus, the correct sentence would be, ‘When I finished writing the letter, I could not help admiring myself for achieving the impossible’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

2 23004
Q:

The smallest unit in a digital system is a.........

A) Bit B) Byte
C) Character D) Kilobyte
 
Answer & Explanation Answer: A) Bit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer

116 22995
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 22941
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 22806
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 22741
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 22733
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 22725
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 22694