Django was created in the fall of?
1.2001
2.2003
3.2005
4.2007
Posted Date:-2022-09-25 07:51:20
How many kinds of HTTP requests there in Django?
1.2
2.3
3.4
4.5
Posted Date:-2022-09-25 08:11:58
In Django how would you retrieve all the 'User' records from a given database?
1.User.objects.all()
2.Users.objects.all()
3.User.all_records()
4.User.object.all()
Posted Date:-2022-09-25 15:57:49
Suppose you want to count the number of books in Django.Which implementation would be fastest?
1.Template Language Implementation – {{ books | length }}
2.Python Implementation – len(books)
3.Database level Implementation – books.count()
4.None of the above
Posted Date:-2022-09-25 08:13:08
The architecture of Django consists of?
1.models
2.Views
3.Templates
4. All of the these
Posted Date:-2022-09-25 15:52:58
What happens if MyObject.objects.get() is called with parameters that do not match an existing item in the database?
1.The Http404 exception is raised
2.The DatabaseError exception is raised
3.The MyObject.DoesNotExist exception is raised
4.The object is created and returned
Posted Date:-2022-09-25 14:00:55
Which of these variables are the settings for django.contib.staticfiles app?
1.STATIC_URL
2.STATIC_ROOT
3.STATICFILES_DIRS
4.All of the above
Posted Date:-2022-09-25 08:14:31
5. MVC pattern is based on _______ components.
1.2
2.3
3.4
4.5
Posted Date:-2022-09-25 07:54:43
A variable in django looks like this: _________________.
1.((variable))
2.{{variable}}
3. [[variable]]
4. [{variable}]
Posted Date:-2022-09-25 08:10:00
By using django.contrib.humanize, you can use the following filter in your template to display the number 3 as three.
1.apnumber.
2.intcomma
3.intword
4.ordinal
Posted Date:-2022-09-25 08:25:41
Django Comments framework is deprecated, since the 1.5 version.
1.TRUE
2.FALSE
3.Can be true or false
4.Can not say
Posted Date:-2022-09-25 08:19:19
Django is a _____________ Python web framework.
1.low-level
2.mid-level
3.high-level
4.none of the above
Posted Date:-2022-09-25 07:46:22
Django supports the ___________ pattern.
1.MVP
2.MVI
3.MVC
4.MVZ
Posted Date:-2022-09-25 07:53:52
How do you concatenate two QuerySets into one list?
1. result = list(query_set_1 | query_set_2)
2.from itertools import chain result = list(chain(query_set_1, query_set_2))
3. from django.db.models import Q result = Q(query_set_1) | Q(query_set_1)
4.result = query_set_1 + query_set_2
Posted Date:-2022-09-25 08:27:37
In Django, views have to be created in the app views.py file.
1.TRUE
2.FALSE
3.Can be true or false
4.Can not say
Posted Date:-2022-09-25 08:06:20
MVT Stands for?
1.Model-View-Template
2.Model-View-Table
3.Map-View-Template
4.Main-View-Template
Posted Date:-2022-09-25 07:55:53
Render function takes ___________ parameters.
1.1
2.2
3.3
4.4
Posted Date:-2022-09-25 08:07:38
View response can be the ?
1.HTML contents
2.XML documen
3.404 error
4.All of the above
Posted Date:-2022-09-25 08:03:53
What are some valid forloop attributes of Django Template System?
1.forloop.lastitem
2.forloop.counter
3.forloop.firstitem
4.forloop.reverse
Posted Date:-2022-09-25 08:16:24
What are the advantages of using Django for web development?
1.It facilitates you to divide code modules into logical groups to make it flexible to change
2.It provides auto-generated web admin to make website administration easy
3.It provides pre-packaged API for common user tasks
4. All of the above
Posted Date:-2022-09-25 08:33:52
What are the features available in Django web framework?
1.Admin Interface (CRUD)
2.Templating
3.Form handling
4. All of the above
Posted Date:-2022-09-25 08:32:16
What Commands are used to create a project in Django?
1.Project
2._init_.py
3.manage.py
4.All of the above mentioned
Posted Date:-2022-09-25 15:49:57
What does of Django field class types do?
1.The database column type
2.The default HTML widget to avail while rendering a form field
3.The minimal validation requirements used in Django admin
4.All of the above
Posted Date:-2022-09-25 15:54:21
What is the Django command to start a new app named 'users' in an existing project?
1.manage.py "“newapp users
2.manage.py newapp users
3.manage.py "“startapp users
4.manage.py startapp users
Posted Date:-2022-09-25 08:29:52
What is the Django command to view a database schema of an existing (or legacy) database?
1.manage.py legacydb
2.django-admin.py schemadump
3.manage.py inspect
4.manage.py inspectdb
Posted Date:-2022-09-25 15:51:50
What is the Django shortcut method to more easily render an html response?
1.render_to_html
2. render_to_response
3. response_render
4.render
Posted Date:-2022-09-25 08:24:34
What is the most easiest, fastest, and most stable deployment choice in most cases with Django?
1. FastCGI
2.mod_wsgi
3.SCGI
4.AJP
Posted Date:-2022-09-25 08:35:12
What is the purpose of settings.py?
1. To configure settings for the Django project
2.To configure settings for an app
3. To sync the database schema
4.To set the date and time on the server
Posted Date:-2022-09-25 15:56:04
Which commands use to create a project in Django?
1. $ django-admin createproject project_name
2. $ django-admin startproject project_name
3.$ django startproject project_name
4. $ django createproject project_name
Posted Date:-2022-09-25 07:58:22
Which file is kind of your project local django-admin for interacting with your project via command line?
1. settings.py
2.admin.py
3.models.py
4. manage.py
Posted Date:-2022-09-25 07:59:56
Which of the following are Advantages of Django?
1.Object-Relational Mapping (ORM) Support
2.Multilingual Support
3.Administration GUI
4.Framework Support
Posted Date:-2022-09-25 07:52:21
Which of the following is used If you need to deploy your project over WSGI?
1.settings.py
2.wsgi.py
3. urls.py
4..py __init__
Posted Date:-2022-09-25 08:01:30
Which of these is not a valid method or approach to perform URL resolution?
1.Using Template {{ url : }} in template
2. Using reverse() in View Function
3.Using get_absolute_url()
4.None of the above
Posted Date:-2022-09-25 08:20:54