Question 1: What is REST API?
Ans
A REST-style API exposes resources through HTTP and commonly uses methods such as GET, POST, PUT, PATCH, and DELETE.
It is widely used for communication between web/mobile clients and backend services.
Example
textGET /api/students/101 POST /api/students
Important Point
REST is an architectural style, not simply a synonym for "JSON API."