Which statement is false about the recurrence relation t(n) = 2t(n/2), t(0) = t(1) = 1?
a) It follows a linear growth pattern
b) It has a base case of t(0) = t(1) = 1
c) It exhibits exponential growth
d) It's a recursive function