What is the bpo?Give the details of bpo?

Answers were Sorted based on User's Feedback



What is the bpo?Give the details of bpo?..

Answer / kishor wakchaure

What is BPO
The new buzz word 'BPO' seems to be every where now a days!
Ever wondered what is BPO? Let us explain: To put it in
simple words a BPO (business process outsourcing) is a
process in which a company delegates some of its business
processes mainly back office operations to a third party by
giving the third party total control over that process.
What does BPO include?
Business process outsourcing or a BPO includes everything
from Call centers to transaction processing to back office
operations to customer relationship management to
telemarketing to payroll maintenance to
Finance/Accounting/billing maintenance to HR management to
logistics management to supply chain management to medical
transcription to database management and pretty much all
back office operations. As the trend shows, of all the
things being outsourced, business process outsourcing
stands out of the rest as the major segment in the
outsourcing market.
Benefits of BPO
By outsourcing their back office operations to third world
countries, companies can get huge cost cuts and concentrate
on their core businesses. By doing so they can provide
better customer satisfaction leading to customer retention,
increased productivity, deal with competition effectively
and in turn increase profitability. By outsourcing business
processes to countries like India many companies have
nearly cut their operational costs by half resulting into
huge profits. No wonder there is so much hype about
outsourcing as almost all companies no matter how big or
small they are, have understood the benefits of outsourcing
and are taking a major dive into the industry.
How to get started?
If you are planning to take a plunge into the BPO wave, you
got to formulate an effective plan by understanding your
vision along with your long term goals. Deciding on the
right BPO destination and more importantly the right BPO
vendor can go a long way in ensuring smooth operations with
good returns. As of now, India with its easily available
English speaking, computer literate, low cost manpower,
better infrastructure and quality certified software and
BPO venders seems to be a great destination for
outsourcing. So take your pick!

Is This Answer Correct ?    125 Yes 9 No

What is the bpo?Give the details of bpo?..

Answer / wolverine

BPO is the process of SUBCONTRACTING to a third party. It
is the process of contracting with another company or
person to do a particular function.

Is This Answer Correct ?    38 Yes 4 No

What is the bpo?Give the details of bpo?..

Answer / lhamo

BPO MANS BUSSINES PROCESS OUTSOURCING WHICH DEALS WITH
OTHER PARTIES OF THEIR NON CORE ACTIVITIES AND TO GIVE MORE
SATIFACTION TO THE CUSTOMERS.

Is This Answer Correct ?    37 Yes 7 No

What is the bpo?Give the details of bpo?..

Answer / kala

Bpo is a process which we are the third party we can do
everthing for another two parties but we are not
responsible for their own bussiness

Is This Answer Correct ?    39 Yes 23 No

What is the bpo?Give the details of bpo?..

Answer / a.naveenkumar

BPO IS BUSINESS PROCESS OUTSOURCING.Bpo is a
process in which a company delegates some of its business
processes mainly back office operations to a third party by
giving the third party total control over that process.

Is This Answer Correct ?    18 Yes 3 No

What is the bpo?Give the details of bpo?..

Answer / sandip roy

BPO is a third party. It means Business Process Outsourcing, who will work for entire process control for both the parties but not responsible for the business.

Is This Answer Correct ?    13 Yes 5 No

What is the bpo?Give the details of bpo?..

Answer / saurav shukla

BPO means business process outsourcing.IT is a process of
hiring for another company to handle business activity. It
is a third part in which we do work for two parties but not
responsible for their own business.

Is This Answer Correct ?    7 Yes 5 No

What is the bpo?Give the details of bpo?..

Answer / magan singh rathour

bpo buisiness process outsourcing is the process in which we connect the consumer and the company or you can say it is the third party which works to promoting and solving the queries of the consumer

Is This Answer Correct ?    2 Yes 0 No

What is the bpo?Give the details of bpo?..

Answer / tridev sharma

Bpo is business process outsourcing which means to give all or full control to third party of some business activities,includes back office etc.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Teaching Interview Questions

What are the placement opportunities after passing BCA?

0 Answers  


what is indenture?

0 Answers  


How would you incorporate technology in your classroom?

0 Answers  


What kind of students do you like to work with? What type of students could you teach most effectively?

0 Answers  


What are the significant issues in education today?

0 Answers  






i joined b.ed. subject is m.a(economics)Can i take optional paper english or not? i will join b.a(english)one sitting course. it is useful or not?

1 Answers  


Do you think that extra-curricular activities are important?

0 Answers  


What rules do you have for your classroom?

0 Answers  


What kind of rules do you have in your classroom? How are they established?

0 Answers  


