Home »
Python »
Django MCQs
Which Django functions are used to take http requests and return http responses?
11. Which Django functions are used to take http requests and return http responses?
- Django views
- Django request() and response()
- Django templates
- Both A and B
Answer: A) Django views
Explanation:
To take http requests and return http responses, Django views are used which are Python functions.