Questions

Q:

Controlling marketing activities :

What is profit ability control?

Answer

Profitability control is a mechanism of monitoring the sales made, profits earned and expenditure incurred by a company. The relative profit earning capacity of a firm’s products and consumer groups can be determined via profitability control. Sometimes surpisingly, it may be found out by companies how a small proportion of their products and even customers actually account for a significant percentage of the company’s profits. This can be achieved through profitability control. At times when the companies earn surplus profits, then such profits may even be ploughed back or reinvested. This also forms part of profitability control.

Report Error

View answer Workspace Report Error Discuss

0 2846
Q:

When backed by buying, power wants become

A) demands B) physical needs
C) exchanges D) social needs
 
Answer & Explanation Answer: A) demands

Explanation:

When backed by buying, power wants become demands. 

Report Error

View Answer Report Error Discuss

Filed Under: Marketing and Sales
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2846
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 2844
Q:

Which one of the following Committees is described as the 'twin sister' of the Estimates Committee?

A) Public Accounts Committee B) Committee on Public Undertakings
C) Departmental Standing Committee D) Privilege Committee
 
Answer & Explanation Answer: A) Public Accounts Committee

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

2 2844
Q:

For which one of the following items Tiruppur is well known as a huge exporter to many parts of the world?

 

A) Gems and Jewellery B) Leather goods
C) Knitted garments D) Handicrafts
 
Answer & Explanation Answer: C) Knitted garments

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

19 2842
Q:

Select the synonym of
maestro

A) neophyte B) catechumen
C) sophomore D) conductor
 
Answer & Explanation Answer: D) conductor

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2842
Q:

Why should you use the Ad Preview and Diagnosis tool to check if your ads are live and running on Google?

Answer

By searching for keywords that trigger your ad, you can rack up impressions without clicks, which may lower your Click-Through Rate, which may prevent your ad from appearing as often as it is eligible.

Report Error

View answer Workspace Report Error Discuss

0 2842
Q:

What travels around the world but stays in one spot?

Answer

Therefore the answer for What travels around the world but stays in one spot is STAMP or any other thing that acts as a stamp does.


Ex. the letter in the envelope etc...


 


Since, Several things have the possibility, but the word travel evokes that it would move. 

Report Error

View answer Workspace Report Error Discuss

4 2841