Questions

Q:

When should you stop at green and go at red?

Answer

While eating a watermelon, we all go along the red and stops at green.

Report Error

View answer Workspace Report Error Discuss

5 2637
Q:

Which of the following is the sacred book of Judaism?

A) Old Testament B) Aporypha
C) Avesta D) Both (a) and (b)
 
Answer & Explanation Answer: D) Both (a) and (b)

Explanation:

The sacred books of judaism form the Old Testament and Aporypha. These books contain the history of the Jews and lay down the religious laws and ethics which they must follow.

Report Error

View Answer Report Error Discuss

Filed Under: World History

3 2637
Q:

Who was the Roman Emperor when Jesus was born?

A) Tiberius B) Augustus
C) Gaius Octavius D) Julius Caesar
 
Answer & Explanation Answer: B) Augustus

Explanation:

aug1525935838.jpg image

 

Augustus was a Roman statesman and military leader who served as the first Emperor of the Roman Empire, controlling Imperial Rome from 27 BC until his death in AD 14. Jesus was born in 4 BC.

 

Hence, Augustus was the Roman Emperor when Jesus was born.

Report Error

View Answer Report Error Discuss

Filed Under: World History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2637
Q:

The Nobel Prize in Economics was started in

A) 1901 B) 1936
C) 1957 D) 1967
 
Answer & Explanation Answer: D) 1967

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

4 2637
Q:

Would the following program compile?

main()

{

    int a = 10, *j;

    void *k;

    J = k = &a;

    J++;

    k++;

   printf ("\n%u %u", j, k);

}

Answer

An error would be reported in the statement k++ since arithmetic on void pointers is not permitted unless the void pointer is appropriately typecasted.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2637
Q:

What would be the output of the following program?

main()

{

   struct emp

   {

        char *n;

        int age;

   };

   struct emp e1 = { "Dravid", 23};

   struct emp e2 = e1;

   strupr (e2.n);

   printf ("\n%s",e1.n);

}

Answer

DRAVID


When a structure is assigned, passed, or returned, the copying is done monolithically. This means that the copies of any pointer fields will point to the same place as the original. In other words, anything pointed to is not copied. Hence, on changing the name through e2.n it automatically changed e1.n

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2637
Q:

C.K. Naidu Cup is associated with which of the following sporting events?

A) Tennis B) Cricket
C) Hockey D) Golf
 
Answer & Explanation Answer: B) Cricket

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports

0 2636
Q:

What is virtual channel?

Answer

Virtual channel is normally a connection from one source to one destination, although multicast connections are also permitted. The other name for virtual channel is virtual circuit.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2636