Q. What is the correct way to define a many-to-many field in Django?
β
Correct Answer: (A)
models.ManyToManyField()
Explanation: `ManyToManyField` is used to create many-to-many relationships.