Python Basics
Web Dev Skills
Flask
SQL
100

Strings are ________, which means they cannot be changed once created.

What is "immutable"?

100

<!-- This is a ______ in HTML -->

What is a comment?

100

if name == '_____':

app.run()

What is 'main'?

100

The abbreviated version of DB

What is a database?

200

What type of error is this?

print("Hello, world!)

What is a SyntaxError?

200

Elements that define the structure and content of a web page that are enclosed within angle brackets.

What are HTML tags?


200

A popular template engine for Python. It allows you to create dynamic HTML templates.

What is Jinja2?

200

To print all the information in a database table, you can use a SELECT statement in addition to the _______ statement.

What is FROM?
300

This refers to characters that are not visible, such as spaces, tabs, and newlines. (used to format code and make it more readable, but they do not affect the program's logic)

What is whitespace?

300

Shorter version of CSS

What is Cascading Style Sheets?

300

A TextField is used for single-line text input, while a __________ is used for multi-line text input.

What is TextAreaField?

300

A blueprint or structure that defines the organization and relationships between data elements in a database

What is a schema?

400

num = 10 % 3

num += 4

print(num)

What is 5?

400

This attribute in an HTML <img> tag provides an alternative text description for the image.

What is the "alt" tag?

400

In Flask, (something)_template() is a function used to (something) HTML templates

What is render?

400

An element in a database represents a real-world object or concept that you want to store and manage data about.

What is an entity?

500

condition ? expression_if_true : expression_if_false # This is also known as ___________ operators.

What is ternary?

500

An element in HTML is a block-level element that is used to group other elements together.

What is a div

500

A decorator in Flask is used to define URL rules for your web application.

What is @app.route()?

500

A programming technique that allows you to interact with databases using object-oriented programming concepts

What is ORM? (Object-Relational Mapper)

M
e
n
u