Courseiva

AI-900 Practice Question: Describe features of Natural Language Processing workloads on Azure

What is the purpose of 'entities' in conversational language understanding (CLU) models?

⚠ Common exam trap

Many exam-takers confuse entities with intents, mistakenly thinking entities classify the overall goal of the utterance, whereas intents handle the goal and entities handle the specific data needed to execute that goal.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

To extract specific parameter values from user utterances needed to fulfill an intent

Entities in CLU models are designed to extract specific pieces of information (parameter values) from user utterances, such as dates, locations, or product names, which are necessary to fulfill the user's intent. For example, in the utterance 'Book a flight to Seattle on June 5th,' the intent is 'BookFlight,' and entities extract 'Seattle' (destination) and 'June 5th' (date). This directly supports the intent by providing the required parameters for downstream actions.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • To determine the overall topic or domain of the conversation

    Why it's wrong here

    Classifying the overall topic or domain involves a separate semantic or orchestration step, such as routing messages to different skills or knowledge domains. Entities operate at the parameter level, not the conversation level: they pull specific slot values (for example, a departure city or temperature) out of a user's utterance. The same domain can have numerous intents and entities, so entity extraction is not used to infer the broad conversational topic.

  • To extract specific parameter values from user utterances needed to fulfill an intent

    Why this is correct

    Entities are the parameter-extraction part of an intent model: given an utterance like 'Set a reminder for 3 PM tomorrow,' the intent 'SetReminder' tells the system what action the user wants, while entities extract '3 PM' and 'tomorrow' as the date/time values required to execute it. Without this extraction, a chatbot could know the user wants to book a flight but not the destination or travel date. In Language Understanding (LUIS/CLU), entities are designed to populate the slots an application's API call or workflow expects.

  • To classify how confident the model is in its intent prediction

    Why it's wrong here

    Confidence scores are produced by the intent classifier as a probability value for each candidate intent, driving threshold decisions about whether to accept, ask for clarification, or escalate. Entities are the raw spans of text extracted from the utterance, such as '3' as quantity or 'Paris' as location, and they carry no confidence information themselves in the same way. The model confidence relates to intent prediction, not to the role of entity extraction.

  • To define the fallback response when no intent is recognized

    Why it's wrong here

    Fallback responses are determined by dialogue logic or the 'None' intent in the language model, not by entities. Entities are not decision-making components; they extract concrete data values such as dates, cities, or order quantities from an utterance that are used to fulfill an already-recognized intent. If no intent is recognized, the system's fallback handling takes over, and entity extraction may not even occur.

About these practice questions

One of 985 original AI-900 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This AI-900 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AI-900 exam.