Quiz on Jupyter and Markdown
Check how much you remember from previous sections by answering the questions below.
What would be the effect of the following Markdown syntax ***Markdown***
?
✗Markdown
✗Markdown
✓Markdown
✗Markdown
Can you use the _
and *
symbols interchangeably?
✗Yes. Both of them have the same same effect.
✓Yes, as long as you use the same to mark start and end of the sequence..
✗No. They mean the same but only one can be used in a document.
✗No. Only one is valid Markdown.
✗No. They have a different meaning.
What symbol is used in Markdown to create a level 2 heading?
✗#
✓##
✗2.
✗====
How do you create an unordered list in Markdown?
✓By using *
,+
, or -
✗By using 1.
, 2.
, 3.
✗By using #
✗By using >
Which of the following will correctly italicize text in Markdown?
✓_italic_
✓*italic*
✗**italic**
✗~~italic~~
How do you create a link in Markdown?
✓[Link](URL)
✗<a href="URL">Link</a>
✗(Link)[URL]
✗[URL](Link)
Which Markdown syntax is used to create a blockquote?
✓>
✗#
✗*
✗---
How would you format text in Markdown to be bold?
✗*bold*
✓**bold**
✗~~bold~~
✗_bold_
Which of the following is the correct way to create a horizontal rule in Markdown?
✓---
✓***
✓___
✗~~~
What is the correct syntax for adding an image in Markdown?
✓![Alt Text](URL)
✗[Image](URL)
✗<img src="URL" alt="Alt Text">
✗{Image|URL}
How do you escape special characters (like * or _) in Markdown to display them as plain text?
✓Add a backslash \
before them
✗Add a #
before them
✗Wrap them in <>
✗Put them in double square brackets [[ ]]
How do you start a Jupyter Lab interface from the SDS environment?
✓pixi run jupyter lab
✗jupyter start
✗pixi run jupyter-lab
✗pixi run lab --run
How to execute a cell without using a mouse?
✗Enter
✗Space
✓Shift+Enter
✗Alt+Enter