forked from bloominstituteoftechnology/ios-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnswers.txt
More file actions
26 lines (12 loc) · 728 Bytes
/
Answers.txt
File metadata and controls
26 lines (12 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
What is a RESTful interface? When do you use it? What are its characteristics?
What is the difference between POST and PUT?
Put updates info, while POST adds new info.
How does the record ID work in Firebase?
Why does it take two steps to save a record (first POST then PUT) in our app?
Why does the FirebaseItem protocol even exist?
Explain what a generic type is and what advantages it offers.
What does a URLRequest do?
When do you need one and when can you just use a URL?
What is the role of a URL session? How does it work?
What are completion handlers? Why use completion handlers? What advantages do they provide?
Explain at least three strategies that promote code reuse that we used in today's project