Describe the process and purpose of crowd-sourcing.
What will be an ideal response?
Crowd-sourcing is general term for the outsourcing of tasks to a distributed, undefined group of people. Although this strategy can yield results, you will have most success if you have thoroughly researched the problem and provide a comprehensive description, including information such as version, configuration, relevant event log and error messages, and, if possible, an example that would enable a third party to replicate the problem.
You might also like to view...
Two or more tables that contain duplicate data are an example of:
A) one-to-many relationships. B) data redundancy. C) many-to-many relationships. D) data backup.
What is the output of the following code fragments?
int trial( int& a, int b) { if(b > a) { a=b; return –a; } else { return 0; } } float x=0, y=10,z; z=trial(y,x); cout << z << " " << x <<" " << y << endl; a. –10 0 0 b. 0 10 0 c. 10 0 0 d. 0 0 10