0
0
Agentic AIml~20 mins

Single agent vs multi-agent systems in Agentic AI - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Multi-Agent Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Key difference between single-agent and multi-agent systems
Which statement best describes the main difference between single-agent and multi-agent systems?
ASingle-agent systems involve one decision maker, while multi-agent systems involve multiple interacting decision makers.
BSingle-agent systems always use supervised learning, while multi-agent systems use unsupervised learning.
CSingle-agent systems cannot learn, but multi-agent systems can learn from data.
DSingle-agent systems require no environment, but multi-agent systems require a complex environment.
Attempts:
2 left
💡 Hint
Think about how many decision makers or 'agents' are involved in each system.
Model Choice
intermediate
2:00remaining
Choosing the right system for a task
You want to build a system where multiple robots collaborate to clean a large building efficiently. Which system type is most suitable?
AMulti-agent system where robots work independently without any coordination.
BSingle-agent system with one robot controlling all cleaning tasks.
CSingle-agent system with a central controller but no communication between robots.
DMulti-agent system where each robot acts as an independent agent coordinating with others.
Attempts:
2 left
💡 Hint
Consider the benefits of collaboration and communication among multiple robots.
Metrics
advanced
2:00remaining
Evaluating multi-agent system performance
Which metric is most appropriate to evaluate cooperation effectiveness in a multi-agent system?
AIndividual agent accuracy on isolated tasks.
BTotal cumulative reward achieved by all agents working together.
CTraining time of a single agent.
DNumber of agents in the system.
Attempts:
2 left
💡 Hint
Think about measuring how well agents perform as a team.
🔧 Debug
advanced
2:00remaining
Identifying a problem in multi-agent communication
In a multi-agent system, agents are supposed to share their states to coordinate. However, agents act as if they have no information about others. What is the most likely cause?
AAgents have no communication protocol implemented.
BAgents are using supervised learning instead of reinforcement learning.
CThe environment is too simple for communication to matter.
DAgents are overfitting their local data.
Attempts:
2 left
💡 Hint
If agents don't know about others, what feature might be missing?
Predict Output
expert
2:00remaining
Output of multi-agent reward calculation code
What is the output of the following Python code simulating rewards for two agents cooperating?
Agentic AI
agents = ['A1', 'A2']
rewards = {'A1': [1, 2, 3], 'A2': [2, 2, 2]}
cumulative_rewards = {agent: sum(rewards[agent]) for agent in agents}
total_reward = sum(cumulative_rewards.values())
print(total_reward)
A9
B10
C12
D6
Attempts:
2 left
💡 Hint
Add the rewards for each agent, then sum both totals.