Dashboard

Review Session

10 exercises to review - earn hearts and XP!
0 / 10
Review 1/10 Multiple Choice delimiters
Expression Delimiter

Which delimiter outputs a value in Jinja?

Review 2/10 Multiple Choice delimiters
Statement Delimiter

Which delimiter is used for logic statements (if, for, etc.)?

Review 3/10 Fill Blank delimiters
Comment Syntax

Complete the Jinja comment delimiter.

Review 4/10 Match Output delimiters
Predict the Output

What will this template output?

Hello {{ name }}!
Review 5/10 Multiple Choice comments
Comment Behavior

What happens to Jinja comments in the output?

Review 6/10 Write Code variables
Display a Variable

Write a template that displays the variable "name".

Expected output:
Alice
Review 7/10 Write Code variables
Dot Notation

Display the user's email using dot notation.

Expected output:
alice@example.com
Review 8/10 Match Output variables
Math Expression

What does this template output?

{{ price * qty }}
Review 9/10 Write Code variables
String Concatenation

Combine first_name and last_name with a space between them using the ~ operator.

Expected output:
John Doe
Review 10/10 Fix Bug variables
Fix the Variable Access

Fix the bug in this template to display the user's name.

Expected output:
Bob