Questions

Q:

Where is the Head Quarters of Archaeological Survey Of India?

A) New Delhi B) Pune
C) Hyderabad D) Kolkata
 
Answer & Explanation Answer: A) New Delhi

Explanation:

The Head Quarters of Archaeological Survey Of India is in New Delhi.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2224
Q:

The geologic time scale is subdivided into

A) Eon B) Era
C) Periods D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The geologic time scale is subdivided into 4 units called Eon, Era, Periods and Epochs.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2223
Q:

What are the followers of Hinduism called

A) Brahmans B) Hindus
C) Sindhus D) Indus
 
Answer & Explanation Answer: B) Hindus

Explanation:

The followers of Hinduism are called Hindus.

Report Error

View Answer Report Error Discuss

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

3 2223
Q:

What would be the output of the following program?

main()

{

    static int a[20];

    int i = 0;

    a[i] = i++;

    printf ("\n%d%d%d", a[0],  a[1], i);

}

Answer

0  0  1


That's what some of the compilers would give. But some other compiler may give a different answer. The reason is, when a single expression causes the same object to be modified and then inspected the behaviour is undefined.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2223
Q:

Another name for false productivity is

A) making poor decisions B) filling your mind with negative self-talk
C) driving toward success D) spinning your wheels
 
Answer & Explanation Answer: D) spinning your wheels

Explanation:

Another name for false productivity is Spinning your wheels. They use the term for false productivity because your wheels are spinning as you're doing work but you're not going anywhere i.e, making any progress.

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2222
Q:

In each of the questions, four alternatives are given for the Idiom/Phrase. Choose the alternative which best expresses the meaning of the Idiom/Phrase and click the button corresponding to it.

Cat­nap

A)  Rest B) Fitful sleep
C)  Long sleep D)  Short sleep
 
Answer & Explanation Answer: D)  Short sleep

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT

0 2221
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 2221
Q:

The relationship between quantity supplied and price is

A) Directly proportional B) Inverselyproportional
C) Can't be determined D) None of the above
 
Answer & Explanation Answer: A) Directly proportional

Explanation:

Price and quantity supplied move in the same direction. As the price decreases, quantity supplied also decreases and viceversa.

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

0 2221