0
0
Postmantesting~10 mins

Description formatting (Markdown) in Postman - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to add a bold title in Postman description using Markdown.

Postman
# [1] Title
Drag options to blanks, or click blank then click option'
ABold
B**Bold**
C*Bold*
D__Bold__
Attempts:
3 left
💡 Hint
Common Mistakes
Using **Bold** adds bold styling to 'Bold' within the heading instead of plain text.
Using *Bold* adds italics or __Bold__ adds bold within the heading instead of plain text.
2fill in blank
medium

Complete the code to add italic text in Postman description using Markdown.

Postman
This is [1] text.
Drag options to blanks, or click blank then click option'
A~~italic~~
B**italic**
C`italic`
D*italic*
Attempts:
3 left
💡 Hint
Common Mistakes
Using double asterisks instead of single for italics.
Using backticks which format text as code.
3fill in blank
hard

Fix the error in the Markdown code to create a link in Postman description.

Postman
[Postman]([1])
Drag options to blanks, or click blank then click option'
Ahttps://www.postman.com
Bwww.postman.com
Cpostman.com
Dhttp//postman.com
Attempts:
3 left
💡 Hint
Common Mistakes
Omitting 'https://' causes broken links.
Using incorrect protocol like 'http//' instead of 'http://'.
4fill in blank
hard

Fill both blanks to create a numbered list with two items in Postman description using Markdown.

Postman
1. [1]
2. [2]
Drag options to blanks, or click blank then click option'
AFirst item
BSecond item
CThird item
DItem
Attempts:
3 left
💡 Hint
Common Mistakes
Using the same text for both items.
Using unordered list markers like '-' instead of numbers.
5fill in blank
hard

Fill both blanks to create a code block with language specified in Postman description using Markdown.

Postman
```[1]
[2]
```
Drag options to blanks, or click blank then click option'
Apython
Bprint('Hello, Postman!')
Djavascript
Attempts:
3 left
💡 Hint
Common Mistakes
Omitting the language name after opening backticks.
Adding extra text after closing backticks.
Not closing the code block properly.