The problem asks for the worst-case number of arithmetic operations performed by a recursive binary search on a sorted array of size \(n\). To solve this, we need to understand how binary search works and analyze its time complexity.
Now, let's rule out the other options:
Thus, the correct answer is \(\Theta(\log_2 n)\), which corresponds to the worst-case scenario for a binary search on a sorted array.