HTTP methods like GET, POST, PUT, DELETE define the action to perform on a resource.
Step 2: Reason about URL design
URLs should represent resources (nouns), while HTTP methods specify the action (verbs). Including verbs in URLs is redundant and against REST principles.
Final Answer:
Because HTTP methods already define actions -> Option B