Interview Questions

Q:

What is a call center?What are the different types of call centers?

Answer

A center equipped to handle a large volume of telephone calls. These calls could be the calls coming in from customers for service or support or these could be the calls that call center executives make to the customers for marketing


There are mainly two types of call centers :


a) Inbound call centers – Inbound call centers are those which receive support or service calls from customers usually on a toll free number. For e.g. when you call up a bank to check the status of your request for credit card, it is an inbound call.


b) Outbound call centers – Outbound call centers are those in which the call center executives make calls to the customers. These calls are usually made to generate the leads or sales. For e.g. when you receive a call from a bank offering you a personal loan, it is an outbound call. 

Report Error

View answer Workspace Report Error Discuss

Subject: Call Center

0 1690
Q:

What is Shift() method in Javascript?

Answer

-The shift() method is similar as the pop() method but the difference is that Shift method works at the beginning of the array. 


-The shift() method take the first element off of the given array and returns it. The array on which is called is then altered.


For example


var myarray = ["apple ", "banana ", "mango "]; 


console.log(myarray.shift());


console.log(myarray);


we get the following console output:


apple


["banana ", "mango "];


 


When we call shift() on an empty array, it will return an undefined value.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1689
Q:

when a purchase on account is made the invoice becomes

A) debt B) credit
C) both A & B D) None of the above
 
Answer & Explanation Answer: A) debt

Explanation:
Report Error

View Answer Report Error Discuss

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

0 1688
Q:

What is the difference between Client side JavaScript and Server side JavaScript.

Answer

Client side java script comprises the basic language and predefined objects which are relevant to running java script in a browser. The client side java script is embedded directly by in the HTML pages. This script is interpreted by the browser at run time.


Server side java script also resembles like client side java script. It has relevant java script which is to run in a server. The server side java scripts are deployed only after compilation.

Report Error

View answer Workspace Report Error Discuss

Subject: Web Technology

0 1688
Q:

The internal rate of return is defined as the

Answer

The Internal Rate of Return (IRR) is defined as the measure of an investment’s rate of return. It is also called the discounted cash flow rate of return.

Report Error

View answer Workspace Report Error Discuss

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

0 1686
Q:

Transfer payments are included in

A) Government subsidies B) GDP
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) Government subsidies

Explanation:

Transfer payments are included in GDP and not in GDP.

Report Error

View Answer Report Error Discuss

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

1 1686
Q:

How do you decide when to use HashMap and when to use TreeMap ?

Answer

For inserting, deleting, and locating elements in a Map, the HashMap offers the best alternative. If, however, you need to traverse the keys in a sorted order, then TreeMap is your better alternative. Depending upon the size of your collection, it may be faster to add elements to a HashMap, then convert the map to a TreeMap for sorted key traversal.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Java

1 1684
Q:

What does cache and no cache options mean while creating a sequence?

Answer

The CACHE option means how many sequences will be stored in memory for access by the application objects. The performance is faster. However in case of the database is down the data is memory is lost for the sequence.


The NO CACHE option means values are not stored in memory. So there might be some performance issue. 

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 1684