InterviewSolution
| 1. |
Explain About Restful Architecture? |
|
Answer» RESTful: REST STANDS for Representational State Transfer. REST is an architecture for designing both web applications and application programming interfaces (API’s), that’s uses HTTP. RESTful interface means clean URLs, less CODE, CRUD interface. CRUD means Create-READ-UPDATE-DESTROY. In REST, they add 2 NEW verbs, i.e, PUT, DELETE. RESTful: REST stands for Representational State Transfer. REST is an architecture for designing both web applications and application programming interfaces (API’s), that’s uses HTTP. RESTful interface means clean URLs, less code, CRUD interface. CRUD means Create-READ-UPDATE-DESTROY. In REST, they add 2 new verbs, i.e, PUT, DELETE. |
|