1. What are two methods of retrieving SQL? 2. What cursor type do you use to retrieve multiple recordsets? 3. What is the difference between a "where" clause and a "having" clause? - "Where" is a kind of restiriction statement. You use where clause to restrict all the data from DB.Where clause is using before result retrieving. But Having clause is using after retrieving the data.Having clause is a kind of filtering command. 4. What is the basic form of a SQL statement to read data out of a table? The basic form to read data out of table is ‘SELECT * FROM table_name; ‘ An answer: ‘SELECT * FROM table_name WHERE xyz= ‘whatever’;’ cannot be called basic form because of WHERE clause. 5. What structure can you implement for the database to speed up table reads? - Follow the rules of DB tuning we have to: 1] properly use indexes ( different types of indexes) 2] properly locate different DB objects across different tablespaces, files and so on.3] create a special space (tablespace) to locate some of the data with special datatype ( for example CLOB, LOB and …) 6. What are the tradeoffs with having indexes? - 1. Faster selects, slower updates. 2. Extra storage space to store indexes. Updates are slower because in addition to updating the table you have to update the index. 7. What is a "join"? - ‘join’ used to connect two or more tables logically with or without common field. 8. What is "normalization"? "Denormalization"? Why do you sometimes want to denormalize? - Normalizing data means eliminating redundant information from a table and organizing the data so that future changes to the table are easier. Denormalization means allowing redundancy in a table. The main benefit of denormalization is improved performance with simplified data retrieval and manipulation. This is done by reduction in the number of joins needed for data processing. 9. What is a "constraint"? - A constraint allows you to apply simple referential integrity checks to a table. There are four primary types of constraints that are currently supported by SQL Server: PRIMARY/UNIQUE - enforces uniqueness of a particular table column. DEFAULT - specifies a default value for a column in case an insert operation does not provide one. FOREIGN KEY - validates that every value in a column exists in a column of another table. CHECK - checks that every value stored in a column is in some specified list. Each type of constraint performs a specific type of action. Default is not a constraint. NOT NULL is one more constraint which does not allow values in the specific column to be null. And also it the only constraint which is not a table level constraint. 10. What types of index data structures can you have? - An index helps to faster search values in tables. The three most commonly used index-types are: - B-Tree: builds a tree of possible values with a list of row IDs that have the leaf value. Needs a lot of space and is the default index type for most databases. - Bitmap: string of bits for each possible value of the column. Each bit string has one bit for each row. Needs only few space and is very fast.(however, domain of value cannot be large, e.g. SEX(m,f); degree(BS,MS,PHD) - Hash: A hashing algorithm is used to assign a set of characters to represent a text string such as a composite of keys or partial keys, and compresses the underlying data. Takes longer to build and is supported by relatively few databases. 11. What is a "primary key"? - A PRIMARY INDEX or PRIMARY KEY is something which comes mainly from database theory. From its behavior is almost the same as an UNIQUE INDEX, i.e. there may only be one of each value in this column. If you call such an INDEX PRIMARY instead of UNIQUE, you say something about your table design, which I am not able to explain in few words. Primary Key is a type of a constraint enforcing uniqueness and data integrity for each row of a table. All columns participating in a primary key constraint must possess the NOT NULL property. 12. What is a "functional dependency"? How does it relate to database table design? - Functional dependency relates to how one object depends upon the other in the database. for example, procedure/function sp2 may be called by procedure sp1. Then we say that sp1 has functional dependency on sp2. 13. What is a "trigger"? - Triggers are stored procedures created in order to enforce integrity rules in a database. A trigger is executed every time a data-modification operation occurs (i.e., insert, update or delete). Triggers are executed automatically on occurance of one of the data-modification operations. A trigger is a database object directly associated with a particular table. It fires whenever a specific statement/type of statement is issued against that table. The types of statements are insert,update,delete and query statements. Basically, trigger is a set of SQL statements A trigger is a solution to the restrictions of a constraint. For instance: 1.A database column cannot carry PSEUDO columns as criteria where a trigger can. 2. A database constraint cannot refer old and new values for a row where a trigger can. 14. Why can a "group by" or "order by" clause be expensive to process? - Processing of "group by" or "order by" clause often requires creation of Temporary tables to process the results of the query. Which depending of the result set can be very expensive. 15. What is "index covering" of a query? - Index covering means that "Data can be found only using indexes, without touching the tables" 16. What types of join algorithms can you have? 17. What is a SQL view? - An output of a query can be stored as a view. View acts like small table which meets our criterion. View is a precomplied SQL query which is used to select data from one or more tables. A view is like a table but it doesn’t physically take any space. View is a good way to present data in a particular format if you use that query quite often. View can also be used to restrict users from accessing the tables directly.

1 Answers  


How do you handle disciplining a child who is acting out?

0 Answers  


Describe your experience(s) working in an urban setting.

0 Answers  


Categories