Study sets
English

IT Passport Examination (IP) | Technology: AI, Machine Learning, and Generative AI Questions 08

1 / 100.0s

Problem 1

A telecommunications company has historical customer records containing features such as subscription length and monthly fees, together with an outcome label of "churned" or "remained." Which learning approach should be central to predicting whether a new customer will churn?

View explanation

Each customer record pairs its features with the correct outcome label, "churned" or "remained." Learning that relationship to predict a new customer's outcome is supervised learning. Unsupervised learning instead seeks structures or groups without supplied answer labels.

Problem 2

A retailer wants to divide customers into several groups based on similarities in their purchase histories, without defining customer categories in advance, and then consider a promotion for each group. Which learning approach is most suitable?

View explanation

No correct customer category is supplied beforehand; the goal is to group customers with similar purchase patterns. This is an appropriate use of unsupervised learning. Supervised learning would instead train a classifier from known category labels.

Problem 3

A warehouse robot tries several routes. It receives a positive reward for arriving on time and a negative reward for a collision, and it learns a movement policy that increases its long-term reward. Which learning approach is this?

View explanation

The robot tries actions in an environment and improves its policy based on the resulting positive and negative rewards, which is reinforcement learning. It is not directly given the correct route for every situation as a label, as it would be in supervised learning.

Problem 4

A fraud detection model achieves 99% accuracy on its training data but only 61% on newly collected transaction data under equivalent collection conditions. No data leakage is found. Which term describes this condition?

View explanation

The model fits its training data extremely well but fails to generalize to unseen data, so this is overfitting. If the model were untrained or substantially undertrained, its performance on the training data would not normally be this high either.

Problem 5

A company wants a fair final measure of how well its purchasing prediction model will perform for unseen customers. Which data is most appropriate for this evaluation?

View explanation

Final generalization performance should be measured on test data kept separate from both training and parameter tuning. Reusing training data or data repeatedly consulted during tuning measures adaptation to that data and can overstate performance on genuinely unseen customers.

Problem 6

Which description best characterizes a foundation model in AI?

View explanation

A foundation model is pretrained on broad, large-scale data and can be adapted to multiple downstream tasks, such as question answering or image recognition, through methods such as fine-tuning. This differs from a system restricted to a single fixed-rule process.

Problem 7

A generative AI system is asked to research court decisions. It responds with a nonexistent case name and judgment date while presenting them as if they came from a reliable source. Which term describes this phenomenon?

View explanation

A hallucination occurs when generative AI produces false information in a plausible form. A deepfake is a realistic synthetic or manipulated representation such as a person's video or voice, so it is distinct from inventing factual case information in this scenario.

Problem 8

A financial institution is introducing AI to support loan screening. The decisions have major consequences, and the institution must address possible AI errors and bias. Which operation best follows a human-in-the-loop approach?

View explanation

Human-in-the-loop operation incorporates human review or judgment into AI processing, so an officer should examine the rationale and make the recorded final decision. Automatically accepting AI decisions removes human involvement, while never using the output does not create human-AI collaboration.

Problem 9

An organization plans to deploy an AI hiring system trained on historical hiring records, but past hires are heavily concentrated in one demographic group. Which predeployment action is most appropriate for reducing unfairly biased output?

View explanation

Because the historical data itself is concentrated in one group, the organization should inspect its composition, evaluate outcomes by group and remediate the data or model where needed. Removing one explicit attribute may not eliminate bias carried by correlated variables such as location, and an overall accuracy figure can hide harm to particular groups.

Problem 10

Without changing a generative AI model's weights, a team adds the objective, constraints, output format and input examples to its instructions, evaluates the output and repeatedly improves those instructions. Which term describes this work?

View explanation

Prompt engineering designs the instructions, context, examples and output format supplied to a model and improves them iteratively based on evaluation, without retraining the model itself. Transfer learning and fine-tuning instead reuse learned knowledge while performing additional training on the model side.