Test Web Programming mady
Django templates are often .html pages. a. Yes b. No, never
a. Yes
What is a correct syntax for creating a Django project? a. django-admin startproject my_tennis_club b. py manage.py start-django my_tennis_club c. django start my_tennis_club
a. django-admin startproject my_tennis_club
What is a correct syntax to start a Django development server on your computer? a. py manage.py runserver b. py manage.py run c. py manage.py startserver
a. py manage.py runserver
When you create a Django project on your computer, you will get a folder for your project with a specific content. Which one of the following files is NOT part of the content? a. templates.py b. manage.py c. settings.py
a. templates.py
In Django, incoming requests are redirected to specific functions, what are these functions called? a. views b. controls c. models
a. views
Which language is Django written in? a. C b. Python c. Java
b. Python
In Django, incoming request is handled in which file? a. manage.py b. settings.py c. urls.py
c. urls.py
