Questions

Q:

Selecting and managing marketing channels :

How are the channel members managed and motivated, once they are selected?

Answer

These days channel members are being accepted by companies as their partners. The intermediaries are even being asked to integrate their business with the companies which results in lesser costs, greater efficiency and improved customer service. Corporates like Airtel are adopting PRM (Partner relationship management) software to give that added advantage to their supply chain. They organise rewards and recognition programs for their channel partners and also organise proper channels though which partners can vent any of their grievances relating to payments, violation of codes etc.

Report Error

View answer Workspace Report Error Discuss

0 2680
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

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

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2680
Q:

CPU speed is measured in

Answer

CPU speed is measured with the processors speed which is measured in MIPS (Million Instructions Per Second), Flops (Floating-point operations per second) and CPU clock speed (usually measured in gigahertz). 

Report Error

View answer Workspace Report Error Discuss

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

6 2680
Q:

Which of the following civilization is associated with 'Achaemenid Empire'?

A) Chinese Civilization B) Iranian Civilization
C) Egyptian Civilization D) Arab Civilization
 
Answer & Explanation Answer: B) Iranian Civilization

Explanation:

In the middle of the 6th centuryB.C, a powerful empire was established in Iran this empire which lasted over two centuries is known as the Achaemenid Empire. The founder of this Empire was Cyrus with his capital at pasargadae. In 539 B.C, cyrus defeated the Babylonians and extended his empire over a vast territory up to Asia Miner. His successor was Darius I (522-486 B.C).

Report Error

View Answer Report Error Discuss

Filed Under: World History

0 2679
Q:

Which mosque is considered to be the style of Bengal style in Agra?

A) Nagina Masjid B) Moti Masjid
C) Jama Masjid D) Badshahi Masjid
 
Answer & Explanation Answer: A) Nagina Masjid

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2679
Q:

Which is a characteristic of a Mixture?

A) a pure substance B) chemically comined
C) they can be mixed in some fixed ratio D) it is either homogenous or heterogenous
 
Answer & Explanation Answer: D) it is either homogenous or heterogenous

Explanation:

A mixture is the blending of two or more dissimilar substances.

 

Characteristics of a Mixture:

1. It has No formula.

2. It is an impure sustance

3. They can be mixed in any ratio.

4. The properties of the mixture are the properties of its constituents.

5. Constituents can e easily seperated by physical methods.
eg: Heating, Drying, Crystallization, Distillation etc...

6. It is either homogenous or heterogenous.

 

A major characteristic of mixtures is that the materials do not chemically combine. Mixtures can be divided into those that are evenly distributed (homogeneous) and those that aren't (heterogeneous).

Report Error

View Answer Report Error Discuss

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

1 2679
Q:

Alcohol is a stimulant. true or false

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

Alcohol is a drug.

Report Error

View Answer Workspace Report Error Discuss

Subject: Chemistry
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

2 2679
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best
expresses the same sentence in Passive/Active voice.
People drink champagne on New Year’s Eve.

A) Drinking of champagne is done on New Year's Eve. B) New Year's Eve was the day when People drank Champagne.
C) People on Eve of New Year drink champagne. D) Champagne is drunk on New Year’s Eve.
 
Answer & Explanation Answer: D) Champagne is drunk on New Year’s Eve.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2678