If x in the_list:
returns what possible values?
True or False
True or False
Django is a programming language
False
It is a web framework that uses Python and web languages.
True or False
This is a valid variable name: 1st_pizza
What is false
The Markup language for describing web documents (web pages).
What is HTML?
All AppInventor projects start with this screen.
What is "Screen1"
How many times will this run?
for x in range(1, 10)
9 Times
1,2,3,4,5,6,7,8,9
How does Django handle a URL request?
It checks the URLpatterns list and executes a function in the views file, based on the URL pattern.
This is when python assigns a type to a variable.
When it is created
ex.
x = 5 (initializes x as an int type)
Tag used for hyperlinks
What is the anchor tag
In computer programming, the thing that causes a change to occur in a program is this.
What is an event?
The most important part of a while loop!
Some way to exit the loop!
Every function in the views must return a type of this.
HttpResponse
This makes tuples unique compared to arrays, lists, and dictionaries.
It is immutable, cant change in size.
CSS stands for this.
What is Cascading Style Sheets?
This item is used to store data for use on different screens.
What is a database?
10 % 5 == 2 will result in what?
False
We keep the HTML for websites in a folder called...
What is templates?
The output of print list[1:3] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
What is [786, 2.23]
This tag allows you to create lists (two possible)
What is <ol> or <ul>
In a list, all items have this in ascending order.
What is an index?
All conditionals (if, for, while) end with this in python!
What is the :?
If you declare a model, called Post, then try to use the model in the views and you get an "undefined" error, what must you do?
import it from the models file
When converting a type (like string to int) what goes inside the parentheses?
the variable/value
The head of the web page.
Where we put the link for CSS sheets.
What is a string
This data type is surrounded by single or double quotes.