Questions

Q:

In which year was the State of Jharkhand formed

A) 1998 B) 1999
C) 2000 D) 2001
 
Answer & Explanation Answer: C) 2000

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

2 3464
Q:

What is the capital Namibia?

A) Male B) Windhoek
C) Monaco D) Ulaanbaatar
 
Answer & Explanation Answer: B) Windhoek

Explanation:

Windheok is the capital of Namibia

Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals

12 3464
Q:

Who was the first Musilm invader to enter India?

A) Mohammed Ghauri B) Mohammed - bin - Qasim
C) Mohammed Ghazni D) Qutab-ud-din Aibak
 
Answer & Explanation Answer: B) Mohammed - bin - Qasim

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 3464
Q:

The primary effect on climate of a volcanic eruption depends on______

A) the quantity of lava produced B) how hot the eruptive products are
C) the amount of water vapour produced D) none of the above
 
Answer & Explanation Answer: D) none of the above

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

2 3464
Q:

What does the Mount protocol do?

Answer

The Mount protocol returns a file handle and the name of the file system in which a requested file resides. The message is sent to the client from the server after reception of a client's request.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

3 3464
Q:

Which one of the following is an abiotic and renewable resource

A) Iron ore B) Livestock
C) Water D) Forests
 
Answer & Explanation Answer: C) Water

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

2 3464
Q:

The luster of a metal is due to presence of free electrons.

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

Explanation:

True, The luster of a metal is due to presence of free electrons. Luster means shine or soft glow. We know that metals have the quality of reflecting light from its surface.

Report Error

View Answer Workspace Report Error Discuss

Subject: Chemistry
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 3463
Q:

How would you dynamically allocate a 2-D array of integers?

Answer

#include "alloc.h"


#define MAXROW 3


#define MAXcol 4


main()


{


        int *p, i, J;


        p = (int *) malloc (MAXROW * MAXCOL * sizeof (int));


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


         {


                for (j=0; j < MAXCOL ; j++)


                { 


                      p [ i * MAXCOL + j] = i;


                       printf ( "%d", p [i * MAXCOL + j] );


                 }


                  printf ("\n");


          }


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3463