GET
is used for
viewing something, without changing it, while
POST
is used for
changing something. For example, a search page should use GET to
get data while a
form that changes your password should use POST . Essentially GET is used to
retrieve remote data, and POST is used to insert/update remote data.
110.
What does REST mean? How to bring your API closer to RESTful?
A REST API (also known as RESTful API) is an application programming interface (API
or web API) that conforms to the constraints of REST architectural style and allows
for interaction with RESTful web services. REST stands
for representational state
transfer and was created by computer scientist Roy Fielding.
111.
What is the difference between authorization and authentication?
Authentication
is the process of obtaining some sort of
credentials from the users
and using those credentials to verify the user's identity.
Authorization
is
the process
of allowing an authenticated user access to resources. ... ASP.net provides
flexible set
of alternatives
for authentication
112.
What is CI / CD?