Which of the following is an example of an input change where it would be expected that the AI system should be able to adapt?
Correct Answer: B
AI systems, particularly machine learning models, need to exhibit adaptability and flexibility to handle slight variations in input data without requiring retraining. The ISTQB CT-AI syllabus outlines adaptability as a crucial feature of AI systems, especially when the system is exposed to variations in its operational environment. * Option A:"It has been trained to recognize cats and is given an image of a dog." * This scenario introduces an entirely new class (dogs), which is outside the AI system's expected scope. If the AI was only trained to recognize cats, it would not be expected to recognize dogs correctly without retraining. This does not demonstrate adaptability as expected from an AI system. * Option B:"It has been trained to recognize human faces at a particular resolution and it is given a human face image captured with a higher resolution." * This is an example of an AI system encountering a variation of its training data rather than entirely new data. Most AI-based image processing models can adapt to different resolutions by applying downsampling or other pre-processing techniques. Since the data remains within the domain of human faces, the model should be able to process the higher-resolution image without significant issues. * Option C:"It has been trained to analyze mathematical models and is given a set of landscape pictures to classify." * This represents a complete shift in the data type from structured numerical data to unstructured image data. The AI system is unlikely to adapt effectively, as it has not been trained on image classification tasks. * Option D:"It has been trained to analyze customer buying trend data and is given information on supplier cost data." * This introduces a significant domain shift. Customer buying trends focus on consumer behavior, while supplier cost data relates to pricing structures and logistics. The AI system would likely require retraining to process the new data meaningfully. * Adaptability Requirements:The syllabus discusses that AI-based systems must be able to adapt to changes in their operational environment and constraints, including minor variations in input quality (such as resolution changes). * Autonomous Learning & Evolution:AI systems are expected to improve and handle evolving inputs based on prior experience. * Challenges in Testing Self-Learning Systems:AI systems should be tested to ensure they function correctly when encountering new but related data, such as different resolutions of the same object. Analysis of the Answer Options:ISTQB CT-AI Syllabus References:Thus,option Bis the best choice as it aligns with the adaptability characteristics expected from AI-based systems.
Question 137
You are testing an autonomous vehicle which uses AI to determine proper driving actions and responses. You have evaluated the parameters and combinations to be tested and have determined that there are too many to test in the time allowed. It has been suggested that you use pairwise testing to limit the parameters. Given the complexity of the software under test, what is likely the outcome from using pairwise testing?
Correct Answer: C
The syllabus states that while pairwise testing is effective at finding defects by reducing the number of test cases needed, the resulting test suite can still be extensive and require automation: "Even the use of pairwise testing can result in extensive test suites... automation and virtual test environments often become necessary to allow the required tests to be run." (Reference: ISTQB CT-AI Syllabus v1.0, Section 9.2, Page 67 of 99)
Question 138
ln the near future, technology will have evolved, and Al will be able to learn multiple tasks by itself without needing to be retrained, allowing it to operate even in new environments. The cognitive abilities of Al are similar to a child of 1-2 years.' In the above quote, which ONE of the following options is the correct name of this type of Al? SELECT ONE OPTION
Correct Answer: D
* A. Technological singularity Technological singularity refers to a hypothetical point in the future when AI surpasses human intelligence and can continuously improve itself without human intervention. This scenario involves capabilities far beyond those described in the question. * B. Narrow AI Narrow AI, also known as weak AI, is designed to perform a specific task or a narrow range of tasks. It does not have general cognitive abilities and cannot learn multiple tasks by itself without retraining. * C. Super AI Super AI refers to an AI that surpasses human intelligence and capabilities across all fields. This is an advanced concept and not aligned with the description of having cognitive abilities similar to a young child. * D. General AI General AI, or strong AI, has the ability to understand, learn, and apply knowledge across a wide range of tasks, similar to human cognitive abilities. It aligns with the description of AI that can learn multiple tasks and operate in new environments without needing retraining.
Question 139
Which ONE of the following statements about a system MOST describes an autonomous system?
Correct Answer: B
An autonomous system is capable of performing tasks independently, without requiring human intervention. The self-driving car in option B is an example of an autonomous system because it automatically takes action (stopping the car) based on its internal decision-making, in response to the driver's behavior.
Question 140
A system is to be developed to detect lung cancer using X-ray images. Which statement BEST describes the difference between a conventional system and an AI system with supervised machine learning? Choose ONE option (1 out of 4)
Correct Answer: C
The syllabus explains the fundamental distinction betweenconventional systemsandAI-based systems using supervised machine learningin Section1.3 - AI-Based and Conventional Systems. A conventional system relies on human-programmed logic-such as branches, conditions, and explicit rules-to interpret input data. The system behaves exactly as specified by its developers. In contrast,AI systems using supervised learning automatically learn patternsfrom labeled data. The syllabus states that"patterns in data are used by the system to determine how it should react in the future... The AI determines on its own what patterns or features in the data can be used". This aligns directly with Option C: an AI system identifies relevant diagnostic patterns in X-ray images during training, whereas a conventional system requires human experts to explicitly program those patterns. Option A is incorrect because AI outputs are typicallylessexplainable, not more. Option B is incorrect because both systems can use thesame X-ray images; ML does not require structurally different images. Option D is oversimplified and not fully accurate; while training data is central to ML, AI systems also include architecture, algorithms, and preprocessing-not just data. Thus,Option Cis the correct and syllabus-aligned answer.