
ISTQB AI Testing CT-AI Dumps Full Questions with Free PDF Questions to Pass
100% Updated ISTQB CT-AI Enterprise PDF Dumps
NEW QUESTION # 47
Which ONE of the following tests is MOST likely to describe a useful test to help detect different kinds of biases in ML pipeline?
SELECT ONE OPTION
- A. Check the input test data for potential sample bias.
- B. Testing the data pipeline for any sources for algorithmic bias.
- C. Test the model during model evaluation for data bias.
- D. Testing the distribution shift in the training data for inappropriate bias.
Answer: C
Explanation:
Detecting biases in the ML pipeline involves various tests to ensure fairness and accuracy throughout the ML process.
Testing the distribution shift in the training data for inappropriate bias (A): This involves checking if there is any shift in the data distribution that could lead to bias in the model. It is an important test but not the most direct method for detecting biases.
Test the model during model evaluation for data bias (B): This is a critical stage where the model is evaluated to detect any biases in the data it was trained on. It directly addresses potential data biases in the model.
Testing the data pipeline for any sources for algorithmic bias (C): This test is crucial as it helps identify biases that may originate from the data processing and transformation stages within the pipeline. Detecting sources of algorithmic bias ensures that the model does not inherit biases from these processes.
Check the input test data for potential sample bias (D): While this is an important step, it focuses more on the input data and less on the overall data pipeline.
Hence, the most likely useful test to help detect different kinds of biases in the ML pipeline is B. Test the model during model evaluation for data bias.
Reference:
ISTQB CT-AI Syllabus Section 8.3 on Testing for Algorithmic, Sample, and Inappropriate Bias discusses various tests that can be performed to detect biases at different stages of the ML pipeline.
Sample Exam Questions document, Question #32 highlights the importance of evaluating the model for biases.
NEW QUESTION # 48
Which AI-specific test objective and acceptance criterion should be selected MOST LIKELY for testing GPT_Legal?
Choose ONE option (1 out of 4)
- A. Test objective: Evidence of compatibility
Acceptance criterion: The system can exchange information with the DPMA system and the evaluation system. - B. Test objective: Evidence of evolution
Acceptance criterion: The quality of the research results does not deteriorate with further training. - C. Test objective: Evidence that the data is free from inappropriate bias Acceptance criterion: The DPMA's analysis data is statistically compared to data from other sources.
- D. Test objective: Evidence of functional safety
Acceptance criterion: The system recognizes failures in the transmission of information and data with the DPMA system and the evaluation system by means of self-tests.
Answer: B
Explanation:
The ISTQB CT-AI syllabus introducesAI-specific quality characteristics, includingevolution,functional safety,compatibility, andbias-related data quality. Section5.1 - AI-Specific Test Objectivesexplains that evolutionrefers to an AI system's capability to continue improving or at least maintain performance as it undergoes additional training. GPT_Legal is explicitly described as aself-learning systemexpected to:
* continuously reduce false positives,
* achieve weekly accuracy improvements of 10%,
* reach and maintain 90% accuracy,
* adapt to new environments (patent law firm # corporate legal department).
This aligns perfectly with the syllabus definition ofevidence of evolution: ensuring the model doesnot degrade as additional training data is introduced. OptionBtherefore directly supports the described acceptance criteria for this evolving, self-learning application.
Option A (functional safety) is irrelevant because patent searching and drafting do not constitute safety- critical domains. Option C (compatibility) is necessary but not the primary AI-specific objective. Option D addresses bias, which is important but not central to the described performance and continuous-learning expectations.
Thus,Option Bis the most appropriate AI-specific test objective.
NEW QUESTION # 49
An e-commerce developer built an application for automatic classification of online products in order to allow customers to select products faster. The goal is to provide more relevant products to the user based on prior purchases.
Which of the following factors is necessary for a supervised machine learning algorithm to be successful?
- A. Grouping similar products together before feeding them into the algorithm
- B. Selecting the correct data pipeline for the ML training
- C. Labeling the data correctly
- D. Minimizing the amount of time spent training the algorithm
Answer: C
Explanation:
Supervised machine learning requires correctly labeled data to train an effective model. The learning process relies on input-output mappings where each training example consists of an input (features) and a correctly labeled output (target variable). Incorrect labeling can significantly degrade model performance.
* Supervised Learning Process
* The algorithm learns from labeled data, mapping inputs to correct outputs during training.
* If labels are incorrect, the model will learn incorrect relationships and produce unreliable predictions.
* Quality of Training Data
* The accuracy of any supervised ML model ishighly dependent on the quality of labels.
* Poorly labeled data leads to mislabeled training sets, resulting inbiased or underperforming models.
* Error Minimization and Model Accuracy
* Incorrectly labeled data affects theconfusion matrix, reducing precision, recall, and accuracy.
* It leads to overfitting or underfitting, which decreases the model's ability to generalize.
* Industry Standard Practices
* Many AI development teams spend a significant amount of time ondata annotation and quality controlto ensure high-quality labeled datasets.
* (B) Minimizing the amount of time spent training the algorithm#(Incorrect)
* While reducing training time is important for efficiency, the quality of training is more critical. A well-trained model takes time to process large datasets and optimize its parameters.
* (C) Selecting the correct data pipeline for the ML training#(Incorrect)
* A good data pipeline helps, butit does not directly impact learning successas much as labeling does.Even a well-optimized pipeline cannot fix incorrect labels.
* (D) Grouping similar products together before feeding them into the algorithm#(Incorrect)
* This describesclustering, which is anunsupervised learning technique. Supervised learningrequires labeled examples, not just grouping of data.
* Labeled data is necessary for supervised learning."For supervised learning, it is necessary to have properly labeled data."
* Data labeling errors can impact performance."Supervised learning assumes that the data is correctly labeled by the data annotators.However, it is rare in practice for all items in a dataset to be labeled correctly." Why Labeling is Critical?Why Other Options are Incorrect?References from ISTQB Certified Tester AI Testing Study GuideThus,option A is the correct answer, ascorrectly labeled data is essential for supervised machine learning success.
NEW QUESTION # 50
A team of software testers is attempting to create an AI algorithm to assist in software testing. This particular team has gone through over 40 iterations of testing and cannot afford to spend as much time as it takes to run the full regression test suite. They are hoping to have the algorithm reduce the amount of testing required, thus reducing the time needed for each testing cycle.
How can an AI-based tool be expected to assist in this reduction?
- A. By performing optimization of the data from past iterations to see where the most common defects occurred and select the corresponding test cases
- B. By using A/B testing to compare the last update with the newest change and compare metrics between the two
- C. By performing Bayesian analysis to estimate the types of human interactions that are expected to be seen in the system and then selecting those test cases
- D. By using a clustering method to quantify the relationships between test cases and then assigning each test case to a category
Answer: A
Explanation:
The syllabus mentions that AI can help optimize regression test suites:
"An AI-based tool can perform optimization of the regression test suite by analyzing... the information from previous test results, associated defects, and the latest changes that have been made, such as features which are broken more frequently and which tests exercise code impacted by recent changes." (Reference: ISTQB CT-AI Syllabus v1.0, Section 11.4, page 79 of 99)
NEW QUESTION # 51
Which of the following is a technique used in machine learning?
- A. Decision tables
- B. Boundary value analysis
- C. Equivalence partitioning
- D. Decision trees
Answer: D
Explanation:
Decision trees are a widely usedmachine learning (ML) techniquethat falls undersupervised learning. They are used for bothclassification and regressiontasks and are popular due to their interpretability and effectiveness.
* How Decision Trees Work:
* The model splits the dataset into branches based on feature conditions.
* It continues to divide the data until each subset belongs to a single category (classification) or predicts a continuous value (regression).
* The final result is a tree structure where decisions are made atnodes, and predictions are given at leaf nodes.
* Common Applications of Decision Trees:
* Fraud detection
* Medical diagnosis
* Customer segmentation
* Recommendation systems
* B (Equivalence Partitioning):This is asoftware testing technique, not a machine learning method. It is used to divide input data into partitions to reduce test cases while maintaining coverage.
* C (Boundary Value Analysis):Anothersoftware testing technique, used to check edge cases around input boundaries.
* D (Decision Tables):A structuredtesting techniqueused to validate business rules and logic, not a machine learning method.
* ISTQB CT-AI Syllabus (Section 3.1: Forms of Machine Learning - Decision Trees)
* "Decision trees are used in classification and regression models and are fundamental ML algorithms".
Why Other Options Are Incorrect:Supporting References from ISTQB Certified Tester AI Testing Study Guide:Conclusion:Sincedecision trees are a core technique in machine learning, while the other options are software testing techniques, thecorrect answer is A.
NEW QUESTION # 52
Which of the following problems would best be solved using the supervised learning category of regression?
- A. Predicting shopper purchasing behavior based on the category of shopper and the positioning of promotional displays within a store
- B. Determining if an animal is a pig or a cow based on image recognition
- C. Determining the optimal age for a chicken's egg-laying production using input data of the chicken's age and average daily egg production for one million chickens
- D. Recognizing a knife in carry-on luggage at a security checkpoint in an airport scanner
Answer: C
Explanation:
The syllabus states:
"Supervised learning... divides problems into two categories: classification and regression. Regression is used when the problem requires the ML model to predict a numeric output, for example predicting the age of a person based on their habits." (Reference: ISTQB CT-AI Syllabus v1.0, Section 3.1.1, Page 26 of 99)
NEW QUESTION # 53
Which of the following aspects is a challenge when handling test data for an AI-based system?
- A. Output data or intermediate data
- B. Video frame speed or aspect ratio
- C. Personal data or confidential data
- D. Data frameworks or machine learning frameworks
Answer: C
Explanation:
Handlingtest datain AI-based systems presents numerous challenges, particularly in terms ofdata privacy and confidentiality. AI models often require vast amounts of training data, some of which may containpersonal, sensitive, or confidential information. Ensuringcompliance with data protection laws (e.g., GDPR, CCPA)and implementingsecure data-handling practicesis a major challenge in AI testing.
* Data Privacy Regulations
* AI-based systems frequently process personal data, such as images, names, and transaction details, leading toprivacy concerns.
* Compliance with regulations such asGDPR (General Data Protection Regulation)andCCPA (California Consumer Privacy Act)requiresproper anonymization, encryption, or redactionof sensitive data before using it for testing.
* Data Security Challenges
* AI models mayleak confidential informationif proper security measures are not in place.
* Protectingtraining and test data from unauthorized accessis crucial to maintainingtrust and compliance.
* Legal and Ethical Considerations
* Organizations mustobtain legal approvalbefore using certain datasets, especially those containinghealth records, financial data, or personally identifiable information (PII).
* Testers may need toemploy synthetic dataordata maskingtechniques to minimize exposure risks.
* (B) Output data or intermediate data#
* While analyzing output data is important, it does notpose a significant challengecompared to handlingpersonal or confidential test data.
* (C) Video frame speed or aspect ratio#
* These aretechnical challengesin processing AI models but do not fall underdata privacy or ethical considerations.
* (D) Data frameworks or machine learning frameworks#
* Choosing an appropriateML framework (e.g., TensorFlow, PyTorch)is important, but it is nota major challenge related to test data handling.
* Handling personal or confidential data is a critical challenge in AI testing"Personal or otherwise confidential data may need special techniques for sanitization, encryption, or redaction.Legal approval for use may also be required." Why is Option A Correct?Why Other Options are Incorrect?References from ISTQB Certified Tester AI Testing Study GuideThus,option A is the correct answer, asdata privacy and confidentiality are major challenges when handling test data for AI-based systems.
NEW QUESTION # 54
You have access to the training data that was used to train an AI-based system. You can review this information and use it as a guideline when creating your tests. What type of characteristic is this?
- A. Autonomy
- B. Transparency
- C. Explorability
- D. Accessibility
Answer: B
Explanation:
AI-based systems can sometimes behave likeblack boxes, where the internal decision-making process is unclear.Transparencyrefers to theability to inspect and understand the training data, algorithms, and decision- making processof the AI system.
* Transparency ensures that testers and stakeholders can review how an AI system was trained.
* Access totraining datais a key factor in transparency because it allows testers toanalyze biases, completeness, and representativenessof the dataset.
* Transparency is an essential characteristic of explainable AI (XAI).
* Having access to training data means that testers can investigate how data influences AI behavior.
* Regulatory and ethical AI guidelines emphasize transparency.
* Many AI ethics frameworks, such asGDPR and Trustworthy AI guidelines, recommend transparency to ensurefair and explainable AI decision-making.
* (A) Autonomy#
* Autonomy refers to an AI system's ability to make decisions independentlywithout human intervention. However,having access to training data does not relate to autonomy, which is more about self-learning and decision-making without human control.
* (B) Explorability#
* Explorability refers to the ability to test AI systems interactivelyto understand their behavior, but it does not directly relate to accessing training data.
* (D) Accessibility#
* Accessibility refers to the ease with which people can use the system, not the ability to inspect the training data.
* Transparency is the ease with which the training data and algorithm used to generate a model can be understood."Transparency: This is considered to be the ease with which the algorithm and training data used to generate the model can be determined." Why is Option C Correct?Why Other Options are Incorrect?References from ISTQB Certified Tester AI Testing Study GuideThus,option C is the correct answer, astransparency involves access to training data, allowing testers to understand AI decision-making processes.
NEW QUESTION # 55
An engine manufacturing facility wants to apply machine learning to detect faulty bolts. Which of the following would result in bias in the model?
- A. Selecting training data by purposely excluding specific faulty conditions
- B. Selecting testing data from a boat manufacturer's bolt longevity data
- C. Selecting testing data from a different dataset than the training dataset
- D. Selecting training data by purposely including all known faulty conditions
Answer: A
Explanation:
Bias in AI models often originates fromincomplete or non-representative training data. In this case, if the training datasetpurposely excludes specific faulty conditions, the machine learning model willfail to learn and detectthese conditions in real-world scenarios.
This results in:
* Sample bias, where the training data is not fully representative of all possible faulty conditions.
* Algorithmic bias, where the model prioritizes certain defect types while ignoring others.
* B. Selecting training data by purposely including all known faulty conditions# This would help reduce bias by improving model generalization.
* C. Selecting testing data from a different dataset than the training dataset# This is a good practice to evaluate model generalization but does not inherently introduce bias.
* D. Selecting testing data from a boat manufacturer's bolt longevity data# While using unrelated data can createpoor model accuracy, it does not directly introduce bias unless systematic patterns in the incorrect dataset lead to unfair decision-making.
* Section 8.3 - Testing for Algorithmic, Sample, and Inappropriate Biasstates thatsample bias can occur if the training dataset is not fully representative of the expected data space, leading to biased predictions.
Why are the other options incorrect?Reference from ISTQB Certified Tester AI Testing Study Guide:
NEW QUESTION # 56
Pairwise testing can be used in the context of self-driving cars for controlling an explosion in the number of combinations of parameters.
Which ONE of the following options is LEAST likely to be a reason for this incredible growth of parameters?
SELECT ONE OPTION
- A. Different Road Types
- B. Different weather conditions
- C. Different features like ADAS, Lane Change Assistance etc.
- D. ML model metrics to evaluate the functional performance
Answer: D
Explanation:
Pairwise testing is used to handle the large number of combinations of parameters that can arise in complex systems like self-driving cars. The question asks which of the given options isleast likelyto be a reason for the explosion in the number of parameters.
* Different Road Types (A): Self-driving cars must operate on various road types, such as highways, city streets, rural roads, etc. Each road type can have different characteristics, requiring the car's system to adapt and handle different scenarios. Thus, this is a significant factor contributing to the growth of parameters.
* Different Weather Conditions (B): Weather conditions such as rain, snow, fog, and bright sunlight significantly affect the performance of self-driving cars. The car's sensors and algorithms must adapt to these varying conditions, which adds to the number of parameters that need to be considered.
* ML Model Metrics to Evaluate Functional Performance (C): While evaluating machine learning (ML) model performance is crucial, it does not directly contribute to the explosion of parameter combinations in the same way that road types, weather conditions, and car features do. Metrics are used to measure and assess performance but are not themselves variable conditions that the system must handle.
* Different Features like ADAS, Lane Change Assistance, etc. (D): Advanced Driver Assistance Systems (ADAS) and other features add complexity to self-driving cars. Each feature can have multiple settings and operational modes, contributing to the overall number of parameters.
Hence, theleast likelyreason for the incredible growth in the number of parameters isC. ML model metrics to evaluate the functional performance.
:
ISTQB CT-AI Syllabus Section 9.2 on Pairwise Testing discusses the application of this technique to manage the combinations of different variables in AI-based systems, including those used in self-driving cars.
Sample Exam Questions document, Question #29 provides context for the explosion in parameter combinations in self-driving cars and highlights the use of pairwise testing as a method to manage this complexity.
NEW QUESTION # 57
Before deployment of an AI based system, a developer is expected to demonstrate in a test environment how decisions are made. Which of the following characteristics does decision making fall under?
- A. Autonomy
- B. Self-learning
- C. Non-determinism
- D. Explainability
Answer: D
Explanation:
Explainability in AI-based systems refers to the ease with which users can determine how the system reaches a particular result. It is a crucial aspect when demonstrating AI decision-making, as it ensures that decisions made by AI models are transparent, interpretable, and understandable by stakeholders.
Before deploying an AI-based system, a developer must validate how decisions are made in a test environment. This process falls under the characteristic of explainability because it involves clarifying how an AI model arrives at its conclusions, which helps build trust in the system and meet regulatory and ethical requirements.
* ISTQB CT-AI Syllabus (Section 2.7: Transparency, Interpretability, and Explainability)
* "Explainability is considered to be the ease with which users can determine how the AI-based system comes up with a particular result".
* "Most users are presented with AI-based systems as 'black boxes' and have little awareness of how these systems arrive at their results. This ignorance may even apply to the data scientists who built the systems. Occasionally, users may not even be aware they are interacting with an AI- based system".
* ISTQB CT-AI Syllabus (Section 8.6: Testing the Transparency, Interpretability, and Explainability of AI-based Systems)
* "Testing the explainability of AI-based systems involves verifying whether users can understand and validate AI-generated decisions. This ensures that AI systems remain accountable and do not make incomprehensible or biased decisions".
* Contrast with Other Options:
* Autonomy (B): Autonomy relates to an AI system's ability to operate independently without human oversight. While decision-making is a key function of autonomy, the focus here is on demonstrating the reasoning behind decisions, which falls under explainability rather than autonomy.
* Self-learning (C): Self-learning systems adapt based on previous data and experiences, which is different from making decisions understandable to humans.
* Non-determinism (D): AI-based systems are often probabilistic and non-deterministic, meaning they do not always produce the same output for the same input. This can make testing and validation more challenging, but it does not relate to explaining the decision-making process.
Supporting References from ISTQB Certified Tester AI Testing Study Guide:Conclusion:Since the question explicitly asks about the characteristic under which decision-making falls when being demonstrated before deployment,explainability is the correct choicebecause it ensures that AI decisions are transparent, understandable, and accountable to stakeholders.
NEW QUESTION # 58
Which ONE of the following characteristics is the least likely to cause safety related issues for an Al system?
SELECT ONE OPTION
- A. Self-learning
- B. Non-determinism
- C. Robustness
- D. High complexity
Answer: C
Explanation:
The question asks which characteristic is least likely to cause safety-related issues for an AI system. Let's evaluate each option:
* Non-determinism (A): Non-deterministic systems can produce different outcomes even with the same inputs, which can lead to unpredictable behavior and potential safety issues.
* Robustness (B): Robustness refers to the ability of the system to handle errors, anomalies, and unexpected inputs gracefully. A robust system is less likely to cause safety issues because it can maintain functionality under varied conditions.
* High complexity (C): High complexity in AI systems can lead to difficulties in understanding, predicting, and managing the system's behavior, which can cause safety-related issues.
* Self-learning (D): Self-learning systems adapt based on new data, which can lead to unexpected changes in behavior. If not properly monitored and controlled, this can result in safety issues.
:
ISTQB CT-AI Syllabus Section 2.8 on Safety and AI discusses various factors affecting the safety of AI systems, emphasizing the importance of robustness in maintaining safe operation.
NEW QUESTION # 59
Which ONE of the following combinations of Training, Validation, Testing data is used during the process of learning/creating the model?
SELECT ONE OPTION
- A. Training data - validation data - test data
- B. Training data - validation data
- C. Training data * test data
- D. Validation data - test data
Answer: A
Explanation:
The process of developing a machine learning model typically involves the use of three types of datasets:
Training Data: This is used to train the model, i.e., to learn the patterns and relationships in the data.
Validation Data: This is used to tune the model's hyperparameters and to prevent overfitting during the training process.
Test Data: This is used to evaluate the final model's performance and to estimate how it will perform on unseen data.
Let's analyze each option:
A . Training data - validation data - test data
This option correctly includes all three types of datasets used in the process of creating and validating a model. The training data is used for learning, validation data for tuning, and test data for final evaluation.
B . Training data - validation data
This option misses the test data, which is crucial for evaluating the model's performance on unseen data after the training and validation phases.
C . Training data - test data
This option misses the validation data, which is important for tuning the model and preventing overfitting during training.
D . Validation data - test data
This option misses the training data, which is essential for the initial learning phase of the model.
Therefore, the correct answer is A because it includes all necessary datasets used during the process of learning and creating the model: training, validation, and test data.
NEW QUESTION # 60
Which statement about testing levels for AI-based systems is correct?
Choose ONE option (1 out of 4)
- A. If AI is offered as a service, system testing includes API tests of the service
- B. Input data testing checks whether the inputs from the data pipeline are received by the model correctly and exchanged with all system components
- C. ML model testing ensures that the relevant ML functional performance criteria are met
- D. Acceptance testing checks non-functional requirements such as explainability
Answer: C
Explanation:
Section4.3 - Test Levels for AI Systemsclearly defines ML model testing as the level at which testers evaluate whether an ML model fulfills itsfunctional performance criteria, including accuracy, precision, recall, F1, robustness, stability, and fairness. Therefore, Option C is the correct and syllabus-aligned statement.
Option A is incorrect because input data testing focuses onvalidity and correctness of data entering the model, not interactions with all system components. Option B is incorrect: acceptance testing in the syllabus focuses primarily onbusiness and stakeholder requirements, not specifically explainability. Explainability testing may occur at multiple levels depending on context. Option D is also incorrect because API testing belongs tointegration testing, not system testing, even when AI is consumed as a service.
Thus,Option Cis the only statement that precisely matches syllabus definitions.
NEW QUESTION # 61
Which ONE of the following tests is MOST likely to describe a useful test to help detect different kinds of biases in ML pipeline?
SELECT ONE OPTION
- A. Check the input test data for potential sample bias.
- B. Testing the data pipeline for any sources for algorithmic bias.
- C. Test the model during model evaluation for data bias.
- D. Testing the distribution shift in the training data for inappropriate bias.
Answer: C
Explanation:
Detecting biases in the ML pipeline involves various tests to ensure fairness and accuracy throughout the ML process.
* Testing the distribution shift in the training data for inappropriate bias (A): This involves checking if there is any shift in the data distribution that could lead to bias in the model. It is an important test but not the most direct method for detecting biases.
* Test the model during model evaluation for data bias (B): This is a critical stage where the model is evaluated to detect any biases in the data it was trained on. It directly addresses potential data biases in the model.
* Testing the data pipeline for any sources for algorithmic bias (C): This test is crucial as it helps identify biases that may originate from the data processing and transformation stages within the pipeline. Detecting sources of algorithmic bias ensures that the model does not inherit biases from these processes.
* Check the input test data for potential sample bias (D): While this is an important step, it focuses more on the input data and less on the overall data pipeline.
Hence, the most likely useful test to help detect different kinds of biases in the ML pipeline isB. Test the model during model evaluation for data bias.
:
ISTQB CT-AI Syllabus Section 8.3 on Testing for Algorithmic, Sample, and Inappropriate Bias discusses various tests that can be performed to detect biases at different stages of the ML pipeline.
Sample Exam Questions document, Question #32 highlights the importance of evaluating the model for biases.
NEW QUESTION # 62
Which ONE of the following statements correctly describes the importance of flexibility for Al systems?
SELECT ONE OPTION
- A. Flexible Al systems allow for easier modification of the system as a whole.
- B. Al systems require changing of operational environments; therefore, flexibility is required.
- C. Al systems are inherently flexible.
- D. Self-learning systems are expected to deal with new situations without explicitly having to program for it.
Answer: A
Explanation:
Flexibility in AI systems is crucial for various reasons, particularly because it allows for easier modification and adaptation of the system as a whole.
AI systems are inherently flexible (A): This statement is not correct. While some AI systems may be designed to be flexible, they are not inherently flexible by nature. Flexibility depends on the system's design and implementation.
AI systems require changing operational environments; therefore, flexibility is required (B): While it's true that AI systems may need to operate in changing environments, this statement does not directly address the importance of flexibility for the modification of the system.
Flexible AI systems allow for easier modification of the system as a whole (C): This statement correctly describes the importance of flexibility. Being able to modify AI systems easily is critical for their maintenance, adaptation to new requirements, and improvement.
Self-learning systems are expected to deal with new situations without explicitly having to program for it (D): This statement relates to the adaptability of self-learning systems rather than their overall flexibility for modification.
Hence, the correct answer is C. Flexible AI systems allow for easier modification of the system as a whole.
Reference:
ISTQB CT-AI Syllabus Section 2.1 on Flexibility and Adaptability discusses the importance of flexibility in AI systems and how it enables easier modification and adaptability to new situations.
Sample Exam Questions document, Question #30 highlights the importance of flexibility in AI systems.
NEW QUESTION # 63
Which machine learning approach is most suitable for predicting customer purchase probability?
Choose ONE option (1 out of 4)
- A. Supervised learning (regression)
- B. Reinforcement learning
- C. Supervised learning (classification)
- D. Unsupervised learning
Answer: C
Explanation:
The ISTQB CT-AI syllabus explains in Section1.6 - Machine Learning Approachesthatsupervised learning is appropriate when labeled data exists and the goal is to predict an output based on known historical examples. Predicting a customer'spurchase probabilityis aclassificationtask when the output corresponds to discrete categories such as"likely to purchase"vs."not likely to purchase."The syllabus gives similar examples in describing classification as the process of assigning instances to predefined classes based on learned patterns in labeled data. Because the retail company wants to determine whether a customer will make a purchase based on marketing actions, classification is the most appropriate choice .
Option A (regression) predicts continuous numeric values and is less suitable because the task centers on categorical likelihood, not estimating exact monetary values. Option C (unsupervised learning) is used when labels are not available-here, the company has labeled purchase histories. Option D (reinforcement learning) requires an interactive environment with reward-driven behavior, which is not applicable to this scenario.
Thus,supervised learning (classification)is the most suitable approach according to the syllabus.
NEW QUESTION # 64
Which ONE of the following options is an example that BEST describes a system with Al-based autonomous functions?
SELECT ONE OPTION
- A. A system that utilizes human beings for all important decisions.
- B. A fully automated manufacturing plant that uses no software.
- C. A system that is fully able to respond to its environment.
- D. A system that utilizes a tool like Selenium.
Answer: C
Explanation:
* AI-Based Autonomous Functions: An AI-based autonomous system is one that can respond to its environment without human intervention. The other options either involve human decisions or do not use AI at all.
* Reference: ISTQB_CT-AI_Syllabus_v1.0, Sections on Autonomy and Testing Autonomous AI-Based Systems.
NEW QUESTION # 65
......
Use Valid Exam CT-AI by DumpTorrent Books For Free Website: https://pass4sure.dumptorrent.com/CT-AI-braindumps-torrent.html