Question: In Rails, which code would you use to define a route that handles both the `PUT` and `PATCH` `REST HTTP` verbs?
- `put :items, include: patch`
 - `put 'items', to: 'items#update'`
 - `match 'items', to 'items#update', via: [:put, :patch]`
 - `match :items, using: put && patch`
 
Answer: The correct answer of the above question is Option C:`match 'items', to 'items#update', via: [:put, :patch]`