nerdexam
Microsoft

AI-102 · Question #271

You are building a flight booking bot by using the Microsoft Bot Framework SDK. The bot will ask users for the departure date. The bot must repeat the QUESTION 2until a valid date is given, or the…

The correct answer is A. prompt. https://learn.microsoft.com/en-us/azure/bot-service/bot-builder-concept-dialog?view=azure-bot-se rvice-4.0#dialog-types The dialogs library provides a few types of dialogs to make your bot's conversations easier to - prompt dialogs Ask the user for input and return the result…

Submitted by jakub_pl· Mar 30, 2026Implement agentic solutions

Question

You are building a flight booking bot by using the Microsoft Bot Framework SDK. The bot will ask users for the departure date. The bot must repeat the QUESTION 2until a valid date is given, or the users cancel the transaction. Which type of dialog should you use?

Options

  • Aprompt
  • Badaptive
  • Cwaterfall
  • Daction

How the community answered

(26 responses)
  • A
    81% (21)
  • B
    12% (3)
  • C
    4% (1)
  • D
    4% (1)

Explanation

https://learn.microsoft.com/en-us/azure/bot-service/bot-builder-concept-dialog?view=azure-bot-se rvice-4.0#dialog-types The dialogs library provides a few types of dialogs to make your bot's conversations easier to - prompt dialogs Ask the user for input and return the result. A prompt will repeat until it gets valid input or it's canceled. They're designed to work with waterfall dialogs.

Topics

#Bot Framework SDK#dialog types#prompt dialog#waterfall dialog

Community Discussion

No community discussion yet for this question.

Full AI-102 Practice