Exam UiARD All QuestionsBrowse all questions from this exam
Question 172

A developer is building a workflow that extracts the name of companies based on their IDs and then stores them in a datatable. The workflow contains a String variable that stores the company name, an output argument that stores the Company ID, and a datatable.

What represents an example of a naming convention best practice?

    Correct Answer: D

    An example of a naming convention best practice in this scenario is as follows: The String variable name should use camel case or Pascal case for readability, such as 'CompanyName'. The Argument name should be prefixed with 'out_' to indicate it is an output argument, such as 'out_CompanyId'. The Data Table name should follow a standard format, starting with a lowercase 'dt' followed by an underscore and then description using Pascal case, such as 'dt_CompanyData'. This ensures clarity and consistency in variable naming.

Discussion
sur_bhi123456789Option: D

D is correct

LarcAi_TrainingOption: D

The given answer is correct