AI-901 - Identify AI concepts and capabilities - Section 1.2

Identify AI model components and configurations, including how generative models work, selecting a model by capability, and deployment and configuration parameters.

How generative AI models work at a conceptual level (tokens, next-token prediction, training versus inference); choosing a model by its stated capabilities, such as a language model versus a multimodal model versus an embedding or image-generation model; and the deployment and configuration parameters that shape a deployed model's behaviour, including temperature and maximum tokens. Model selection by capability and parameter configuration are genuine single-best-answer topics.

generative AI modelstokensmodel selection by capabilitymultimodal modelembedding modelmodel deployment optionstemperatureconfiguration parameters

Practice question for this objective

Free sampleIdentify AI concepts and capabilitiesmedium

During a briefing on how generative models produce output, an engineer wants to explain what happens at inference time when a deployed language model answers a prompt. Which statement best describes how the model generates its reply?

  • AIt retrains its own internal weights on the user's prompt before it returns any generated text.
  • BIt searches a fixed database of stored answers and returns the closest matching record it finds.
  • CIt predicts the next token repeatedly, each time using the prompt and the tokens it has already produced. Correct
  • DIt converts the prompt into one numeric vector and then returns that vector as its final reply.
At inference a generative language model produces its reply by predicting one token at a time, conditioned on the prompt and the tokens already generated. Inference is autoregressive: the model repeatedly predicts the next token from the prompt and its own prior output, so it neither retrains, nor looks up stored answers, nor simply emits a vector.

Why A is wrong: This is tempting because prompts do influence the output, but inference does not change the model's weights; training and inference are separate, so no retraining happens per prompt.

Why B is wrong: This sounds like retrieval, which makes it plausible, but a generative model composes new text by predicting tokens rather than looking up a stored answer, so the description is wrong.

Why C is correct: Correct: at inference the model generates one token at a time, feeding the prompt plus its own earlier tokens back in to predict each following token until the reply is complete.

Why D is wrong: Producing a vector is what an embedding model does; it is tempting because vectors are involved internally, but a language model returns generated text, not a raw vector.

See more AI-901 practice questions, answers explained.

More in this domain

Back to all Identify AI concepts and capabilities objectives, or the AI-901 cert hub.

Examworthy is not affiliated with or endorsed by Microsoft. Original, blueprint-aligned practice material only.