Let's see whether you can answer the following questions correctly:
- Which of the following commands run the script to create a new Django app named recipes:
- python django.py startapp recipes
- python manage.py startapp recipes
- python starapp.py recipes
- Which of the following strings must be added to the INSTALLED_APPS variable to add Django REST Framework in the Django application:
- 'rest-framework'
- 'django-rest-framework'
- 'rest_framework'
- Django's ORM:
- Is integrated with Django
- Has to be configured as an optional component in Django
- Has to be installed after configuring SQLAlchemy
- In Django REST Framework, serializers are:
- Mediators between the view functions and Python primitives
- Mediators between the URLs ...