Question 51
Which of the following statements BEST describes how tools support model-based testing?
Question 52
Which requirements engineering technique would BEST identify how different groups of users may interact with a system, helping to identify gaps and inconsistencies in a user story-' SELECT ONE OPTION
Question 53
Below is the pseudo-code for the bingo program:

The bingo program contains a data flow anomaly. Which data flow anomaly can be found in this program?

The bingo program contains a data flow anomaly. Which data flow anomaly can be found in this program?
Question 54
In what circumstances should you use a simulator instead of an emulator when testing a mobile application?
Question 55
Consider the following section of pseudo code and associated test Input data:
If withdrawal-amount <= amount-on-deposit then Set authorize-transaction = true Else If withdrawal-amount <= S100 AND preferred-customer = true then Set authorize-transaction = true Else Set authorize-transaction = false Endif Endif Input data set #1 withdrawal-amount = 160 amount-on-deposit = 100 preferred-customer = true Input data set #2 withdrawal-amount = 500 amount-on-deposit = 500 preferred-customer = false Input data set #3 withdrawal-amount = 50 amount-on-deposit = 500 preferred-customer = false What would be the decision coverage achieved if each of these test input data sets were run once?
If withdrawal-amount <= amount-on-deposit then Set authorize-transaction = true Else If withdrawal-amount <= S100 AND preferred-customer = true then Set authorize-transaction = true Else Set authorize-transaction = false Endif Endif Input data set #1 withdrawal-amount = 160 amount-on-deposit = 100 preferred-customer = true Input data set #2 withdrawal-amount = 500 amount-on-deposit = 500 preferred-customer = false Input data set #3 withdrawal-amount = 50 amount-on-deposit = 500 preferred-customer = false What would be the decision coverage achieved if each of these test input data sets were run once?
