Questions

Q:

Which of the following Rivers has no Bridges built over it?

A) Nile B) Congo river
C) Amazon river D) Yellow river
 
Answer & Explanation Answer: C) Amazon river

Explanation:

There are No bridges over The Amazon River.

The Amazon River, in South America, is the largest river by discharge volume of water in the world and the second longest in length after The Nile in Egypt.

Report Error

View Answer Report Error Discuss

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

11 3759
Q:

The headquarters of the International court of Justice is situated at _____ ?

A) Sweden B) Geneva
C) London D) Hague
 
Answer & Explanation Answer: D) Hague

Explanation:

International court of Justice (ICJ) is the main judicial organ or branch of the United Nations, sometimes people call it the World Court. ICJ was established in the year 1945 and has its headquarters at The Hague, Netherlands.

Report Error

View Answer Report Error Discuss

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

8 3758
Q:

How would you check whether the contents of two structure variables are same or not?

Answer

struct emp


{


     char n[20];


      int age;


};


main()


{


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


   struct emp e2;


   scanf ("%s %d",e2.n, & e2.age);


   if( structcmp (e1,e2) ==0)


        printf ("The structures are equal");


   else


         printf ("The structures are unequal");


}


structcmp ( struct emp x, struct emp y)


{


     if (strcmp (x.n,y.n) ==0)


           if (x.age == y.age)


            return (0);


            return (1);


}


In short, if you nee to compare two structures, you'll have to write your own function to do so which carries out the comparison field by field.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3758
Q:

The oldest form of composition of Hindustan Vocal music is

A) Thumri B) Ghazal
C) Dhrupad D) None of the above
 
Answer & Explanation Answer: C) Dhrupad

Explanation:
Report Error

View Answer Report Error Discuss

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

28 3758
Q:

Who is the Chairman of the Rajya Sabha?

A) The president B) The Vice-President
C) The Prime Minister D) The Speaker
 
Answer & Explanation Answer: B) The Vice-President

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

1 3757
Q:

Classify the Hashing Functions based on the various methods by which the key value is found.

Answer

Direct method,


 Subtraction method,


 Modulo-Division method,


 Digit-Extraction method,


 Mid-Square method,


 Folding method,


Pseudo-random method

Report Error

View answer Workspace Report Error Discuss

Subject: Technology

5 3757
Q:

Virginia is a place in U.S.A. famous for growing _____ .

A) Weed B) Cannabis
C) Tobacco D) None of the above
 
Answer & Explanation Answer: C) Tobacco

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

3 3756
Q:

Suppose a customer is attempting to determine what failed during the last boot sequence of the Linux partition. Which of the following can be used to determine the error condition?

A) /var/log/messages B) /proc/startup
C) /usr/sbin/log D) /etc/boot
 
Answer & Explanation Answer: A) /var/log/messages

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: IBM Certification

23 3756