REST API Flashcards

1
Q

• API stands for

A

application programming interface. It defines how two pieces of software will communicate with each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

• Representational State Transfer – REST:

A

is a language-independent architecture that provides interoperability between computer systems on the Internet. It utilizes a stateless protocol aiming for fast performance and reliability.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

• RESTful web services allow

A

us to perform CRUD operations. A RESTful API is an application program interface (API) that uses HTTP requests to GET, PUT, POST and DELETE data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

• Stateless means

A

each request from client to server must contain all of the information necessary to understand the request, and cannot take advantage of any stored context on the server. Session state is kept entirely on the client

How well did you know this?
1
Not at all
2
3
4
5
Perfectly