Exam UiARD All QuestionsBrowse all questions from this exam
Question 94

A developer is creating an automation project which creates a temporary password in the company’s system for new employees and later enters it into a desktop application. To protect this sensitive information, how can the developer avoid the password from being displayed on screen when it is entered into the desktop application?

    Correct Answer: B

    To protect sensitive information such as passwords in an automation project, the best approach is to check the Private property on all activities that reference the password variable. This ensures that the password is not displayed in logs or on the screen when it is entered into the desktop application. While using SecureString is also a good practice for handling sensitive data in memory, it does not prevent the password from being displayed on the screen during the automation process.

Discussion
OnlineOption: A

https://docs.uipath.com/activities/other/latest/user-guide/n-type-into

IngvarnOption: A

Ensure the password variable is of the SecureString variable type

MirjalolOption: A

A is correct

Engineer24Option: A

must be credential type !