PY4E: Chapter 13 (Part 2)- Questions and
Answers| Latest Update
What kind of variable will you get in Python when the following JSON is parsed:
[ "Glenn", "Sally", "Jen" ] A list with three items
Which of the following is not true about the service-oriented approach? An application
runs together all in one place
Which of these two web service approaches is preferred in most modern service-oriented
applications? REST - Representational state transfer
What library call do you make to append properly encoded parameters to the end of a URL like
the following:
http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=Ann+Arbor%2C+MI
urllib.parse.urlencode()
What happens when you exceed the Google geocoding API rate limit? You cannot use the
API for 24 hours
What protocol does Twitter use to protect its API? OAuth
What header does Twitter use to tell you how many more API requests you can make before you
will be rate limited? x-rate-limit-remaining
Answers| Latest Update
What kind of variable will you get in Python when the following JSON is parsed:
[ "Glenn", "Sally", "Jen" ] A list with three items
Which of the following is not true about the service-oriented approach? An application
runs together all in one place
Which of these two web service approaches is preferred in most modern service-oriented
applications? REST - Representational state transfer
What library call do you make to append properly encoded parameters to the end of a URL like
the following:
http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=Ann+Arbor%2C+MI
urllib.parse.urlencode()
What happens when you exceed the Google geocoding API rate limit? You cannot use the
API for 24 hours
What protocol does Twitter use to protect its API? OAuth
What header does Twitter use to tell you how many more API requests you can make before you
will be rate limited? x-rate-limit-remaining