1.
Which of the following is the output of the following code?
Value template
34.23423 {{ value|floatformat:"0" }}
34.00000 {{ value|floatformat:"0" }}
34.26000 {{ value|floatformat:"0" }}
2.
Which of the following indicates the use of unordered_list in Django:
1. Recursively takes a self-nested list and returns an HTML unordered list – WITHOUT opening and closing tag
2. Recursively takes a self-nested list and returns an HTML unordered list – WITH opening and closing tags
3.
In Django, what is the correct order of the clean method calls for a form:
1. clean() method of the Form class
2. clean_() method of the Form class
3. clean() method of the Field class
4.
Which of the following is included in the Django framework?
5.
In Django, ___________________ added to MIDDLEWARE_CLASSES for session framework?
6.
In Django, file session framework is defined in ________________.
7.
Which of these files is used to establish a link between a Django application and the server?
8.
In Django, which of these inherits generic views?
9.
In Django, the redirect method accepts the ____________ datatype.
10.
In Django, which of the following statements about the comment tag is correct?