Short Answer
resource "short_answer_question" "capital_france" {
question = "What is the capital of France?"
answer ="Paris"
hints = [
"They host the olympics in 2024",
"The city is known for the Eiffel Tower"
]
}
resource "short_answer_question" "javascript_timer" {
question = "Which javascript function can you use to execute something at an interval?"
answer = "setInterval"
exact = true
tags = ["javascript", "coding"]
}
Last updated