Courseiva
Implement an agentic solutioneasyMultiple ChoiceObjective-mapped

AI-102 Implement an agentic solution Practice Question

Exhibit

Refer to the exhibit.
$agents = Get-AzAIAgent -ResourceGroupName 'rg-agent' -SubscriptionId 'sub-123'
foreach ($agent in $agents) {
    if ($agent.Properties.Tools.Count -eq 0) {
        Write-Output "Agent $($agent.Name) has no tools configured."
    }
}

You run the PowerShell script shown to audit your Azure AI Agent Service agents. The script outputs that several agents have no tools configured. What is the impact on those agents?

⚠ Common exam trap

Many candidates assume agents must have tools to be functional or deployed, but Azure AI Agent Service allows tool-less agents that operate as pure language models, and the exam tests understanding that tools are optional for basic Q&A but required for action-oriented tasks.

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

The agents can only respond to queries using the model's built-in knowledge, without ability to perform actions

Azure AI Agent Service agents without tools configured rely solely on the model's built-in knowledge (e.g., GPT-4o's training data) to generate responses. They cannot execute external actions like calling APIs, querying databases, or running code, which are enabled only when tools (e.g., code interpreter, function calling, or Azure Functions) are explicitly attached. This is by design: tools extend the agent's capabilities beyond the model's static knowledge.

Answer analysis

Option-by-option breakdown

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

  • The agents cannot be deployed until tools are added

    Why it's wrong here

    Deployment works without tools.

  • The agents can only respond to queries using the model's built-in knowledge, without ability to perform actions

    Why this is correct

    No tools means no external actions.

  • The agents cannot start conversations with users

    Why it's wrong here

    Conversation starters still work.

  • The agents will use default tools provided by Azure

    Why it's wrong here

    No default tools are added.

Quick reference

Cloud Service Model Comparison

ModelYou ManageProvider ManagesExamples
IaaSOS, runtime, apps, dataHardware, hypervisor, networkingEC2, Azure VMs, GCP Compute Engine
PaaSApps and dataOS, runtime, middleware, hardwareElastic Beanstalk, Azure App Service
SaaSData and settings onlyEverything elseMicrosoft 365, Salesforce, Workday
FaaS / ServerlessFunction code onlyInfra, scaling, runtimeLambda, Azure Functions, Cloud Run
CaaSContainers and appsKubernetes, OS, hardwareEKS, AKS, GKE

About these practice questions

Courseiva writes every AI-102 question from scratch — 945 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. 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-102 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-102 exam.