August 26, 2018

Srikaanth

Django Freshers Interview Questions And Answers

What Is Django?

Django is a high­level Python Web framework that encourages rapid development and clean, pragmatic design. Developed by a fast­moving online­news operation, Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high­performing, elegant Web applications quickly.

How To Create A Project In Django?

To start a project in Django, use the command $django-admin.py and then use the following command:

Project
_init_.py|
manage.py
settings.py
urls.py.
How Can You Set Up The Database In Djanago?

To set up a database in Django, you can use the command edit mysite/setting.py , it is a normal python module with module level representing Django settings.

By default, Django uses SQLite database. It is easy for Django users because it doesn't require any other type of installation. In the case of other database you have to the following keys in the DATABASE 'default' item to match your database connection settings.

Engines: you can change database by using 'django.db.backends.sqlite3' , 'django.db.backeneds.mysql', 'django.db.backends.postgresql_psycopg2', 'django.db.backends.oracle' and so on

Name: The name of your database. In the case if you are using SQLite as your database, in that case database will be a file on your computer, Name should be a full absolute path, including file name of that file.

Note: You have to add setting likes setting like Password, Host, User, etc. in your database, if you are not choosing SQLite as your database.

Explain What Does Django-admin.py Make Messages Command Is Used For?

This command line executes over the entire source tree of the current directory and abstracts all the strings marked for translation.  It makes a message file in the locale directory.

Explain The Use Of Session Framework In Django?

In Django, the session framework enables you to store and retrieve arbitrary data on a per-site-visitor basis.  It stores data on the server side and abstracts the receiving and sending of cookies.  Session can be implemented through a piece of middleware.

Explain How You Can Use File Based Sessions?

To use file based session you have to set the SESSION_ENGINE settings to “django.contrib.sessions.backends.file”

Explain The Migration In Django And How You Can Do In Sql?

Migration in Django is to make changes to your models like deleting a model, adding a field, etc. into your database schema.  There are several commands you use to interact with migrations.

Migrate
Makemigrations
Sqlmigrate
To do the migration in SQL, you have to print the SQL statement for resetting sequences for a given app name.
django-admin.py sqlsequencreset
Use this command to generate SQL that will fix cases where a sequence is out sync with its automatically incremented field data.

What Does The Django Templates Contain?

A template is a simple text file. It can create any text-based format like XML, CSV, HTML, etc. A template contains variables that get replaced with values when the template is evaluated and tags (%tag%) that controls the logic of the template.

Is Django A Content Management System (cms)?

No, Django is not a CMS. Instead, it is a Web framework and a programming tool that makes you able to build websites.

What Is The Use Of Session Framework In Django?

The session framework facilitates you to store and retrieve arbitrary data on a per-site visitor basis. It stores data on the server side and abstracts the receiving and sending of cookies. Session can be implemented through a piece of middleware.

How Can You Set Up Static Files In Django?

There are three main things required to set up static files in Django:
1.Set STATIC_ROOT in settings.py
2.run manage.py collectsatic
3.set up a Static Files entry on the PythonAnywhere web tab

How To Use File Based Sessions?

You have to set the SESSION_ENGINE settings to "django.contrib.sessions.backends.file" to use file based session.

What Is Some Typical Usage Of Middlewares In Django?

Some usage of middlewares in Django is:

Session management
Use authentication
Cross-site request forgery protection
Content Gzipping, etc.

What Does Of Django Field Class Types Do?

The Django field class types specify:

The database column type.
The default HTML widget to avail while rendering a form field.
The minimal validation requirements used in Django admin.
Automatic generated forms.

What Constitutes Django Templates?

Template can create formats like XML,HTML and CSV(which are text based formats). In general terms template is a simple text file. It is made up of variables that will later be replaced by values after the template is evaluated and has tags which will control template’s logic.

How Do You Use Views In Django?

Views will take request to return response.  Let’s write a view in Django :  “example” using template example.html , using  the date-time module to tell us exact time of reloading the page.  Let’s edit a file called view.py, and it will be inside randomsite/randomapp/

To do this save and copy following into a file:

from datatime import datetime

