samanthamunevar1512 samanthamunevar1512 27-02-2024 Computers and Technology contestada The given algorithm is an example of what? Algorithm reversearray(a, i, j): If i < j then Swap a[i] and a[j] reversearray(a, i + 1, j - 1) Return a. Recursion b. Sorting c. Searching d. Iteration