ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 84 - AD01 discussion

Report
Export

Examine the following Process flow which calculates the total of all customer credit transactions:

The 'Customer Transactions' Collection contains the following data

Debit transactions can be identified using the Transaction Code column, which will contain a value between 01 and 49. Credit transactions can be identified using the Transaction Code column, which will contain a value between 50 and 99 The 'Loop Customer Transactions' loop is configured to loop through the 'Customer Transactions' Collection

What is the correct expression for the 'Credit Transaction?' Decision stage, to ensure that only credit transactions are included when calculating the total of customer credits'?

A.
MakeNumber([Transaction Code]) >- 50
Answers
A.
MakeNumber([Transaction Code]) >- 50
B.
ToNumber([Transaction Code]) >= 50
Answers
B.
ToNumber([Transaction Code]) >= 50
C.
[Transaction Code] >= 50
Answers
C.
[Transaction Code] >= 50
D.
[Customer Transactions Transaction Code] >= 50
Answers
D.
[Customer Transactions Transaction Code] >= 50
E.
ToNumber([Customer Transactions Transaction Code]) >= 50
Answers
E.
ToNumber([Customer Transactions Transaction Code]) >= 50
F.
MakeNumber([Customer Transactions.Transaction Code]) >= 50
Answers
F.
MakeNumber([Customer Transactions.Transaction Code]) >= 50
Suggested answer: E

Explanation:

To ensure that only credit transactions are included when calculating the total of customer credits, the 'Credit Transaction?' decision stage needs to check if the transaction code is between 50 and 99. Given that transaction codes are stored as text, we need to convert these values to numbers before performing the comparison.

Customer Transactions Collection:

The 'Transaction Code' column contains text values representing the transaction codes.

Credit Transaction Identification:

Credit transactions have transaction codes between 50 and 99.

Therefore, the correct condition should convert the text transaction code to a number and check if it is greater than or equal to 50.

Decision Stage Expression:

The correct expression is ToNumber([Customer Transactions.Transaction Code]) >= 50, which ensures that only credit transactions are included in the total calculation.

Blue Prism Process Design guidelines

Data type conversion functions in Blue Prism

asked 16/09/2024
Shivanth Jha
36 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first