Concept:Composition of functions f(g(x)) substitutes g(x) into f(x).Explanation:Given f(x)=2x+5 and g(x)=x2+1, we compute fog=f(g(x)).Substitute g(x) into f(x): f(g(x))=2(g(x))+5=2(x2+1)+5.Simplify: 2(x2+1)=2x2+2, then add 5 to get 2x2+7.Answer:fog=2x2+7, which corresponds to option A.