Latest UiPath UiPath-ARDv1 Free Certification Exam Material with 340 Q&As
UPDATED UiPath-ARDv1 Exam Questions Certification Test Engine to PDF
NEW QUESTION 41
A developer created a process which extracts text from an element on an HTML website using a Get Text activity. The developer observed that the text can only be successfully extracted when the attribute "innertext" updates or changes from "false" to "true". The target element can take up to 20 seconds to load.
Which activity should be used before the Get Text activity to ensure the target element text can be extracted?
- A. Set Web Attribute
- B. On Element Appear
- C. Wait Attribute
- D. Delay
Answer: D
NEW QUESTION 42
A developer implements a state machine for his automation solution. What happens if a condition both for T1 and T2 is True?
- A. Default transition is executed.
- B. An error is thrown.
- C. T1 transition is executed.
- D. Both T1 and T2 are executed.
Answer: C
Explanation:
If conditions of multiple transitions are met, the first in order is executed. In this case, the T1 transition is executed.
UiPath Forum
NEW QUESTION 43
A developer needs to reference the element in the first row of the "ID" column in the System.Data.DataTable,
"DT".
Which expression is used to reference this element?
- A. DT.Rows(1).Item("ID")
- B. DT.Rows(1).ID
- C. DT.Rows(0).Item("ID")
- D. DT.Rows(0).ID
Answer: A
NEW QUESTION 44
Where in the Robotic Enterprise (RE) Framework template project is the SetTransactionStatus.xaml invoked?
- A. In the Try section of the Try Catch activity in the End Process state.
- B. In the Try section of the Try Catch activity in the Process Transaction state.
- C. In the Finally section of the Try Catch activity in the Process Transaction state.
- D. In the Finally section of the Try Catch activity in the End Process state.
Answer: B
NEW QUESTION 45
The String.Format("Input = {0} and Output = {0}", "1","2") expression returns the following:
Options are :
- A. Input = {1} and Output = {2}.
- B. Input = 1 and Output = 2.
- C. An error.
- D. Input = 1 and Output = 1.
- E. Input = {0} and Output = {0}.
Answer: D
NEW QUESTION 46
A developer uses Invoke Process activity to execute a child process. How can the developer differentiate logs of the child process from logs of the parent process?
- A. Different log files are created to store logs of parent and child processes.
- B. By ProcessName field in local logs and Process column in Orchestrator.
- C. Only by ProcessName field in local logs.
- D. Only by Process column in Orchestrator.
Answer: B
Explanation:
Logs generated by the child processes only contain the outcome of the execution and errors, and are written in the same place as the ones from the parent and can be differentiated by the ProcessName field in local logs and Process column in Orchestrator.
UiPath Documentation
Exam Topic: Describe how to write coherent log messages (default or user-defined), and how to use them to diagnose and debug a production process running in UiPath Studio
NEW QUESTION 47
A developer needs to ensure a UI element with a partially changing attribute can be consistently identified with a Click activity. Which property of the Click activity can support a wildcard?
- A. Element
- B. ClippingRegion
- C. ClickType
- D. Selector
Answer: D
NEW QUESTION 48
What UiPath tool ensures that your project meets high quality and reliability standards?
- A. UI Explorer
- B. Diagnostic Tool
- C. Workflow Analyzer
- D. Test Manager
Answer: C
Explanation:
Workflow Analyzer is a static code analyzer that ensures your project meets high quality and reliability standards. A static code analyzer checks for inconsistencies without actually executing the project, as opposed to dynamic analyzers which step in during execution.
Workflow Analyzer uses a set of rules to check for various inconsistencies unrelated to project execution. The rules are based on Automation Best Practices and take into consideration variable and argument naming, empty sequences or workflows, package restrictions, and so on. The analyzer does not identify errors in execution or compilation.
UiPath Documentation
Exam Topic: Describe the functionality of the Workflow Analyzer and how to create new rules
NEW QUESTION 49
How can you fine tune a selector?
Options are :
- A. Adding all parents
- B. Replacing variable attribute parts with *
- C. Making sure you have an idx attribute
Answer: A,B
NEW QUESTION 50
Review the following exhibit:
Based on the exhibit, what is the result of the Write Line in the sequence?
- A. True
- B. 123True
- C. 0
- D. Hello
Answer: B
NEW QUESTION 51
While automating an installation wizard, a pop-up window may or may not appear. What can you use to close the window without stopping the workflow?
Options are :
- A. Use a Click activity with the ContinueOnError property set to True.
- B. Use a Click activity inside a Try Catch activity.
- C. Use a Click activity and set its TimeoutMS property to 30.
Answer: A,B
NEW QUESTION 52
What type of container will Web Recording generate?
Options are :
- A. No container
- B. Excel Application Scope
- C. Attach Browser
- D. Attach Window
Answer: C
NEW QUESTION 53
When fine-tuning a dynamic selector, how many characters does "*" replace?
- A. Zero or more
- B. Exactly one
- C. More than one
- D. One or more
Answer: A
NEW QUESTION 54
A developer wants to use a Write Cell and Read Range activities to work with an Excel file. The Excel file is protected for any modifications by a password, so unauthorized users can only read dat a. What should be done in order to ensure that the robot is able to write and read data from this file?
- A. Password to this file should be provided in the "Password" property of the Excel Application Scope activity. Password should be provided in a String format.
- B. Password to this file should be provided in the "Edit Password" property and "Password" property of the Excel Application Scope activity. Password should be provided in a String format.
- C. Password to this file should be provided in the "Edit Password" property of the Excel Application Scope activity. Password should be provided in a SecureString format.
- D. Password to this file should be provided in the "Edit Password" property of the Excel Application Scope activity. Password should be provided in a String format.
Answer: D
Explanation:
Edit password property stores the password required for editing password-protected Excel workbooks, if necessary. Only String variables and strings are supported.
While the Password property stores the password required for opening and reading password-protected Excel workbooks, if necessary. Only String variables and strings are supported.
In this case, the file is only password-protected for editing, so unauthorized users can read the file, but not write any data. That means that the password for opening and reading is not required, only for editing. For that reason, only the Edit Password property should be filled in.
NEW QUESTION 55
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 the robot encounters an error on a Queue Item
- B. Each time data is read from external sources
- C. Each time an exception is caught in a Catch block
- D. Every time a variable or argument value is used
Answer: A
NEW QUESTION 56
In this exercise, you will create a UiPath automation that performs the steps below.
To achieve this, you will use the REFrameWork as the starting template and follow the UiPath development best practices.
- A. Here are the steps performed by the Robot:
1. Log in to https://www.acme-test.com.
2. On the landing page, Dashboard, click on the Work items menu item. Scrape the data in all the pages of the table, page by page, ensuring error handling and recovery.
3. For each page: - Filter the records where Status is 'Open';
- Filter the records where Type is 'WI1';
- Filter the records where WIID is greater than 200000;
- Append the resulting datatable into an Excel worksheet, you shouldn't worry about the headers and format of the output file. - B. Constraints to follow in the development, using the REFrameWork:
1.TransactionItem datatype should be a String. The process should recover and retry in case of errors in navigation between WorkItems page. One transaction is the action of scraping one web page.By navigating to the next page, the next transaction will execute. (Same as ACME Process 4 Dispatcher from the UiPath Academy).
2. Create a separate workflow file for the Login to ACME. File input arguments: URL ; Username ; Password .
3. Create a separate workflow file for closing ACME.
4. Add the ACME_URL and ACME_Credential to the Config file.
5. Populate InitAllApplications.xaml from the Framework folder with Invoking the Login to ACME and navigation to the Work Items.
6. Populate CloseAllApplications.xaml from the Framework folder with Invoking the Close ACME.
Answer: B
Explanation:
7. Populate KillAllProcesses.xaml from the Framework folder with killing the process used.
8. Populate the Process.xaml file with the following actions: Web scraping, Filtering and Appending to Excel.
Important Note: Don't use external file references outside of the project folder (including Orchestrator Assets). Place all the used files within the project folder, zip that folder and upload it to the UiPath Certification Platform.
Zip ALL the used workflow files AND the output Excel file. Then upload the .zip file to the UiPath Certification Platform.
Good luck!
ALL THE BEST!
NEW QUESTION 57
A developer executes the following Parallel activity. What is the result of the execution if the Udemy website is launched after 4 seconds, but the UiPath website is never launched?
Please find the Parallel activity below
Please find properties of On Element Appear 'Udemy Logo' below
Please find properties of On Element Appear 'UiPath Logo' below
- A. 1. Message Box "Udemy website got launched"
2. Error is thrown by On Element Appear 'UiPath Logo' - B. 1. Message Box "Udemy website got launched"
- C. 1. Error is thrown by On Element Appear 'Udemy Logo'
- D. 1. Error is thrown by On Element Appear 'UiPath Logo'
Answer: A
Explanation:
As both activities have the same Timeout, the outcome of both will be executed.
So first, Message Box "Udemy website got launched", as the website was launched in 4 seconds, and Timeout is 5 seconds.
Then an error is thrown by On Element Appear 'UiPath Logo', as the website was not launched in 5 seconds.
UiPath Forum
Exam Topic: Describe the use of various Classic UI synchronization activities; for example, ElementExists, FindElement, and FindText
NEW QUESTION 58
If a developer wants to use a variable of type UIElement to identify a button in a Click activity, which property must be manually configured during development?
- A. Element
- B. Selector
- C. ClippingRegion
- D. WaitForReady
Answer: C
NEW QUESTION 59
What activity can you use to get a column value from a specific row of a DataTable?
Options are :
- A. Remove Data
- B. Get Row Item
- C. Row Read Cell
Answer: B
NEW QUESTION 60
A developer has created the following sequence:
The Write Cell activity has the following properties:
What is the behavior of the sequence once executed?
- A. Writes the values in subsequent rows in the UserName datatable
- B. Writes the values in the same row in the Active Users.xlsx Excel file
- C. Writes the values in subsequent rows in the Active Users.xlsx Excel file
- D. Writes the values in the same row in the UserName datatable
Answer: C
NEW QUESTION 61
How should exceptions be handled? Select all the options that apply.
Options are :
- A. By validating data using conditional blocks for business exceptions.
- B. By using Try Catch activities inside the workflow for unexpected application exceptions.
- C. UiPath handles exceptions by default.
Answer: A,B
NEW QUESTION 62
What are the uses of web scraping in UiPath?
Options are :
- A. Extracting lists or other structured data from a web page
- B. Extracting the images from a webpage
- C. Extracting all the information from a web page
- D. Extracting the content of a table from a web page
Answer: A
NEW QUESTION 63
How can you retrieve the value stored in a Queue Item variable?
Options are :
- A. Use the Deserialize Json activity
- B. Use the SpecificContent property
- C. Use the Deserialize Xml activity
Answer: B
NEW QUESTION 64
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 65
......
Get The Important Preparation Guide With UiPath-ARDv1 Dumps: https://www.bootcamppdf.com/UiPath-ARDv1_exam-dumps.html
Get Totally Free Updates on UiPath-ARDv1 Dumps PDF Questions: https://drive.google.com/open?id=1lPHVF1MdBcpGG0LxqQwSo49UQT7qy1nR