A company is developing a RESTful API for a customer management system. The API should be able to perform CRUD (Create, Read, Update, Delete) operations
on customer data. Which of the following HTTP methods should the API use for each operation?
A. Create - GET,Read - GET,Update - POST,Delete - PUT
B. Create - GET,Read - PATCH,Update - POST,Delete - DELETE
C. Create - POST,Read - GET,Update - POST,Delete - PATCH
D. Create - POST,Read - GET,Update - PUT,Delete - DELETE