Questions

Q:

How many kilometers and represented by 1oof latitude?

A) 321 km B) 211 km
C) 111 km D) 91 km
 
Answer & Explanation Answer: C) 111 km

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 4524
Q:

Who is also known as the founder of scientific socialism ?

A) Karl Marx B) Lenin
C) Rousseau D) Engels
 
Answer & Explanation Answer: A) Karl Marx

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

2 4523
Q:

First and Last Indian viceroys of India?

A) Lord Mountbatten B) C Raj Gopalachari
C) Bal Gangadhar Tilak D) Lala Lajpath Rai
 
Answer & Explanation Answer: B) C Raj Gopalachari

Explanation:

The First and Last Indian viceroys of India is C. Raj Gopalachari. 

First_and_Last_Indian_viceroys_of_India1548915645.jpg image

Chakravarti Rajagopalachari, informally called Rajaji or C.R., was an Indian politician, independence activist, lawyer, writer, historian and statesman. Rajagopalachari was the last Governor-General of India, as India soon became a Republic in 1950.

Report Error

View Answer Report Error Discuss

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

5 4523
Q:

The term protoplasm was coined by

A) Hugo von Mohl B) J. E. Purkinje
C) Oken D) Kolliker
 
Answer & Explanation Answer: B) J. E. Purkinje

Explanation:

Protoplasm is the living content of a cell that is surrounded by a plasma membrane.

J.E_._Purkinje_1533211732.jpg image

J. E. Purkinje in the year 1839 coined the term 'protoplasm' for the fluid substance of the cell.

Report Error

View Answer Report Error Discuss

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

7 4523
Q:

What type of mirror is used in car headlights?

A) Concave B) convex
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Concave

Explanation:

Concave type of glasses are used in the headlights of the vehicles as the light from the bulb which is at focus will converges out and spreads and reflects back parallely.

 

What_type_of_mirror_is_used_in_car_headlights1535545831.jpg image

Report Error

View Answer Report Error Discuss

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

6 4522
Q:

What is the difference between malloc() and calloc() functions?

Answer

As against malloc(), calloc() needs two arguments, the number of elements  to be allocated and the size of each element. For example,


 p = (int *) calloc (10, sizeof (int));


would allocate space for a 10- integer array. Additionally, calloc() would also set each of this element with a value 0.


Thus the above call to calloc() is equivalent to:


p = (int *) malloc (10 * sizeof (int));


memset (p, 0, 10 * sizeof( int ));

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 4521
Q:

 The first step in database development is which of the following?

A) Enterprise data modeling B) Logical database design
C) Physical database design and definition D) Database Implementation
 
Answer & Explanation Answer: A) Enterprise data modeling

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

0 4520
Q:

Name the processor lines of two major manufacturer?

Answer

High-end: Intel - Pentium (II, III, 4) AMD - Athlon. Low-end: Intel - Celeron, AMD - Duron. 64-bit: Intel - Itanium 2, AMD - Opteron.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 4516