Question: Which ActiveRecord query prevents SQL injection?
- `Product.where("name = #{@keyword}")`
- `Product.where("name = " << @keyword}`
- `Product.where("name = ?", @keyword`
- `Product.where("name = " + h(@keyword)`
Answer: The correct answer of the above question is Option C:`Product.where("name = ?", @keyword`