Explanation:
arithmetic operations in functions are simple : you take both expressions and apply the arithmetic operation on them.
in our case : addition.
f(x) = 4x² + 5x - 3
g(x) = 4x³ - 3x² + 5
(f+g)(x) = (4x² + 5x - 3) + (4x³ - 3x² + 5) =
= 4x² + 5x - 3 + 4x³ - 3x² + 5 =
= 4x³ + x² + 5x + 2
so, B should be the right answer (despite all the typos there).