If I have a big array with a high range of values, which would be faster, Quick sort or Merge sort?
First I would say both take the same time, because both have best case O(n*log(n) and both sorting algorithms should not be negatively effected by the array specification.
But because Quick sort is very reliant on the pivot you might want to argue that merge is better