Fill in the blank: CREATE is to POST as UPDATE is to ____.
- UPLOAD
- PATCH
- REPAIR
- CHANGE
Explanation: The correct answer is PATCH. In the context of web development and APIs, the relationship between CREATE and POST mirrors that of UPDATE and PATCH. When creating new data in a system, the HTTP method commonly used is POST. Similarly, when updating existing data, the appropriate HTTP method is PATCH. The POST method is utilized to submit data to be processed by a specific resource, resulting in the creation of a new resource. Conversely, the PATCH method is employed to apply partial modifications to an existing resource. This means that while POST creates new entries, PATCH updates existing ones. Therefore, the correct analogy is that CREATE is to POST as UPDATE is to PATCH, as both pairs represent the actions of adding new data and modifying existing data, respectively, in accordance with standard HTTP methods used for these operations in web development and API design.