← Back to Test

Problem 12 - Entrance Test

A function f(x) satisfies f(0) = 2, f(1) = 3, and for x > 0, f(x + 1) = 2 * f(x) - 1. What is f(5)?

Correct: C

undefined