2025/2026 Graded A+
Who is credited with getting the JSON movement started? - Douglas Crockford
What Python library do you have to import to parse and handle JSON? - import
json
What is the method used to parse a string containing JSON data so that you can
work with the data in Python? - json.loads()
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=A
nn+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