Write an interface called Reversible. The interface should h…

Write an interface called Reversible. The interface should have one abstract method called reverse that has no parameters and doesn’t return a value. Canvas Tip: Click on the dropdown that says “Paragraph” and switch to “Preformatted” to get a monospaced font – this can help in coding answers.

app = Flask(__name__)@app.route(‘/’)def home():   return(“Pl…

app = Flask(__name__)@app.route(‘/’)def home():   return(“Please pass in a query string.”)@app.route(‘/query_display’)def query():   query1 = request.args.get(“education”, “UWMadison”)   query2 = request.args.get(“major”, “Undeclared”)   return f”Education: {query1}, Major: {query2}” if __name__ == ‘__main__’:   app.run(debug=True)     Assume the external IP address of the server is 35.226.134.145. What value will be displayed on the webpage upon accessing –  http://35.226.134.145:5000/query_display?education=UWash&major=CS&Philosophy  

Perform Merge Sort in the following array by completing the…

Perform Merge Sort in the following array by completing the diagram. Use this template for your answer (please type fully – you cannot copy): 1: [answer for 1st incomplete row from the top – type the 8 numbers space-separated to fill in the diagram from left to right] 2: [answer for 2nd incomplete row from the top] 3: [answer for 3rd incomplete row from the top] 4: [answer for 4th incomplete row from the top] 5: [answer for 5th incomplete row from the top] 6: [answer for 6th incomplete row from the top]