Question: Should you create a custom user model for new projects?

  1. No. Using a custom user model could break the admin interface and some third-party apps.
  2. Yes. It is easier to make changes once it goes into production.
  3. No. Django's built-in models.User class has been tried and tested?no point in reinventing the wheel.
  4. Yes, as there is no other option.

Answer: The correct answer of the above question is Option C:No. Django's built-in models.User class has been tried and tested?no point in reinventing the wheel.