Q. How do you register a model to the Django admin?
β
Correct Answer: (B)
admin.site.register(Model)
Explanation: admin.site.register(Model) is used to register a model to the Django admin interface.