from django.shortcuts import render

     def home (request):

return render(request, ‘Guru99_home.html’, {‘right_now’: datetime.utcnow()})
You have to determine the  VIEW first, and then uncomment this line located in file urls.py
# url ( r ‘^$’ , ‘randomsite.randomapp.views.home’ , name ‘example’),
This will reload the site making changes obvious.

What Does Django Mean?

Django is named after Django Reinhardt, a gypsy jazz guitarist from the 1930s to early 1950s who is known as one of the best guitarists of all time.

Which Architectural Pattern Does Django Follow?

Django follows Model-View Controller (MVC) architectural pattern.

Mention What Does The Django Templates Consists Of?

The template is a simple text file.  It can create any text-based format like XML, CSV, HTML, etc.  A template contains variables that get replaced with values when the template is evaluated and tags (% tag %) that controls the logic of the template.

Which Foundation Manages Django Web Framework?

Django web framework is managed and maintained by an independent and non-profit organization named Django Software Foundation (DSF).

Is Django Stable?

Yes, Django is quite stable. Many companies like Disqus, Instagram, Pinterest, and Mozilla have been using Django for many years.

What Are The Features Available In Django Web Framework?

Features available in Django web framework are:

Admin Interface (CRUD)
Templating
Form handling
Internationalization
Session, user management, role-based permissions
Object-relational mapping (ORM)
Testing Framework
Fantastic Documentation

What Are The Advantages Of Using Django For Web Development?
  • It facilitates you to divide code modules into logical groups to make it flexible to change.
  • It provides auto-generated web admin to make website administration easy.
  • It provides pre-packaged API for common user tasks.
  • It provides template system to define HTML template for your web page to avoid code duplication.
  • It enables you to define what URL is for a given function.
  • It enables you to separate business logic from the HTML.
What Makes Up Django Architecture?

Django runs on MVC architecture. Following are the components that make up django architecture:

Models: Models elaborate back-end stuffs like database schema.(relationships)

Views: Views control what is to be shown to end-user.

Templates: Templates deal with formatting of view.

Controller: Takes entire control of Models.A MVC framework can be compared to a Cable TV with remote. A Television set is View(that interacts with end user), cable provider is model(that works in back-end) and Controller is remote that controls which channel to select and display it through view.

What Does Session Framework Do In Django Framework?

Session framework in django will store data on server side and interact with end-users. Session is generally used with a middle-ware. It also helps in receiving and sending cookies for authentication of a user.

Mention Caching Strategies That You Know In Django?

Few caching strategies that are available in Django are as follows:

File sytem caching
In-memory caching
Using Memcached
Database caching

Why Django Should Be Used For Web-development?

It allows you to divide code modules into logical groups to make it flexible to change
To ease the website administration, it provides auto-generated web admin
It provides pre-packaged API for common user tasks
It gives you template system to define HTML template for your web page to avoid code duplication
It enables you to define what URL be for a given function
It enables you to separate business logic from the HTML
Everything is in python

What Do You Think Are Limitation Of Django Object Relation Mapping(orm)?

If the data is complex and consists of multiple joins using the SQL  will be clearer.
If Performance is a concern for your, ORM aren’t your choice. Genrally. Object-relation-mapping are considered good option to construct an optimized query, SQL has an upper hand when compared to ORM.

Mention What Does The Django Field Class Types?

Field class types determines:

The database column type
The default HTML widget to avail while rendering a form field
The minimal validation requirements used in Django admin and in automatically generated forms

List Out The Inheritance Styles In Django?

In Django, there is three possible inheritance styles

Abstract base classes: This style is used when you only wants parent’s class to hold information that you don’t want to type out for each child model
Multi-table Inheritance: This style is used If you are sub-classing an existing model and need each model to have its own database table
Proxy models: You can use this model, If you only want to modify the Python level behavior of the model, without changing the model’s fields

Mention What Command Line Can Be Used To Load Data Into Django?

To load data into Django you have to use the command line Django-admin.py loaddata. The command line will searches the data and loads the contents of the named fixtures into the database.


Subscribe to get more Posts :