AI-102 Question 348
Select 3You are tasked with implementing an Azure Cognitive Search solution for a retail website. The website needs a search feature that allows customers to find products quickly using keywords, filters, and suggestions as they type. The data source is a structured SQL database containing product details. Which steps should you take to implement this solution?
- A
Create an Azure Cognitive Search service and configure an index.
- B
Use the Import data wizard to connect to the SQL database and populate the index.
- C
Enable the built-in AI enrichments to preprocess the data for sentiment analysis.
- D
Add a suggestion model to the Azure Cognitive Search index to support type-ahead suggestions.
- E
Configure a custom skillset to extract metadata from the product images.
Show answer and explanation
Correct answers: A, B, D
Explanation
To implement an Azure Cognitive Search solution for a retail website, you need to create the search service, connect to the SQL database as a data source to populate the index, and enable features like suggestions to enhance the search user experience. AI enrichments or custom skillsets for image metadata extraction are not required for this scenario, as the data source is already structured and text-based.
- A. Correct.
Correct: Creating an Azure Cognitive Search service and configuring an index is the foundational step for implementing a search solution.
- B. Correct.
Correct: The Import data wizard simplifies connecting to the SQL database and populating the index with data.
- C. Incorrect.
Incorrect: Sentiment analysis is not relevant for this scenario as the requirement is to support search functionality, not analyze customer sentiment.
- D. Correct.
Correct: Adding a suggestion model enables type-ahead suggestions, which is a requirement for the retail website's search feature.
- E. Incorrect.
Incorrect: Extracting metadata from product images using a custom skillset is unnecessary for this scenario since the data source is a structured SQL database containing product details.