-
1
Demonstrate the complete application.
-
2
Show all core functionalities.
-
3
Explain the complete registration workflow.
-
4
Demonstrate login, registration, appointments, and availability features.
-
5
Show the data stored in the database.
-
6
Locate the code for a specific feature (e.g., adding a doctor).
-
7
Explain the code line by line.
-
8
Show the forms.py file.
-
9
What is ORM?
-
10
Why do we use db.Model?
-
11
Write a SQLAlchemy query to fetch users aged above 50.
-
12
Write a SQLAlchemy query to fetch records where the name starts with a specific letter (e.g., "M").
-
13
What is the significance of if __name__ == "__main__":?
-
14
Write a Flask route that returns Hello World.
-
15
Write a Flask route with a custom input parameter.
-
16
Write a Jinja for loop.
-
17
How many HTTP methods are there?
-
18
Difference between POST and PUT.
-
19
Can PUT be used instead of POST?
-
20
What happens if POST is used to update existing records?