Django

 20 Minutes
 10 Questions


This test will assess a candidate's knowledge of the Django web framework and its related technologies. The test will include questions on topics such as Object Relational Mapping (ORM) and Forms. Candidates should be able to demonstrate their understanding of how to use Django's ORM to create, read, update, and delete data from a database, as well as how to create and manage forms using the Django Forms library.


Example Question:

Multiple-Choice
Which of the following querysets will return the same results?
A:
Shop.objects.filter(field1=1, field2__gt=5)
B:
Shop.objects.exclude(field1__gt=1, field1__lt=1, field2__lte=5)
C
Shop.objects.exclude(field1__gt=1).exclude(field1__lt=1).exclude(field2__lte=5)