Correct answer is (d) 2 log (n)
Easy explanation - Quicksort has a worst case time complexity of O(n^2) which is not preferable. So in order to avoid worst case of quicksort, introsort switches to heap sort when the depth is greater than 2 log(n). This particular value has been deduced experimentally.