Questions

Q:

Which is the Hindi word of the year in the Oxford Dictonaries for 2018?

Answer

Nari-Shakti is the Hindi word of the year in the Oxford Dictonaries for 2018.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

1 2282
Q:

Point out the error, if any, in the following program.

main()

{

    int ( *p )() = fun;

    ( *P ) ();

}

fun ()

{

    Printf ( "\nLoud and clear" );

Answer

Here we are initalising the function pointer p to the address of the function fun(). But during this initialisation the function has not been defined. Hence an error.


To eliminate this error add the prototype of the fun() before declaration of p, as shown below:


extern int fun();    or simply  int fun();

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2282
Q:

Point out the error, if any, in the following program.

main()

{

    int a = 10;

    void f();

    a = f();

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

}

void f()

{

    printf ( "\n Hi ");

}

Answer

In spite of defining the function f() as returning void, the program is trying to collect the value returned by f() in the variable a.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2282
Q:

In the following question, four words are given out of which one word is incorrectly spelt. Find the incorrectly spelt word.

A) Stupefaction B) Preferential
C) Surveillence D) Detrimental
 
Answer & Explanation Answer: C) Surveillence

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2282
Q:

Blood plasma is filtered in 

A) the renal capsule B) the renal column
C) the renal tubule D) the renal corpuscle
 
Answer & Explanation Answer: A) the renal capsule

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

1 2281
Q:

Who making the anthem for upcoming Hockey World Cup 2018's prime video?

A) A. R. Rahman B) Pritam Chakraborty
C) Anu Malik D) Bappi Lahiri
 
Answer & Explanation Answer: A) A. R. Rahman

Explanation:

A.R. Rahman making the anthem for upcoming Hockey World Cup 2018's prime video.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2281
Q:

A sentence/a part of the sentence is underlined. Four alternatives are given to the underlined part which will improve the sentence. Choose the correct alternative and click the button corresponding to it. In case no improvement is needed, click the button corresponding to "No improvement".

The new book written by Vikram Seth has become very populous.

A) populist B) popular
C) populace D) No improvement
 
Answer & Explanation Answer: B) popular

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2281
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

It goes without saying

A) To Silently bear the injustice B) Something which is implied to be obvious
C) There is no point in doing something after you are told to do it D) Break long relationship with someone
 
Answer & Explanation Answer: B) Something which is implied to be obvious

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2281