Complete the code to show why REST APIs are useful for communication between systems.
A REST API allows different systems to [1] data over the internet.REST APIs enable systems to exchange data easily and clearly.
Complete the code to explain how REST APIs use HTTP methods.
REST APIs use HTTP methods like GET and POST to [1] actions on resources.
HTTP methods tell the API what action to perform on data.
Fix the error in the sentence explaining REST API benefits.
REST APIs help systems to [1] data in a way that is platform dependent.
REST APIs allow data exchange that is platform independent, meaning it works across different systems.
Fill both blanks to complete the dictionary comprehension explaining REST API data filtering.
filtered_data = {item: data[item] for item in data if data[item] [1] [2]This code filters data items where the value is greater than 10.
Fill all three blanks to complete the dictionary comprehension that creates a new dictionary with uppercase keys and values greater than 5.
result = [1]: [2] for [3], [2] in data.items() if [2] > 5
This comprehension creates a dictionary with keys in uppercase and includes only items with values greater than 5.