SQL
Structured Query Language
Which SQL keyword is used to update data in the database?
UPDATE
Which built-in Django app provides static file processing functionality?
staticfiles
TCP
Transmission Control Protocol
Which command allows to create a Django project folder with the name “myproject”?
django-admin.py startproject myproject
Which SQL keyword is used to sort the result set?
ORDER BY
What is the main purpose of a <form> element?
Accept data from users
Which TCP port is used by Django server by default?
8000
MVT
Model View Template
How do you packaging up your model changes into individual migration files?
Python manage.py makemigrations
How do you select a colom named "FirstName" from the table named "Persons"?
SELECT FirstName FROM Persons
Which AdminSite object attribute sets the heading on the admin index page?
index_title
In how many cases does Django need to locate a static file on disk?
3
CRUD
Create, Read, Update, Delete
What are the 2 types of databases?
Relational, Non-relational
How many tattoos do I have?
3
DBMS
Database Management System
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.
Name 3 SQL datatypes.
REAL, TEXT, INTEGER
What are the two types of validation errors that may occur with <form> element?
field error, non-field error
Who is my favorite singer?
Taylor Swift