Questions

Q:

Who has been appointed as Managing Director of Export-Import Bank of India (Exim Bank) ?

A) Arun Tiwari B) Sunil Mehta
C) Ashwani Kumar D) David Rasquinha
 
Answer & Explanation Answer: D) David Rasquinha

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk , Bank PO

4 2005
Q:

What is the main component of biogas and natural gas?

A) Carbon dioxide B) Butane
C) Hydrogen Sulphide D) Methane
 
Answer & Explanation Answer: D) Methane

Explanation:

Methane is the main component of biogas and natural gas.

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

5 2005
Q:

An ideal habitat with unlimited resources is associated with

A) Neither exponential growth nor logistic growth B) Population crashes
C) Logistic growth D) Exponential growth
 
Answer & Explanation Answer: D) Exponential growth

Explanation:

An ideal habitat with unlimited resources is associated with Exponential growth.

Report Error

View Answer Report Error Discuss

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

6 2004
Q:

Rearrange the parts of the sentence in correct order.

 

The Finance Minister, under

P­-whose supervision this
Q­-has not made any definite statement
R­-has taken place,

A) RPQ B) QRP
C) PRQ D) QPR
 
Answer & Explanation Answer: C) PRQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2004
Q:

The term "simple carbohydrates" refers to

A) polysaccharides B) monosaccharides and disaccharides
C) starch and glycogen D) dietary fiber
 
Answer & Explanation Answer: B) monosaccharides and disaccharides

Explanation:

Simple carbohydrates are also called as Simple sugars. Monosaccharides and Disaccharides refers to simple carbohydrates.

Report Error

View Answer Report Error Discuss

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

4 2003
Q:

What is a drawback of MVT?

Answer

It does not have the features like



  1. ability to support multiple processors

  2. virtual storage

  3. source level debugging

Report Error

View answer Workspace Report Error Discuss

0 2003
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2002
Q:

If a customer is agitated, how would you handle that?

Answer

Answer this with confidence. Look straight into the eyes of the interviewer and tell them that the path we chose prohibits us from expressing our anger. Anger to anger isn’t a healthy response. Instead, calmness and composure is a must.

Report Error

View answer Workspace Report Error Discuss

0 2002