Week 5 Practice Quizzes and Quizzes
What is webscraping? The process to display all data within a URL The process to describe communication options The process to extract data from a particular website The process to request and retrieve information from a client
The process to extract data from a particular website
What is the primary purpose of an API? To connect and enable communication between software applications. To handle server-side database operations. To design user interfaces for mobile applications. To provide security to web applications.
To connect and enable communication between software applications.
What does URL stand for? Uniform Request Location Uniform Resource Locator Unilateral Resistance Locator Uniform Resource Learning
Uniform Resource Locator
What is the function of "GET" in HTTP requests? Deletes a specific resource Returns the response from the client to the requestor Carries the request to the client from the requestor Sends data to create or update a resource
Carries the request to the client from the requestor
What does API stand for? Automatic Program Interaction Application Process Interface Application Programming Interaction Application Programming Interface
Application Programming Interface
What does the file extension "csv" stand for? Comma Separated Values Comma Separation Valuations Common Separated Variables Comma Serrated Values
Comma Separated Values
What is the purpose of this line of code used in webscraping? table_row = table.find_all(name="tr") It will find all of the data within the table marked with a tag "a" It will find all of the data within the table marked with a tag "p" It will find all of the data within the table marked with a tag "tr" It will find all of the data within the table marked with a tag "h1"
It will find all of the data within the table marked with a tag "tr"
What data format is commonly found in the HTTP message for an API request? JSON HTML YAML XML
JSON
What data structure do HTTP responses generally return? Nested Lists Tuples Lists JSON
JSON
The Python library we use to plot in vid/lab is? MatPlotLib PyCoinGecko Plotly Pandas
MatPlotLib
What are the 3 parts to a response message? Start or status line, header, and body HTTP headers, blank line, and body Bookmarks, history, and security Encoding, body, and cache
Start or status line, header, and body