Question: Which choice is an _incorrect_ way to render a partial?

  1. `<%= render(:partial => 'shared/product') %>`
  2. `<%= render('shared/product', :collection => @products) %>`
  3. `<%= render(template: 'shared/product', with: @products) %>`
  4. `<%= render('shared/product', locals: { product: @product }) %>`

Answer: The correct answer of the above question is Option C:`<%= render(template: 'shared/product', with: @products) %>`