Blue Prism Certified Developer (AD01) — Question 34
The Work Queue "Customer Onboarding" has a number of Pending Items which may be tagged as "Domestic", "Retail" or "Business". There is also a tag for the 8 digit product code formatted as "Product Code: {product code}" e.g. Product Code: CA123456.
What is the correct configuration to get the next item from the queue that:
✑ Isn't applying for a loan product i.e. Product Code doesn't begin with "LN" And
✑ Is a domestic customer
Answer options
- A. Configure "Domestic; -Product Code: LN*" in the Tag Filter parameter
- B. Configure "Domestic; -Product Code: LN?" in the Tag Filter parameter
- C. Configure "Domestic and Product Code: <> LN?" in the Tag Filter parameter
- D. Configure "Domestic + [Product Code] <> LN*" in the Tag Filter parameter
Correct answer: A
Explanation
The correct answer is A because it accurately uses the syntax to exclude any product codes starting with 'LN' while including only 'Domestic' items. Option B is incorrect as the '?' wildcard does not properly limit the exclusion of 'LN' products. Options C and D use incorrect logical operators or syntax for the filtering criteria.