InterviewSolution
Saved Bookmarks
| 1. |
What is Representational State Transfer (REST) mean? |
|
Answer» REST is an architectural style which uses HTTP protocol methods like GET, POST, PUT, and DELETE to access the data. ASP.Net MVC works in this style. In ASP.Net MVC 4 there is a support for Web API which uses to build the service using HTTP verbs. |
|