Questions

Q:

"Gilt-edged" means ___________.

 

A) bullion market   B) market of government securities  
C) market of guns D) market of pure metals
 
Answer & Explanation Answer: B) market of government securities  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

0 29108
Q:

Which of the following BEST describes a Service Desk?

A) A dedicated number of staff handling Incidents and service requests B) A process within Service Operation providing a single point of contact
C) A dedicated number of staff handling service requests D) A dedicated number of staff answering questions from users
 
Answer & Explanation Answer: A) A dedicated number of staff handling Incidents and service requests

Explanation:

A dedicated number of staff handling Incidents and service requests best describes a Service Desk.

Report Error

View Answer Report Error Discuss

70 29089
Q:

Name the plant important in sericulture

A) Pea B) Legumes
C) Mulberry D) Cassia
 
Answer & Explanation Answer: C) Mulberry

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

194 29059
Q:

FORTRAN is not used for _____.

(I) Drawing pictures
(II) Carrying out mathematics computations

A) Only (I) B) Only (II)
C) Both (I) and (II) D) Neither (I) nor (II)
 
Answer & Explanation Answer: C) Both (I) and (II)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

10 29032
Q:

During the Maratha period, who was the officer responsible for the village administration?

 

 

A) Havaladar B) Patil
C) Chaudhary D) Sardeshmukh
 
Answer & Explanation Answer: B) Patil

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 28966
Q:

What will be output of following program ?

#include
int main()

{

int a = 10;
void *p = &a;
int *ptr = p;
printf("%u",*ptr);
return 0;

}

A) 10 B) Address
C) 2 D) Compilation error
 
Answer & Explanation Answer: A) 10

Explanation:

Void pointer can hold address of any data type without type casting. Any pointer can hold void pointer without type casting.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

1 28956
Q:

First tuesday of may is observed as

A) Global family Day B) World Asthma Day
C) World Immunization Day D) International Human Solidarity Day
 
Answer & Explanation Answer: B) World Asthma Day

Explanation:
Report Error

View Answer Report Error Discuss

118 28946
Q:

What would be the output of the following program ?

main()

{

     const int x = 5; 

      int *ptrx;

      ptrx = &x;

      *ptr = 10;

       printf ("%d", x);

}

A) 5 B) 10
C) Error D) Garbage value
 
Answer & Explanation Answer: B) 10

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Programming

2 28930