Questions

Q:

Administrators of Union Territories are responsible to the 

A) Union Home Minister B) Lok Sabha
C) President D) Union Parliament
 
Answer & Explanation Answer: C) President

Explanation:

Various designations have been specified by the President for the different Union Territories:

(i) Chief Commissioner for Chandigarh

(ii) Administrator for

     (a) Lakshadweep and

     (b) Dadra and Nagar Haveil

(iii) Lieutenant Governor for 

    (a) Andaman and Nicobar Islands

    (b) Delhi

    (c) Daman and Diu and

    (d) Pandicherry

Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

9 4511
Q:

What is the capital of Cuba ?

A) Bayamo B) Amancio
C) Havana D) Sandino
 
Answer & Explanation Answer: C) Havana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

17 4511
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 4511
Q:

The ability to do work is called Energy.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

Yes, the ability to do work is called Energy is True.

Report Error

View Answer Workspace Report Error Discuss

Subject: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

4 4510
Q:

During World War II, when did Germany attack France?

A) 1940 B) 1941
C) 1942 D) 1943
 
Answer & Explanation Answer: A) 1940

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

4 4509
Q:

Moti Masjid in Red fort was constructed by

A) Humayun B) Aurangzeb
C) Akbar D) Jahangir
 
Answer & Explanation Answer: B) Aurangzeb

Explanation:

Moti Masjid was built by the Mughal emperor Aurangzeb from 1659-1660. The Moti Masjid is a white marble mosque inside the Red Fort complex in Delhi, India.

Report Error

View Answer Report Error Discuss

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

10 4508
Q:

Which is the highest Plateu?

A) Deccan B) Pamir
C) Colorado D) None
 
Answer & Explanation Answer: B) Pamir

Explanation:

Pamir is the highest of all the platues.It is located in Tibet

Report Error

View Answer Report Error Discuss

11 4506
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 4506