Google News
logo
Django - Quiz(MCQ)
Which commands use to create a project in Django?
A)
$ django startproject project_name
B)
$ django-admin startproject project_name
C)
$ django createproject project_name
D)
$ django-admin createproject project_name

Correct Answer :   $ django-admin startproject project_name


Explanation : Whether you are on Windows or Linux, just get a terminal or a cmd prompt and navigate to the place you want your project to be created, then use this code : $ django-admin startproject project_name. 

Advertisement