Exam ACD100 All QuestionsBrowse all questions from this exam
Question 59

In a rule, there is a variable named local!numberOfCustomers which will eventually change value.

You are tasked with creating a variable that captures the original value so that you can later compare the original and new value.

Which parameter settings should you use for your new variable?

    Correct Answer: B

    To capture the original value of local!numberOfCustomers and ensure it doesn't change even when local!numberOfCustomers does, you should use refreshOnReferencedVarChange: false. This setting ensures that the new variable will not refresh when the referenced variable changes, thus preserving the original value.

Discussion
Jdhar1566Option: B

Ans is B

mirza_1215Option: B

correct: B Referencing another local variable creates a dependency between the two variables and ensures that the referenced variable is always evaluated first.