Question: What will this URL pattern match? url(r'^\$', views.hello)
- a string beginning with the letter Ra string beginning with the letter R
- an empty string at the server root
- a string containing ^ and $a string containing ^ and $
- an empty string anywhere in the URLan empty string anywhere in the URL
Answer: The correct answer of the above question is Option B:an empty string at the server root