Acronyms
Commands
SQL
Django
Wild
100

SQL

Structured Query Language

100

How do you enact changes to your Django project?

python manage.py migrate

100

Which SQL keyword is used to update data in the database?

UPDATE

100

What is the name of the file that stores URL configuration for a Django App?

100

Which built-in Django app provides static file processing functionality?

staticfiles

200

TCP

Transmission Control Protocol

200

Which command allows to create a Django project folder with the name “myproject”?

django-admin.py startproject myproject

200

Which SQL keyword is used to sort the result set?

ORDER BY

200

What is the main purpose of a <form> element?

Accept data from users

200

Which TCP port is used by Django server by default?

8000

300

MVT

Model View Template

300

How do you packaging up your model changes into individual migration files?

Python manage.py makemigrations

300

How do you select a colom named "FirstName" from the table named "Persons"?

SELECT FirstName FROM Persons

300

Which AdminSite object attribute sets the heading on the admin index page?

index_title

300

In how many cases does Django need to locate a static file on disk?

3

400

CRUD

Create, Read, Update, Delete

400

Which python shell command initiates superuser creation?

python manage.py createsuperuser

400

What are the 2 types of databases?

Relational, Non-relational

400

Which file stores Django Templates configurations?

400

How many tattoos do I have?

3

500

DBMS

Database Management System

500

Name at least 1 rule you must follow when creating a superuser password (if you don't overwrite the rules)

It cannot be only numerical characters.

It cannot be among the 20,000 most common passwords.

It cannot be derived from the username, first name, last name, or email address of the user.


500

Name 3 SQL datatypes.

REAL, TEXT, INTEGER

500

What are the two types of validation errors that may occur with <form> element?

field error, non-field error

500

Who is my favorite singer?

Taylor Swift