What does REST stand for?
A) Representational State Transfer
B) Reliable State Transfer
C) Remote State Transfer
D) Reusable State Transfer
Answer:
A) Representational State Transfer
Explanation:
REST stands for Representational State Transfer. It is an architectural style that defines a set of constraints and principles for creating web services. RESTful services are stateless, meaning each request from a client to a server must contain all the information the server needs to fulfill that request. REST is widely used for web APIs because of its simplicity, scalability, and ability to use standard HTTP methods (GET, POST, PUT, DELETE) to perform CRUD operations.