Let f(w) = 2w^3 - 5. What is f(4)?
Let f(w) = 2w^3 - 5. Let z = 2. What is f(z)?
Let g(x) = cos(x/2) - 3x. Let f(x) = 2x + 5. What is g(f(x))?
Let f(x) = tan(x) - 2/x. Let g(x) = x^2 + 8. What is f(x)*g(y)?
What is the derivative of x^2 - x + 3 at the point x = 5?
What is the value of x where x^2 - x + 3 is a minimum?
In Python, what is returned when evaluating [n for n in range(10) if n % 2]?
In Python, what kind of error is returned by the following code? (e.g. NameError, ValueError, IOError, etc.) def my_func(n1, n2): return n1 + n2 my_func(1, 2, 3)
What is returned by datetime(1970, 1, 1).strftime('%Y-%d-%B') in Python?