Problem:
Question 1: What is big data analytics? PLease describe in detail.
Question 2: Write a procedure sort3(int& a, int& b, int& c) that swaps its three inputs to arrange them in sorted order.
For example:
int v = 3;
int w = 4;
int x = 1;
sort3(v, w, x); //V is now 1, w is not 3, x is now 4
Please show your all work.