Test description

This test evaluates your knowledge of the Django web framework and focuses on the backend side.
Topics: Django models, Views, Templates, Fixtures, testing, middleware classes, request handling, etc.

Sample questions

1
Given the following Django model: Choose the correct way to create the "John Doe" user with the "john@doe.com" email address.

class User(models.Model):
    email = models.EmailField()
    first_name = models.CharField(max_length=255)
    last_name = models.CharField(max_length= 255)

    is_active = models.BooleanField(default=True)