Question: Given this controller code, which choice describes the expected behavior if parameters are submitted to the update action that includes values for the product's name, style, color, and price?
- The product will not be updated and the edit template will be rendered.
- The product will not be updated and the controller will raise an ActiveModel::ForbiddenAttributes exception.
- The product will be updated with the values for name, style, and color, but the value for price will be ignored.
- The product will be updated with the values for name, style, color, and price.
Answer: The correct answer of the above question is Option B:The product will not be updated and the controller will raise an ActiveModel::ForbiddenAttributes exception.