UiARD Exam QuestionsBrowse all questions from this exam

UiARD 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?

Show Answer
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

4 comments
Sign in to comment
OnlineOption: A
Apr 5, 2024

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

Engineer24Option: A
Apr 21, 2024

must be credential type !

MirjalolOption: A
Jul 18, 2024

A is correct

IngvarnOption: A
Nov 28, 2024

Ensure the password variable is of the SecureString variable type