Which choice is an incorrect way to render a partial?
a. <%= render(:partial => 'shared/product') %>
b. <%= render('shared/product', :collection => @products) %>
c. <%= render(template: 'shared/product', with: @products) %>
d. <%= render('shared/product', locals: { product: @product }) %>