Questions

Q:

What is the main motive behind dealer incentives?

A) encouraging the maximum number of sales of the manufacturers products B) to maintain a permanent deal
C) maintaining good dealer-manufacturer relationships D) ensuring that the customer gets the best possible deal
 
Answer & Explanation Answer: A) encouraging the maximum number of sales of the manufacturers products

Explanation:

The main motive behind dealer incentives is to give the products at some low price for the dealers who take the products in bulk and maintain good selling of these products.

Report Error

View Answer Report Error Discuss

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

2 2406
Q:

Voiceless it cries, wingless flutters, toothless bites, mouth-less mutters.

What is it?

Answer

It is The Wind which cries without a voice, flutters without wings, bites toothless and mutters mouthless.

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: AIEEE , GRE
Job Role: Analyst , Bank PO

1 2405
Q:

Write a c program for merge sort.

Answer

#include
#define MAX 50

void mergeSort(int arr[],int low,int mid,int high);
void partition(int arr[],int low,int high);

int main(){
  
    int merge[MAX],i,n;

    printf("Enter the total number of elements: ");
    scanf("%d",&n);

    printf("Enter the elements which to be sort: ");
    for(i=0;i<n;i++){
         scanf("%d",&merge[i]);
    }

    partition(merge,0,n-1);

    printf("After merge sorting elements are: ");
    for(i=0;i<n;i++){
         printf("%d ",merge[i]);
    }

   return 0;
}

void partition(int arr[],int low,int high){

    int mid;

    if(low<high){
         mid=(low+high)/2;
         partition(arr,low,mid);
         partition(arr,mid+1,high);
         mergeSort(arr,low,mid,high);
    }
}

void mergeSort(int arr[],int low,int mid,int high){

    int i,m,k,l,temp[MAX];

    l=low;
    i=low;
    m=mid+1;

    while((l<=mid)&&(m<=high)){

         if(arr[l]<=arr[m]){
             temp[i]=arr[l];
             l++;
         }
         else{
             temp[i]=arr[m];
             m++;
         }
         i++;
    }

    if(l>mid){
         for(k=m;k<=high;k++){
             temp[i]=arr[k];
             i++;
         }
    }
    else{
         for(k=l;k<=mid;k++){
             temp[i]=arr[k];
             i++;
         }
    }
  
    for(k=low;k<=high;k++){
         arr[k]=temp[k];
    }
}


Sample output:

Enter the total number of elements: 5
Enter the elements which to be sort: 2 5 0 9 1
After merge sorting elements are: 0 1 2 5 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2405
Q:

What natural factors contribute to global climate?

A) Forest Fires B) Solar Activity
C) Melting Permafrost D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Global warming is the increase in the earth’s average temperature due to release of several greenhouse gases to the atmosphere by humans. Global warming is affecting many parts of the world.

 

Natural Causes include :

1. Solar Activity

2. Melting Permafrost

3. Forest Fires 

 

Human made causes include :

1. Deforestation

2. Overpopulation

3. Landfills

4. Mining

5. Fertilizer Use

Report Error

View Answer Report Error Discuss

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

2 2405
Q:

The goal of a statement of purpose is

A) To indicate what is expected to be accomplished in doing an experiment B) To calculate an average of two or more measurements
C) To list the materials needed for an experiment D) To demonstrate that a hypothesis is wrong
 
Answer & Explanation Answer: A) To indicate what is expected to be accomplished in doing an experiment

Explanation:

The goal of a statement of purpose is to indicate what is expected to be accomplished in doing an experiment.

Report Error

View Answer Report Error Discuss

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

1 2404
Q:

Which of the following defines a genome?

A) Every human cell B) the complete set of an organism's genes and other DNA sequences
C) the complete set of an organism's polypeptides D) a karyotype
 
Answer & Explanation Answer: B) the complete set of an organism's genes and other DNA sequences

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

2 2404
Q:

Hypercalcemia can be caused by

A) malignancy B) hyper-parathyroidism
C) both A & B D) None of the above
 
Answer & Explanation Answer: C) both A & B

Explanation:

Hypercalcemia is a condition in which the calcium level in your blood is above normal. Too much calcium in your blood can weaken your bones, create kidney stones, and interfere with how your heart and brain work.

Hypercalcemia_can_be_caused_by1550553960.png image

Hypercalcemia is usually a result of overactive parathyroid glands.

Report Error

View Answer Report Error Discuss

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

2 2404
Q:

Which of these is an example of a haploid cells?

A) Sperms B) Neurons
C) Red blood cells D) All of the above
 
Answer & Explanation Answer: A) Sperms

Explanation:

In the above options, sperms are the haploid cells. In humans, haploid cells are those have only half the number of usual number of chromosomes. Sperm, gamates and egg cells are the haploid cells examples.

Report Error

View Answer Report Error Discuss

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

4 2403