Strings are ________, which means they cannot be changed once created.
What is "immutable"?
<!-- This is a ______ in HTML -->
What is a comment?
if name == '_____':
app.run()
What is 'main'?
The abbreviated version of DB
What is a database?
What type of error is this?
print("Hello, world!)
What is a SyntaxError?
Elements that define the structure and content of a web page that are enclosed within angle brackets.
What are HTML tags?
A popular template engine for Python. It allows you to create dynamic HTML templates.
What is Jinja2?
To print all the information in a database table, you can use a SELECT statement in addition to the _______ statement.
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?
Shorter version of CSS
What is Cascading Style Sheets?
A TextField is used for single-line text input, while a __________ is used for multi-line text input.
What is TextAreaField?
A blueprint or structure that defines the organization and relationships between data elements in a database
What is a schema?
num = 10 % 3
num += 4
print(num)
What is 5?
This attribute in an HTML <img> tag provides an alternative text description for the image.
What is the "alt" tag?
In Flask, (something)_template() is a function used to (something) HTML templates
What is render?
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?
condition ? expression_if_true : expression_if_false # This is also known as ___________ operators.
What is ternary?
An element in HTML is a block-level element that is used to group other elements together.
What is a div
A decorator in Flask is used to define URL rules for your web application.
What is @app.route()?
A programming technique that allows you to interact with databases using object-oriented programming concepts
What is ORM? (Object-Relational Mapper)