Q. Which Django ORM method returns a single object or raises DoesNotExist?
β
Correct Answer: (A)
get()
Explanation: `get()` fetches a single object or raises `DoesNotExist` exception if not found.