Question: Which choice is an _incorrect_ way to render a partial?
- `<%= render(:partial => 'shared/product') %>`
- `<%= render('shared/product', :collection => @products) %>`
- `<%= render(template: 'shared/product', with: @products) %>`
- `<%= render('shared/product', locals: { product: @product }) %>`
Answer: The correct answer of the above question is Option C:`<%= render(template: 'shared/product', with: @products) %>`