Conditionals
Django
Python
Web Design
Programming
100

If x in the_list: 

returns what possible values?

True or False

100

True or False

Django is a programming language

False

It is a web framework that uses Python and web languages.

100

True or False

This is a valid variable name: 1st_pizza

What is false

100

The Markup language for describing web documents (web pages).

What is HTML?

100

All AppInventor projects start with this screen.

What is "Screen1"

200

How many times will this run?

for x in range(1, 10)

9 Times

1,2,3,4,5,6,7,8,9

200

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.

200

This is when python assigns a type to a variable.

When it is created

ex.

x = 5 (initializes x as an int type)

200

Tag used for hyperlinks

What is the anchor tag

200

In computer programming, the thing that causes a change to occur in a program is this.

What is an event?

300

The most important part of a while loop!

Some way to exit the loop!

300

Every function in the views must return a type of this.

HttpResponse

300

This makes tuples unique compared to arrays, lists, and dictionaries.

It is immutable, cant change in size.

300

CSS stands for this.

What is Cascading Style Sheets?

300

This item is used to store data for use on different screens.

What is a database?

400

10 % 5 == 2 will result in what?

False

400

We keep the HTML for websites in a folder called...

What is templates?

400

The output of print list[1:3] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?

What is [786, 2.23]

400

This tag allows you to create lists (two possible)

What is <ol> or <ul>

400

In a list, all items have this in ascending order.

What is an index?

500

All conditionals (if, for, while) end with this in python!

What is the :?

500

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

500

When converting a type (like string to int) what goes inside the parentheses? 

the variable/value

500

The head of the web page.

Where we put the link for CSS sheets.

500

What is a string

This data type is surrounded by single or double quotes.