Quiz: The Dash Ecosystem

Test your knowledge of the Dash ecosystem.

We'll cover the following...
1.

What is a valid way to add an app’s layout so that it displays an h1 HTML heading with the text “Hello, World” inside a div element?

A.

app.layout = html.H1('Hello, World!')

B.

app.layout = html.h1('Hello, World!')

C.

app.layout = html.div([html.h1('Hello, World!')])

D.

app.layout = html.Div([html.H1('Hello, World!')])


1 / 3