The suggested answer is A, B.
REST APIs have the distinct characteristic of accessing resources using Uniform Resource Identifiers (URIs), ensuring that each resource can be uniquely identified. Additionally, REST APIs map CRUD (Create, Read, Update, Delete) operations to standard HTTP methods, such as POST (create), GET (read), PUT/PATCH (update), and DELETE (delete). These features are integral to the design and functionality of RESTful services.