Exam UiRPA All QuestionsBrowse all questions from this exam
Question 33

A developer needs to create an array of folder names in the file path by using the Split method. What is the result of the Split method: Split (“C:\Users\UiPathRobot\Documents\Technologies”,”\”)?

    Correct Answer: A

    Using the Split method in most programming languages with a backslash as the delimiter will result in splitting the string at each backslash. Hence, the parts 'C:', 'Users', 'UiPathRobot', 'Documents', and 'Technologies' will be obtained. Therefore, the correct answer is {“C:”,“Users”,“UiPathRobot”,”Documents”,”Technologies”}.

Discussion
RashaAlqahtaniOption: A

tested in studio the answer is A