Questions

Q:

Extensive plantation of trees is called

A) Deforestation B) Eforestation
C) Afforestation D) Agroforestry
 
Answer & Explanation Answer: C) Afforestation

Explanation:

Extensive plantation of trees to increase plants count is called Afforestation.

Report Error

View Answer Report Error Discuss

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

8 2448
Q:

Which of these best describes genetic drift?

A) Random fluctuations in the gene frequencies within a population Eliminate B) The combining of alleles to create more genetic variations within a population
C) The movement of alleles between population D) A planned method to reduce the number of inferior genes in a population
 
Answer & Explanation Answer: A) Random fluctuations in the gene frequencies within a population Eliminate

Explanation:

Random fluctuations in the gene frequencies within a population Eliminate is the one which best describes genetic drift.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2448
Q:

Operational excellence refers to companies that

A) are expensive but is expected to pay off in long-term loyalty and enhanced customer lifetime value B) are willing to tailor their products to particular customer needs
C) are good at production, delivery, price, and convenience D) pride themselves on quality and innovation
 
Answer & Explanation Answer: C) are good at production, delivery, price, and convenience

Explanation:

Operational excellence refers to companies that are good at production, delivery, price, and convenience.

Report Error

View Answer Report Error Discuss

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

0 2447
Q:

The wrist is what to the hand?

A) Deep B) Proximal
C) Lateral D) Superior
 
Answer & Explanation Answer: B) Proximal

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2447
Q:

Who is known as the father of Modern Chemistry?

A) Robert Boyle B) Antoine Lavoisier
C) John Dalton D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2447
Q:

The outermost layer of the earth is called

A) Core B) Mantle
C) Crust D) Inner core
 
Answer & Explanation Answer: C) Crust

Explanation:
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 2447
Q:

A computer port is used to

A) Donwload files B) Communicate with other computer peripherals
C) Communicate with hard disks D) All of the above
 
Answer & Explanation Answer: B) Communicate with other computer peripherals

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2447
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 2447