wht is the difference between KPO and BPO ?
Answers were Sorted based on User's Feedback
Answer / pedda
KPO-> Knowledge process outsourcing
in these process to identify out sourcing is very
critical.
Knowledge process can be defined as high added value
processes chain where the achievement of objectives is
highly dependent on the skills, domain knowledge and
experienceof the people carrying out the activity.
BPO-> Business process outsourcing
in these process to identify the out sourcing is
essay(than the KPO) ,bpo means like a call centers
| Is This Answer Correct ? | 113 Yes | 11 No |
Answer / vijith
KPO->Knowledge Process Outsourcing
BPO->Business Process Outsourcing
| Is This Answer Correct ? | 96 Yes | 9 No |
Would you rather wait for the results of a quicksort, a linear search, or a bubble sort on a 200000 element array? 1) Quicksort 2) Linear Search 3) Bubble Sort
can you change name of main()?how?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
what is a static function
What is the collection of communication lines and routers called?
Are there any problems with performing mathematical operations on different variable types?
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
What is pointer to pointer in c language?
What are different storage class specifiers in c?
What is volatile in c language?
Is c call by value?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output