Beginner Web & Software Development
Q4 / 100

What is REST in web development?

Correct! Well done.

Incorrect.

The correct answer is B) Representational State Transfer — an architectural style for designing stateless HTTP APIs using standard HTTP methods

B

Correct Answer

Representational State Transfer — an architectural style for designing stateless HTTP APIs using standard HTTP methods

Explanation

RESTful APIs use HTTP methods: GET (retrieve), POST (create), PUT/PATCH (update), DELETE (remove). Resources are identified by URLs. Responses are typically JSON. Stateless: each request is self-contained.

Progress
4/100