What command is used to create a new Django project?
Where do you define URL routes in a Django project?
Which function is used to render HTML templates in Django?
What does the Django ORM allow you to do?
Which file contains all the project-wide settings in Django?
What is the main benefit of using Django’s class-based views (CBVs)?
Which class-based view would you use to update an object?
What is a mixin in Django CBVs?
What does select_related() do in Django ORM?
Which ORM method allows you to filter many-to-many relationships?
What is the purpose of Django middleware?
How do you connect a signal to a receiver function in Django?
What signal is sent after a model instance is saved?
What is ASGI in Django?
Which Django version added native async view support?