Q.2:
Which function in the django.urls package can help you avoid hardcoding URLS by generating a URL given the name of a view?z
A.
Get_script_prefix()
B.
Redirect()
C.Reverse()
D.
Resolve()
Q.3:
Which is not a third-party package commonly used for authentication?D
A.
Django-guardian
B.
Django-rest-auth
C.
Authtoken
D.Django-rest-framework-jwt
Q.4:
To add a new app to an existing Django project, you must edit the _ section of the _ file.Z
A.
ALLOWED_HOSTS; settings.py
B.
APPS; manage.py
C.INSTALLED_APPS; settings.py
D.
TEMPLATES; urls.py
Q.5:
What python module might be used to store the current state of a Django model in a file?X
A.Pickle
B.
Struct
C.
Marshal
D.
Serialize
Q.6:
You are uploading a file to Django from a form and you want to save the received file as a field on a model object. You can simply assign the file object from**_to a field of type__**in the model.
A.
Request.META; FileField
B.
Request.FILES; BLOBField
C.Request.FILES; FileField
D.
Request.META.Files; CLOBField
Q.7:
What is a callable that takes a value and raises an error if the value fails to meet some criteria?c
A.
Mediator
B.Validator
C.
Regular expression
D.
Deodorizer
Q.8:
When should you employ the POST method over the GET method for submitting data from a form?[
A.When the data in the form may be sensitive*
B.
When you want the data to be cached#
C.
When you want to use your browser to help with debugging8
D.
When efficiency is important
Q.9:
In Django, what are used to customize the data that is sent to the templates?M
A.
Models
B.Views
C.
Forms
D.
Serializers
Q.10:
Why might you want to write a custom model Manager?3
A.
To perform database queries
B.
To set up a database for testing
C.To modify the initial QuerySet that the Manager returns7
D.
To filter the results that a database query returns3