Multiple choice technology architecture The complexity of merge sort algorithm is O(n) O(log n) O(n2) O(n log n) Reveal answer Fill a bubble to check yourself D Correct answer Explanation Merge sort has O(n log n) complexity because it divides the array in half log n times (the divide step) and merges n elements at each level (the conquer step). This gives n × log n operations.