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 |
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
What is difference between array and pointer in c?
How can you avoid including a header more than once?
What is the scope of static variable in c?
How can we see the Expanded source code and compiled code for our source program in C?
How can I open files mentioned on the command line, and parse option flags?
What are macros in C?