Interview Questions

Q:

What does BUS Schema means ?

Answer

BUS Schema is composed of a master suite of confirmed dimension and standardized definition if facts.

Report Error

View answer Workspace Report Error Discuss

8 7588
Q:

What will you do when a customer is abusive/irritated?

Answer

When you work at a call center you will come across irritated, angry, and abusive customers, you can say you will do that following to handle them:


-  Listen to them and empathize with their situation


-  Apologize and take ownership of the problem and give a solution


-  Approach them and ask for a reason for their displeasure


-  If they insist on talking to your manager, get him on line ASAP


- Follow up after giving the solution and ask for feedback

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

13 7561
Q:

How many ways are there to initialize int with a constant?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:

There are two formats for initializers in C++ as shown in the example that follows. The first format uses the traditional C notation. The second format uses constructor notation.

int foo = 123;

 

int bar (123);

Report Error

View Answer Report Error Discuss

Filed Under: C++
Job Role: Software Architect

1 7549
Q:

What are Payroll source documents?

Answer

The Payroll source documents are the employee Time Sheets (or equivalent) that record when the employee worked and generally what they did. These records are subject to audit by the Labor Department, EEOC and probably others that I haven't encountered. These should be bound into a Payroll Source Document folder.

However, there are other employee documents that need to be retained, e.g., their original employment application, employee reviews (if you do them),that record their federal/state tax exemption choices,reporting their annual wages and withholdings, etc.

These can be filed in separate Employee files (by employee name or number) -- or simply integrated into the Payroll Source Document folders (in the week in which they occur). I very much favor the latter -- especially if you're doing computer accounting -- in keeping with my "always file chronological" bias.

Report Error

View answer Workspace Report Error Discuss

1 7548
Q:

What is advertising?

Answer

Advertising is defined as a paid form of communication that reaches the target audience through mass media to provide product/service and brand related information.  

Report Error

View answer Workspace Report Error Discuss

9 7506
Q:

Promotions and promotion mix :

What is the difference between a marketing mix and a promotional mix?

Answer

A marketing mix and a promotional mix does have some differences, both being highly crucial for the success of a business. Marketing is very essential for the growth and continuity of business operations. It helps in creating new customers and retaining the existing ones to keep the business ongoing. Marketing focuses on all the elements of the marketing mix viz product, price, place and promotion while promotion focuses more on the customer- how to reach a product to its customers and how to sell it to them ultimately

Report Error

View answer Workspace Report Error Discuss

7 7502
Q:

How many types of macros are there in c++?

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:

There are two types of macros. They are object-like and function-like.

Report Error

View Answer Report Error Discuss

Filed Under: C++

1 7493
Q:

List the steps involved in creating the checksum.

Answer

- Divide the data into sections


- Add the sections together using 1's complement arithmetic


- Take the complement of the final sum, this is the check sum

Report Error

View answer Workspace Report Error Discuss

4 7477