Try 10 focused Python Institute PCEI questions on AI fundamentals, with explanations, then continue with IT Mastery.
Open the matching IT Mastery practice page for timed mocks, topic drills, progress tracking, explanations, and full practice.
Try Python Institute PCEI on Web View full Python Institute PCEI practice page
| Field | Detail |
|---|---|
| Exam route | Python Institute PCEI |
| Topic area | Block 1: Artificial Intelligence Fundamentals |
| Blueprint weight | 14% |
| Page purpose | Focused sample questions before returning to mixed practice |
Use this page to isolate Block 1: Artificial Intelligence Fundamentals for Python Institute PCEI. Work through the 10 questions first, then review the explanations and return to mixed practice in IT Mastery.
| Pass | What to do | What to record |
|---|---|---|
| First attempt | Answer without checking the explanation first. | The fact, rule, calculation, or judgment point that controlled your answer. |
| Review | Read the explanation even when you were correct. | Why the best answer is stronger than the closest distractor. |
| Repair | Repeat only missed or uncertain items after a short break. | The pattern behind misses, not the answer letter. |
| Transfer | Return to mixed practice once the topic feels stable. | Whether the same skill holds up when the topic is no longer obvious. |
Blueprint context: 14% of the practice outline. A focused topic score can overstate readiness if you recognize the pattern too quickly, so use it as repair work before timed mixed sets.
These questions are original IT Mastery practice items aligned to this topic area. They are designed for self-assessment and are not official exam questions.
Topic: Block 1: Artificial Intelligence Fundamentals
A company uses a narrow AI assistant trained only on its product-return policy. During a demo, a stakeholder asks whether it can also give reliable tax advice for customers.
Project note:
System purpose: answer product-return questions
Training/design scope: return windows, receipts, refunds
Test result: accurate on return-policy questions
Out-of-scope prompt: "Can I deduct this purchase on my taxes?"
Response: confident answer with no source
What is the best correction to the stakeholder’s assumption?
Options:
A. It can reason about taxes because it answered return questions accurately.
B. It is reliable if the response is fluent and detailed.
C. It may sound confident, but tax advice is outside its designed scope.
D. It becomes general AI once it responds to an out-of-scope prompt.
Best answer: C
Explanation: Narrow AI is designed or trained to perform a specific task, such as answering product-return questions. Strong performance inside that scope does not prove the system can reason reliably about unrelated topics like tax advice. A confident or fluent response can still be unsupported, especially when the prompt falls outside the data, rules, or purpose used to build the system.
The key takeaway is to match trust in an AI system to its intended task and verified evidence, not to the style of its output.
Topic: Block 1: Artificial Intelligence Fundamentals
A team tests an AI classifier for routing visitor feedback at a museum. Select ONE interpretation best supported by the project note.
Training data: 2,000 online phone-accessory reviews
Training labels: positive / negative purchase sentiment
Target use: route museum comments to exhibit, facility, or accessibility teams
Validation on held-out phone reviews: 92% accuracy
Pilot on 50 real museum comments: many comments routed incorrectly
Options:
A. The classifier failed because AI cannot process text.
B. The model should be trusted because validation accuracy is high.
C. The pilot proves the labels are no longer needed.
D. The training data is poorly aligned with the target problem.
Best answer: D
Explanation: Model performance depends on whether the training data represents the problem the model will actually solve. Here, the model learned from phone-accessory reviews labeled only as positive or negative purchase sentiment, but the target task is routing museum feedback into operational categories. The high validation accuracy only shows good performance on data similar to the training source. The poor pilot result suggests the data lacks alignment with the target labels and may lack diversity in vocabulary, topics, and visitor situations. A better next step would be collecting and labeling representative museum comments for the intended routing task.
Topic: Block 1: Artificial Intelligence Fundamentals
A small support team receives 300 free-text ticket notes each day. A manager wants an AI-assisted way to create a short morning brief of a few sentences that captures the main customer issues in the notes. The team does not need fixed category labels, sales suggestions, or future volume estimates. Which AI capability best matches this task?
Options:
A. Recommendation
B. Prediction
C. Classification
D. Summarization
Best answer: D
Explanation: The best match is the AI capability that fits the desired output. The manager needs a short text brief that captures the main issues from many ticket notes, so the task is summarization. Summarization reduces longer text into a concise version while keeping the important information. Classification would be useful if the team wanted each ticket assigned to a known label, such as billing or technical issue. Recommendation would suggest items or actions to a user, and prediction would estimate a future value or outcome. The key is to match the capability to the goal, not just to the fact that text data is involved.
Topic: Block 1: Artificial Intelligence Fundamentals
A small retailer receives 10,000 free-text customer comments each month from channels that cannot be changed this quarter. Managers need each comment assigned to one of five known topics for weekly trend reports. Wording varies, labeled examples from past months are available, and managers will review sample results before acting. Which action is best?
Options:
A. Write fixed if statements for exact keywords
B. Train and evaluate a supervised text classifier
C. Ask managers to manually tag every comment
D. Replace all comment channels with a topic dropdown
Best answer: B
Explanation: AI is most suitable when the task involves recognizing patterns in variable data and enough examples exist to learn from. Here, the inputs are free-text comments with varied wording, the output categories are known, and historical labeled examples can support supervised learning. The high monthly volume also makes full manual processing inefficient, while manager review helps control risk before business decisions are made. A deterministic rule program could work for exact, stable patterns, but it is likely to miss comments that use different words for the same topic.
Topic: Block 1: Artificial Intelligence Fundamentals
A small travel company is reviewing an AI feature for customer messages. Select ONE option that best matches the AI subfield shown by this behavior.
Exhibit: Model result
Input: "The hotel was clean, but check-in took 45 minutes and the staff ignored my request."
Output: Summary: Clean hotel, but poor check-in experience.
Sentiment: Negative
Options:
A. Reinforcement learning
B. Robotics
C. Natural language processing
D. Computer vision
Best answer: C
Explanation: Natural language processing (NLP) focuses on AI tasks involving human language, such as summarizing text, identifying sentiment, translating between languages, and powering chatbots. In the exhibit, the input is a written customer message, and the output includes a short summary plus a sentiment label. Both results require processing the meaning of text, not images, physical movement, or reward-based trial and error.
The key takeaway is that when the main input or output is human language, NLP is usually the relevant AI subfield.
Topic: Block 1: Artificial Intelligence Fundamentals
A small company is reviewing automation ideas. Select ONE item that is most suitable for an AI approach based on the project note.
Project note:
Options:
A. Remove the duplicate refund approval
B. Make the employee termination decision
C. Apply the fixed discount rule
D. Sort variable customer messages by category
Best answer: D
Explanation: AI is most useful when the task involves patterns, uncertainty, or variable inputs that are hard to capture with simple rules. Sorting free-text customer messages into categories is a classification problem, and the labeled past messages can be used as examples for a model. A fixed discount rule is better handled by deterministic programming because the condition is exact. A termination decision requires human judgment and oversight because it is consequential and context-sensitive. A duplicate approval step is a workflow issue, so process redesign is the better first response.
Topic: Block 1: Artificial Intelligence Fundamentals
A beginner robotics simulation logs the following step. Select ONE result that best describes what happens next.
perception = {
"front_clear": False,
"target_seen": True
}
if not perception["front_clear"]:
action = "turn_left"
elif perception["target_seen"]:
action = "move_forward"
else:
action = "scan"
What does this step show about the robot’s behavior?
Options:
A. It moves forward because the target is visible.
B. It scans because it has no useful perception.
C. It trains a new model before acting.
D. It turns left because its path is blocked.
Best answer: D
Explanation: Robotics combines perception, decision-making, and action in an environment. In this step, the robot first receives perception data: the front path is not clear, while the target is visible. The decision logic checks whether the front is clear before checking the target. Because front_clear is False, the first condition is met, so the selected action is turn_left. This action would change the robot’s physical or simulated movement to avoid the blocked path.
The key idea is that a robot does not only “see” data; it uses that data to decide and then act in the environment.
Topic: Block 1: Artificial Intelligence Fundamentals
A community library wants an AI pilot that is achievable with today’s narrow AI. It can use anonymized borrowing history and catalog metadata as input. The desired output is five suggested books for each patron, with the goal of helping patrons discover relevant titles. Which project is the best fit?
Options:
A. Replace librarians with an AI that manages all library services
B. Predict each patron’s exact future favorite book from age alone
C. Create a general AI librarian that understands any patron need
D. Build a recommendation system using borrowing and catalog patterns
Best answer: D
Explanation: Narrow AI is designed for a specific task within clear boundaries. In this scenario, the input is limited to anonymized borrowing history and catalog metadata, the output is a short list of book suggestions, and the goal is recommendation. That makes a recommendation system an appropriate narrow AI use case. It does not need human-like general intelligence; it only needs to find useful patterns in available data. Claims about understanding any patron need, predicting exact preferences from too little data, or managing all library services go beyond the stated scope and realistic capability boundaries.
Topic: Block 1: Artificial Intelligence Fundamentals
A team is reviewing this beginner AI project note:
Goal: Use photos from a conveyor-belt camera
Input: image frames of each product
Needed result: mark products with visible cracks or scratches
Output: pass/fail flag for human review
Which AI subfield best matches this problem?
Options:
A. Speech recognition
B. Reinforcement learning
C. Natural language processing
D. Computer vision
Best answer: D
Explanation: Computer vision is the AI subfield focused on interpreting visual data such as images or video. The project note describes camera images of products and a need to detect cracks or scratches, which is a visual inspection problem. Common computer vision tasks include image classification, object detection, segmentation, and defect inspection.
The key clue is the input type: photos from a camera. NLP is for text, speech recognition is for audio, and reinforcement learning is for learning actions from rewards.
Topic: Block 1: Artificial Intelligence Fundamentals
A stakeholder reviews a successful AI tool and says, “Since it is AI, we can also use it to reason about customer refund fraud.” Based on the exhibit, which correction is best? Select ONE.
Exhibit:
System: DamagedPackageVision
Training data: labeled package photos
Input: one package photo
Output: damage_present yes/no
Evaluation: 92% accuracy on held-out package photos
New request: decide whether refund claims are fraudulent from customer emails
Options:
A. Its 92% accuracy proves it can reason about related business problems.
B. It is general AI because it performs one task accurately.
C. It can analyze emails if the emails are converted into images.
D. It is narrow AI and should not be assumed reliable for email fraud decisions.
Best answer: D
Explanation: A narrow AI system is designed and evaluated for a specific task, input type, and output. Here, the system uses package photos to predict whether visible damage is present. Its 92% accuracy only supports performance on similar package-photo damage detection, not on customer-email fraud decisions. Fraud review would require different inputs, labels, goals, risks, and evaluation.
The key boundary is that successful narrow AI performance does not imply general reasoning ability outside the trained or designed task.
Use the Python Institute PCEI Practice Test page for the full IT Mastery practice bank, mixed-topic practice, timed mock exams, explanations, and web/mobile app access.
Try Python Institute PCEI on Web View Python Institute PCEI Practice Test
Read the Python Institute PCEI Cheat Sheet for compact concept review before returning to timed practice.