1Z0-1127-25 LangChain and AI Application Development Practice Question
A developer uses the ReAct agent in LangChain with a calculator tool and a search tool. The agent receives the question: 'What is the population of Paris multiplied by 3?' The agent first calls the search tool to find the population, then calls the calculator tool to multiply it by 3. Which component is responsible for deciding the sequence of tool calls?
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 AgentExecutor
The AgentExecutor orchestrates the agent's reasoning loop: it calls the LLM which decides the next action (tool call) based on the prompt (ReAct pattern). The LLM generates actions, the AgentExecutor executes them and feeds results back to the LLM until a final answer is produced. Tools are just functions, the Agent defines the prompt, and Memory stores history.
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 LLM
Why it's wrong here
The LLM generates the reasoning and decides which tool to call, but the AgentExecutor manages the loop and execution.
- ✗
The Memory
Why it's wrong here
Memory stores conversation history but does not control tool call sequencing.
- ✗
The Tool
Why it's wrong here
Tools are passive functions; they do not orchestrate sequences.
- ✓
The AgentExecutor
Why this is correct
The AgentExecutor repeatedly invokes the LLM, executes tool calls, and passes results back until the agent stops.
Go deeper
Related to this question
About these practice questions
One of 768 original 1Z0-1127-25 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 →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This 1Z0-1127-25 practice question is part of Courseiva's free Oracle 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 1Z0-1127-25 exam.