UiARD Exam QuestionsBrowse all questions from this exam

UiARD Exam - Question 116


A developer created a project in the Robotic Enterprise (RE) Framework. The Config.xlsx has the Asset entry shown in the exhibit:

Assuming the default REFramework configuration, how can the developer reference the Asset in the Config variable so that the dictionary returns the asset value as a String?

Show Answer
Correct Answer: D

In the Robotic Enterprise (RE) Framework, configuration assets are stored in a dictionary typically accessed through the Config variable. The key used to retrieve an asset from this dictionary is the name specified in the 'Name' column of the Config.xlsx file. As shown in the exhibit, the 'SuccessEmailAddress' is the key to the asset 'Finance_InvoiceProcessing_Text_SuccessEmail'. Therefore, to retrieve the asset value as a string, the developer should use Config("SuccessEmailAddress").ToString.

Discussion

1 comment
Sign in to comment
LarcAi_TrainingOption: D
Nov 23, 2024

The given answer is correct