Question: Given the URL helper `product_path(@product)`, which statement would be expected to be _false_?
- If sent using the PATCH HTTP method, the URL could be used to update a product in the database.
- If sent using the POST HTTP method, the URL would create a new product in the database.
- If sent using the GET HTTP method, the URL would execute the show action in ProductsController.
- If sent using the DELETE HTTP method, the URL would call the destroy action by default.
Answer: The correct answer of the above question is Option B:If sent using the POST HTTP method, the URL would create a new product in the database.