Questions

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 2005
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 2004
Q:

Which airport becomes as International Airport recently in 2017 ?

A) Chennai B) Kolkata
C) Vijayawada D) Patna
 
Answer & Explanation Answer: C) Vijayawada

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2003
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 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:

Which of the following can be used as lamp oil?

A) Lipids B) Carbohydrates
C) Proteins D) Nucleic acids
 
Answer & Explanation Answer: A) Lipids

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2003
Q:

What is the HELLO protocol used for?

Answer

The HELLO protocol uses time instead of distance to determine optimal routing. It is an alternative to the Routing


Information Protocol.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

2 2002
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