Problem Statement
Which HTTP methods are commonly used in RESTful APIs?
Explanation
RESTful APIs follow HTTP standards where GET retrieves data, POST creates, PUT updates, and DELETE removes resources. Understanding these verbs and their stateless behavior is a frequent modern interview topic.
