Azure Bot Application: Prompt Types for Presenting Product Offerings in AI-102 Exam

Selecting Prompt Types | AI-102 Exam | Microsoft

Question

In your Azure Bot application supporting e-commerce business, you ask users a few questions.

Based on the answers to the questions, you provide them with product options and promotions associated with the product.

In the first interaction with the user, bot greets the users and asks for his/her name.

Next bot presents the Hero Card to the user.

That way the user can select amongst the top three product offerings.

In the composer “Ask a question” menu, what type of prompt or user input would you use to present the product offerings?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

Correct Answer: C.

Option A is incorrect because for the number input type is used for numeric values such as user age.

Option B is incorrect because the text input type is used to get the name of the user.

Option C is correct because multi-choice input type is used to present users with a list of options to choose from.

Here are the steps to follow in composer:

Using “Ask the question” menu, select Multi-choice.

In the user input tab property field, enter user.style.

The array of choices use output as Hero Card to present the top product offerings.

Option D is incorrect because confirmation input type is used to get a binary decision.

Reference:

To learn more about types of user input using composer, use the link given below:

Based on the scenario provided, the most appropriate prompt or user input to present the product offerings in the composer "Ask a question" menu would be C. Multi-choice.

Multi-choice prompt is an appropriate option when you want the user to select an option from a predefined list of choices. In this case, the user is presented with three product offerings to choose from, and multi-choice prompt is the best option to present these choices to the user.

When using the multi-choice prompt, the bot can display the product options as buttons or as a drop-down list, which makes it easy for the user to make a selection. The bot can also add images or descriptions of each product option to help the user make an informed decision.

On the other hand, the other options, such as number or text prompts, are not suitable for this scenario because the user needs to select a product from a list of options, not enter a specific value. The confirmation prompt is also not appropriate in this scenario because it is used to confirm or deny a specific action or choice made by the user, rather than to present a set of options to choose from.

In summary, the multi-choice prompt is the best option to present the product offerings in the composer "Ask a question" menu, as it provides a user-friendly way for the user to select from a predefined list of options.