ExamQuestions.com

Register
Login
Microsoft Azure Exam Certification (AI-102) Exam Questions

Microsoft

Microsoft Azure Exam Certification (AI-102)

165 / 166

Question 165:

You are tasked to search for hotels in your application based on their rating. Your organization is already using Azure Cognitive Search for their full text search operations. The user executes a simple text query to find top twenty hotels that offer spa and have a rating greater than four sorted in order of rating with the higher rating on the top. Review the query below and complete it by choosing thecorrect parameter and values from the answer choices: 
<pre class="brush:java;">POST https://[service name].search.windows.net/indexes/&lt;index name&gt;/docs/search?api-version=2020-06-30
{
".....................................": "simple",
".....................................": "all",
"search": "hotel +spa",
"searchFields": "HotelName, StreetAddress, City, State, Tags",
"select": "searchFields": "HotelName, StreetAddress, City, State, Tags",
"top": "20",
"count": "true",
"orderby": "....................................."
}
</pre> 

Answer options:

A.filter
B.rating desc
C.facet
D.searchMode
E.queryType
F.scoringParameter