Blue Prism Certified Developer (AD01) — Question 55
What is the syntax for using a collection field in an expression?
Answer options
- A. Like this MyCollection(MyField)
- B. Like this MyCollection[MyField]
- C. Like this [MyCollection[MyField]]
- D. Like this MyCollection.MyField
- E. Like this [MyCollection.MyField]
Correct answer: E
Explanation
The correct syntax for accessing a field in a collection is [MyCollection.MyField], which allows for proper referencing within expressions. Options A, B, C, and D do not follow the correct format for accessing collection fields, as they either use incorrect brackets or syntax that does not align with standard practices.