Questions

Q:

The meristem which occurs between mature tissues is known as _________meristem.

A) Intercalary B) Primary
C) Lateral D) Apical
 
Answer & Explanation Answer: A) Intercalary

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 3467
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 3467
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 3467
Q:

Open market operation is a part of

A) Debit Policy B) Deposit Policy
C) Credit Policy D) None of above
 
Answer & Explanation Answer: C) Credit Policy

Explanation:

Open market operations (OMO) refer to the buying and selling of government securities in the open market in order to expand or contract the amount of money in the banking system.

Report Error

View Answer Report Error Discuss

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

4 3466
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 3465
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 3465
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 3465
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