UiPath Automation Developer Associate Exam (2023.10) UiPath-ADAv1 Question # 42 Topic 5 Discussion

UiPath Automation Developer Associate Exam (2023.10) UiPath-ADAv1 Question # 42 Topic 5 Discussion

UiPath-ADAv1 Exam Topic 5 Question 42 Discussion:
Question #: 42
Topic #: 5

Upon extracting data from a website, a developer saves it in three variables: "FirstName", "LastName", and "City". The developer intends to store these three String variables in a fixed-size data structure called

"UserData", to be utilized later within another workflow in the process.

Considering best practices, which data structure and assignment should be used?


A.

UserData is of type List

UserData = New List(Of Object) ({ FirstName, LastName, City })


B.

UserData is of type Object[]

UserData = {FirstName, LastName, City}


C.

UserData is of type List

UserData = New List(Of String) ({ FirstName, LastName, City })


D.

UserData is of type String[]

UserData = {FirstName, LastName, City}


Get Premium UiPath-ADAv1 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.