Question 14
Consider the following Flask application:
from flask import Flask
app = Flask(__name__)
@app.route('/')def home(): return "Welcome to Home Page"
@app.route('/user/<name>')def user(name): return f"Hello, {name}!"
@app.route('/profile/<int:user_id>')def profile(user_id): return f"User Profile ID: {user_id}"
if __name__ == "__main__": app.run(debug=True)Assume the Flask application is running on http://127.0.0.1:5000/ . Which of the following statements about this application are correct?