Flask Quiz

Flask Quiz

9th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

Интерфейс мобильных приложений

Интерфейс мобильных приложений

10th - 11th Grade

10 Qs

KS3 - Internet and www

KS3 - Internet and www

7th - 9th Grade

9 Qs

Unit 1 - Setup Android Studio (Original) [EN]

Unit 1 - Setup Android Studio (Original) [EN]

12th Grade

10 Qs

Internet Technologies

Internet Technologies

12th Grade

10 Qs

HTML & CSS Skill#6

HTML & CSS Skill#6

12th Grade

10 Qs

web design

web design

11th Grade - University

10 Qs

Understanding App Development Basics

Understanding App Development Basics

7th Grade - University

10 Qs

Flask_quiz

Flask_quiz

10th Grade - Professional Development

7 Qs

Flask Quiz

Flask Quiz

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Joseph Maxwell

Used 12+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the proper decorator for a route in Flask?

@approute("/")

approute@("/")

@pp.route('/')

@app.route("/")

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How is it possible to pass values from Python to HTML templates?

render_template("file.html", item=value)

rendertemplate(item=value, "file.html")

render_template("file.html", item:value)

render_template("file.html", item, value)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How is it possible to use a passed variable in an HTML template?

{ var_name }

{{ var_name }}

{[ var_name ]}

{% var_name %}

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following will properly route a function for url.repl.co/go

@app.route(go/)

@app.route("go")

@app.route("/go")

@app.route("go/"

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is a proper link to a function with route @app.route("/this-page")?

<a href="this-page">This</a>

<a href="/this_page">This</a>

<a href="/this-page">This</a>

<a>/this-page</a>

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Template HTML files must be placed in which folder?

static

html

main

templates

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

CSS files must be placed in which file?

static

templates

main

style

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following properly imports the basic necessary Flask libraries?

from Flask import flask, render_template

from flask import Flask, render_template

import Flask from flask, render_template

import Flask