Interview Questions

Q:

Selecting and managing marketing channels :

On what criteria can channel members be evaluated for their proper selection?

Answer

The SCPCA method can be used to evaluate channel members.


a) Sales (S): How much sales each channel member can give within a cetain time frame


b) Cost(C): How much cost would be incurred for each channel?


c) Profitability(P): Which channel can give better profitability to the company?


d) Control(C): Whether company can have better control over its channel members or not.


e) Adaptability (A): Whether the channel alternatives are flexible enough to any changes or not. The channel meeting the objectives of the company is selected

Report Error

View answer Workspace Report Error Discuss

0 3964
Q:

Who is responsible for maintaining the Accounts receivable in an organization?

Answer

Accountants... in big organization there will be a department to maintain AR department.

Report Error

View answer Workspace Report Error Discuss

1 3954
Q:

Can you explain how to insert an image in table in oracle?

Answer

Insert image into a table


Create the following table:


      create table pics_table (


      bfile_id number,


      bfile_desc varchar2(30),


      bfile_loc bfile,


      bfile_type varchar2(4))


      TABLESPACE appl_data


      storage (initial 1m next 1m pctincrease 0) 


Insert Query:


      INSERT INTO pics_table


      VALUES(4,'test image',bfilename('GIF_FILES','Test.JPG'),'JPEG'); 

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

4 3950
Q:

Explain storage qualifiers in C++

Answer

i.) Const - This variable means that if the memory is initialised once, it should not be altered by a program. 


ii.) Volatile - This variable means that the value in the memory location can be altered even though nothing in the program code modifies the contents. 


iii.) Mutable - This variable means that a particular member of a structure or class can be altered even if a particular structure variable, class, or class member function is constant.

Report Error

View answer Workspace Report Error Discuss

Subject: C++

1 3946
Q:

ETCS means

A) Electronic Tax Collected at Source B) Electric Tax Collected at Source
C) Enable Tax Collected at Source D) Electrical Tax Collected at Source
 
Answer & Explanation Answer: A) Electronic Tax Collected at Source

Explanation:

Tax Collected at Source (TCS) is income tax collected in India payable by the seller who collects in turn from the buyer and it is provided under section 206C of Income Tax Act, 1961 at the sale of some goods which are specified.

E - TCS  is the process of filing TCS returns through electronic media. It is necessary for government and corporate collectors to file TCS returns in its electronic form. Collectors (other than government) have the provision to file TCS returns in physical form or electronic form.

Report Error

View Answer Report Error Discuss

Filed Under: Accounts Receivable
Exam Prep: Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

5 3943
Q:

Write a c program for bubble sort.

Answer

#include<stdio.h>
int main(){

  int s,temp,i,j,a[20];

  printf("Enter total numbers of elements: ");
  scanf("%d",&s);

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

  //Bubble sorting algorithm
  for(i=s-2;i>=0;i--){
      for(j=0;j<=i;j++){
           if(a[j]>a[j+1]){
               temp=a[j];
              a[j]=a[j+1];
              a[j+1]=temp;
           }
      }
  }

  printf("After sorting: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 3941
Q:

What is the table that is used for aging bucket report, what is the main purpose of this report?

Answer

Time periods you define to age your debit items. Aging buckets are used in the Aging reports to see both current and outstanding debit items. For example you can define an aging bucket that includes all debit items that are 1 to 30 days past due.


Normal table used for this Report is < 30 days 30-60 days 60-90 days 90-180 days and >180 days

Report Error

View answer Workspace Report Error Discuss

2 3939
Q:

Can you tell me how your legal organisation/law firm defines success?

Answer

Tips


It would be wise to save this question for the interviewing manager, and not for a peer/technical discussion. Nobody likes a kiss-up, but letting management know that you will communicate openly and honestly with them, always scores big points. The last part of the question can be a good barometer about how easy it will be to become a top performer. You can follow up with a discussion of how you have been successful in your previous jobs.

Report Error

View answer Workspace Report Error Discuss

Subject: Law

6 3937