[Feb-2023] UiPath Certified UiPath-ARDv1 Exam Practice Dumps
2023 UiPath-ARDv1 Premium Files Test pdf - Free Dumps Collection
For more info visit:
UiPath Learning guide UiPath Exam Study Guide
NEW QUESTION 129
A developer runs a Dispatcher process to upload 5 queue items to Orchestrator and then runs a Performer to process them. However, the developer forgot to use the Set Transaction Status activity, which resulted in all 5 items changing their status to In Progress.2 days later, the developer checks the status of transactions in Orchestrator. What will be their status?
- A. Failed
- B. In Progress
- C. Deleted
- D. Abandoned
Answer: D
Explanation:
Items that remained in the In Progress status for a long period of time (approx. 24 hours) without being processed change their status to Abandoned.
UiPath Documentation
Exam Topic: Describe how to work with Orchestrator queues and assets
Bottom of Form
NEW QUESTION 130
A developer uses Send Outlook Mail Message activity to send a notification mail to the Finance team. A developer wants to change the font color of the mail message to red. How can it be achieved?
- A. Use HTML notation and set BodyIsHTML property to True.
- B. Change the font color directly in Outlook.
- C. Change the font color property in Send Outlook Mail Message activity.
- D. Use HTML notation and set IsBodyHTML property to True.
Answer: D
Explanation:
IsBodyHtml property specifies whether the body of the message is written in HTML format. Using HTML notation, it is possible to edit font color, text alignment, font and many other visual properties of the mail text.
UiPath Documentation
Exam Topic: Identify and describe how activities are used to automate actions in Excel, e-mail, and .pdfs
NEW QUESTION 131
In a Try Catch activity, how many times is the Finally section executed if no error occurs in the Try section?
Options are :
- A. Zero
- B. Once
- C. The Finally section is executed only when the Catch section is executed.
Answer: B
NEW QUESTION 132
A process is created using UiPath REFramework. By default, if the maximum number of retries is reached, what steps are executed next?
- A. 1. io_RetryNumber = 1
2. io_TransactionNumber = io_TransactionNumber + 1 - B. 1. io_RetryNumber = 0
2. io_TransactionNumber = io_TransactionNumber + 1 - C. 1. io_RetryNumber = 0
- D. 1. io_TransactionNumber = io_TransactionNumber + 1
Answer: B
Explanation:
If the maximum number of retries is reached, the io_RetryNumber is reseted and the next transaction is executed.
UiPath Documentation
Exam Topic: Modify the REFramework to use any datatype for TransactionItem (for example, QueueItem, String, DataTable, etc.), how queues or tabular data are used within the REFramework, how to adapt the template to execute a linear process, and the difference between transactional, iterative, and linear processes
NEW QUESTION 133
A developer needs to select a layout for integrating activities into a workflow file. They must select a layout that covers all possible cases and transitions, and accommodate processes that are not easily captured through the use of loops and If statements.
Based on best practices, which layout is recommended?
- A. Flowchart
- B. State Machine
- C. Global Exception Handler
- D. Sequence
Answer: B
NEW QUESTION 134
How can you pass data between workflows?
Options are :
- A. By using a pipe.
- B. By using arguments.
- C. By using variables.
Answer: B
NEW QUESTION 135
In which workflow in the UiPath Robotic Enterprise Framework template is the TransactionNumber global variable incremented by default?
Options are :
- A. SetTransactionStatus workflow
- B. GetTransactionData workflow
- C. Process workflow
Answer: A
NEW QUESTION 136
A developer is using GIT for version control. While the developer is attempting to Commit and Push a local file to the repository, the following pop-up message is displayed:
What is the reason for the pop-up message?
- A. Local repository is not synchronized with the remote one.
- B. Project was not properly checked out in Studio and merge failed into the master.
- C. Opened project was disconnected from the source control.
- D. Local version was not connected to any branch.
Answer: C
NEW QUESTION 137
A developer uses Open Browser activity to launch UiPath Docs website. However, as the internet connection is unstable, the developer wraps it in a Retry Scope activity. Please choose the correct statement about this solution.
Please find the properties of Retry Scope activity below
Please find the properties of Open Browser activity below
- A. With these settings, the robot will try to execute the Open Browser activity 4 times overall.
- B. If the Element Exists activity returns False after all retries, an error will be thrown.
- C. If the Element Exists activity returns False after all retries, the robot will continue the execution and no error will be thrown.
- D. Each time the Browser is not opened, an error will be thrown.
Answer: B
Explanation:
NumberOfRetries property indicates how many times the activity will be executed overall. It is often misunderstood as 1 try + 3 retries (like in Orchestrator queues), however, it actually is simply 3 tries.
Even if Open Browser activity has ContinueOnError property set to True, it doesn't affect the Retry Scope, because Retry Scope activity has ContinueOnError set to False. So after 3 tries, if the required element still doesn't exist, the Retry Scope activity will throw an error.
NEW QUESTION 138
A developer is running a process in UiPath Studio based on Robotic Enterprise (RE) Framework 2021.10. One asset defined in the project does not exist in the Orchestrator folder provided in the Config.xlsx file.
What is the behavior at runtime?
- A. A warning message stating that the asset is missing is logged and then the process continues.
- B. The process throws an exception in the Initialization state because the asset is not found, then the process is stopped.
- C. A warning message stating that the asset is missing is logged and then the process is stopped.
- D. No exception is thrown and neither will a message be logged, the process continues.
Answer: A
NEW QUESTION 139
Which of the following technologies can be used for background automation?
Options are :
- A. Type into activity with SendWindowMessages flag checked.
- B. The Full Text method of Screen Scraping.
- C. Data Scraping.
- D. The Click activity with the Simulate Click flag checked.
Answer: A,B,C,D
NEW QUESTION 140
In UiPath Robotic Enterprise Framework, the value of MaxRetryNumber in the Config.xlsx file should be set to a number greater than 0 to enable the retry mechanism in the following cases:
Options are :
- A. Do not work with UiPath Orchestrator queues.
- B. Get data from spreadsheets, databases, email, web API.
- C. Get data from UiPath Orchestrator queues with Auto Retry disabled.
Answer: A,B
NEW QUESTION 141
A Business Exception occurs in an isolated workflow. What exception is returned to the outer workflow?
- A. A NullReference Exception
- B. No exception is returned
- C. A Business Exception
- D. A System Exception
Answer: D
Explanation:
Business Exceptions are not supported in an isolated workflow, all exceptions return as System Exceptions.
UiPath Documentation
Exam Topic: Differentiate between using Application Exceptions and Business Rule Exceptions.
NEW QUESTION 142
Which is considered to be one of the best practices regarding the process ?nalization?
Options are :
- A. Restart the machine so that any potential problem can be fixed
- B. Leave the application In its initial state, so that we can execute the process again
- C. Leave the used applications open so that person can Inspect me result
Answer: B
NEW QUESTION 143
When should the Simulate Type/Click property be used?
Options are :
- A. Only when background automation is required
- B. Whenever supported by the target application
- C. Only for testing purposes
Answer: B
NEW QUESTION 144
A developer is automating a production level process in the Robotic Enterprise (RE) Framework. Based on best practices, when should the developer log a meaningful message with the Logging Level as "Information"?
- A. Every time a variable or argument value is used
- B. Every time the robot encounters an error on a Queue Item
- C. Each time an exception is caught in a Catch block
- D. Each time data is read from external sources
Answer: B
NEW QUESTION 145
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?
- A. Ensure the password variable is of the SecureString variable type
- B. Store the temporary password in an Excel file that the process can access
- C. Check the Isolated property when invoking a workflow with the password variable
- D. Check the Private property on all activities that reference the password variable
Answer: C
NEW QUESTION 146
What can the UiPath Robotic Enterprise Framework template be used as?
Options are :
- A. A consumer of a queue in Orchestrator
- B. The starting point for every automation project
- C. A complete library for front office robots
Answer: B
NEW QUESTION 147
A developer wants to determine how much time it takes for an activity to perform.
Based on the exhibit, what should the developer use to know how much time has elapsed in executing the Timed Activity sequence?
- A. StartTime = DateTime.Now
EllapsedTime = (DateTime.Now.Second - StartTime.Second).ToString - B. StartTime = DateTime.Now.ToString("HH:mm:ss")
EllapsedTime = DateTime.Now - StartTime - C. StartTime = DateTime.Now
ElapsedTime = DateTime.Now.ToString("HH:mm:ss") - StartTime.ToString - D. StartTime = DateTime.Now
ElapsedTime = ((DateTime.Now - StartTime).TotalSeconds).ToString
Answer: D
NEW QUESTION 148
......
Get ready to pass the UiPath-ARDv1 Exam right now using our UiPath Certified Exam Package: https://www.trainingdump.com/UiPath/UiPath-ARDv1-practice-exam-dumps.html
A fully updated 2023 UiPath-ARDv1 Exam Dumps exam guide from training expert TrainingDump: https://drive.google.com/open?id=1E7BKkkKH-JfumX94qWTfxyh-bKcMYnIz