Questions

Q:

Which nation plans to build the first city on Mars by 2117 ?

A) India B) United Arab Emirates
C) China D) Russia
 
Answer & Explanation Answer: B) United Arab Emirates

Explanation:

The President and Vice-President of United Arab Emirates Sheik Mohamed bin Zayed Al Nahyan and Shaik Mohammed bin Rashid Al Maktoum announced in Febraury 2017 that they are planning to build the first inhabitable human settlement on Mars by 2117.

Report Error

View Answer Report Error Discuss

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

8 2066
Q:

In the biosphere living beings are inter-related and interdependent on each other for survival. This life supporting system is known as the __________.

A) Ecosystem B) Mountain range
C) Forest D) Atmosphere
 
Answer & Explanation Answer: A) Ecosystem

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

1 2066
Q:

In the following code in which order the functions would be called?

a = ( f1 ( 23,14 ) * f2 ( 12/4) ) + f3() ;

Answer

The order may vary from compiler to compiler.


Here the multiplication will happen before the addition , but in which order the functions would be called is undefined. In an arithmetic expression the parentheses tell the compiler which operands go with which operators but do not force the compiler to evaluate everything within the parentheses first.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2066
Q:

Who among the following, played an important role in the struggle for italian independence and unification?

A) Bismarck B) Giuseppe Mazzini
C) Giuseppe Garibaldi D) Both (b) and (c)
 
Answer & Explanation Answer: D) Both (b) and (c)

Explanation:

The struggle for Italian independence and unification was organised by the two famous revolutionaries of Italy Giuseppe Mazzini and Giuseppe Garibaldi. The movement led by them is known as the 'Young Italy' movement. It aimed at the independence and unification of Italy and the establishment of republic there.

Report Error

View Answer Report Error Discuss

Filed Under: World History

0 2065
Q:

Most common and popular name in the world?

A) Peter B) Mohammed
C) Robert D) Ahmed
 
Answer & Explanation Answer: B) Mohammed

Explanation:

Mohammed or Mohammad is thought to be the most popular name in the world, given to an estimated 150 million men and boys.

Report Error

View Answer Report Error Discuss

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

1 2065
Q:

cognitive psychology focuses on the study of

Answer

Cognitive psychology is the branch of psychology that studies study internal processes that include perception, attention, language, memory, and thinking.


Cognitive_psycology1532432926.jpg image


Cognitive psychology focuses on the way people process information.

Report Error

View answer Workspace Report Error Discuss

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

3 2065
Q:

The term facultative anaerobe refers to an organism that

A) Uses oxygen or grows without oxygen. B) Requires less oxygen than is present in air.
C) Prefers to grow without oxygen. D) Is killed by oxygen.
 
Answer & Explanation Answer: A) Uses oxygen or grows without oxygen.

Explanation:

The term facultative anaerobe refers to an organism that which uses oxygen when it is present or grows without oxygen when it is not there.

Report Error

View Answer Report Error Discuss

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

2 2064
Q:

How would you find the length of each string in the following Program?

main()

{

    char *str[] = { "Frogs", "Do", "Not" , "Die" , "They" , "Croak!"};

    printf ("%d%d", sizeof (str), sizeof (str[0]));

}

Answer

main()


{


   char *str[] = { "Frogs", "Do", "Not", "Die." , "They", "Croak!" };


   int i;


         for ( i = 0;i<=5;i++)


         printf ("\n%s%d", str[i], strlen( str[i]));


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2064