Which command is used to start a Flask development server?
a) flask run
b) python flask.py runserver
c) flask runserver
d) python run
Answer:
a) flask run
Explanation:
You can start the Flask development server by using the command flask run in the terminal.