Which one of the following correctly determines the solution of the recurrence relation with

T(1) = 1?
T(n) = 2T (n/2) + log r

a. Θ(n)
b. Θ(n log n)
c. Θ (n²)
d. Θ(log n)