Concept:Composition g∘f means apply f first, then apply g to the result.Explanation:Given f(x)=x2 and g(x)=sinx.g∘f(x)=g(f(x)).Since f(x)=x2, substitute into g:g(f(x))=g(x2).Now evaluate g at x2:g(x2)=sin(x2).Thus, g∘f=sinx2.Option A, sin2x, would be f∘g, not g∘f.Answer:B. sinx2