Q. What is the correct way to reverse a URL in Django?
β
Correct Answer: (D)
reverse_lazy('url_name')
Explanation: `reverse_lazy` is used when URL reversing needs to be lazy-loaded.