
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A logistics company is developing a delivery-route optimization AI that improves decisions by learning from previous deliveries — rewarding faster routes and penalizing delays. Which learning approach best fits this problem?
A
Unsupervised learning
B
Self-supervised learning
C
Reinforcement learning
D
Transfer learning
Explanation:
This scenario describes a classic reinforcement learning problem because:
Reward/Penalty System: The AI receives rewards for faster routes and penalties for delays, which is the core mechanism of reinforcement learning where an agent learns through trial-and-error interactions with an environment.
Learning from Feedback: The system improves decisions based on feedback (rewards/penalties) from previous deliveries, which aligns with the reinforcement learning paradigm of learning optimal policies through environmental feedback.
Sequential Decision Making: Route optimization involves making a sequence of decisions (which turns to take, which roads to use) to reach an optimal outcome, which is characteristic of reinforcement learning problems.
Why other options are incorrect:
Reinforcement learning is particularly well-suited for optimization problems where an agent must learn to make sequential decisions to maximize cumulative rewards over time, exactly as described in this delivery-route optimization scenario.