UNIT-6 Flashcards
1
Q
API
A
Application Programming Interface
2
Q
Request
A
Please give me some data
3
Q
Response
A
OK, here’s some data for you
4
Q
Request
A
CLIENT uses browser GETS from SERVER
5
Q
HTTP Request Verbs
A
Request action options
6
Q
HTTP Verbs
A
GET
POST
PUT
DELETE
7
Q
get data sent to you from the server
A
GET
8
Q
add data to the server
A
POST
9
Q
update data on the server
A
PUT
10
Q
delete data from the serve
A
DELETE
11
Q
RESPONSE
A
Server responds to client through BROWSER
12
Q
JSON
A
JavaScript Object Notation
13
Q
JSON STRUCTURE
A
key and value
{
“name”: “Robert”
“hobby”: “first aiding”
}
14
Q
Everything is an _____.
A
OBJECT
15
Q
METHOD
A
honk: function() { alert(“BEEEPPPPPP”) }