
https://certificate.uipath.com
What is the safest way to close an application?
Ans : – By using the Close Application activity
Which of the following types of variables can be defined in UiPath Studio?
Ans : – GenericValue.– DataTable
Which activity provides the easiest way to loop through all the rows in a DataTable?
Ans : – For Each Row
Which emails are deleted if you use Get IMAP Mail Messages with the DeleteMessages property set to true?
Ans : – The ones in the list that is retrieved by the Get IMAP Mail Messages activity.
What is the robot able to do when the Full Text scraping method is used?
Ans : – Get hidden information.- Get editable text.- Get the entire visible text.
Can you store a Selector in a variable?
Ans : – Yes, in a String variable.
Where can the logging level of a robot be changed from?
Ans : – The robot settings, which are accessed via the UiPath Robot icon in the System tray.– Orchestrator, in the Edit Robot section, the Settings tab.
What do the Items in the Orchestrator queues consist of? Select all the options that apply.
Ans : – Input data for the processes executed by the robots
Is it possible to reprocess a transaction in a Queue after its failure due to an application exception?
Ans : – Yes, if the Auto-Retry property of the Queue is enabled.– Yes, it can be retried manually on the Transactions page.
Which of the statuses below can a transaction have? Select all the options that apply.
Ans : – New– In progress– Successful– Abandoned– Failed– Retried– Deleted
How can a process be executed on three different robots?
Ans : – By creating a job and selecting all three robots– By scheduling the process and adjusting the settings in the Execution Target tab accordingly
What is the best way of restricting the access of a person to a limited number of pages in Orchestrator?
Ans : – By creating a different account and role for that person. When creating a new role, restrictions can be applied.
When should an Attended Robot be used? Select the option that applies.
Ans : – When the processing of some input data relies on human decision.
This is a reliable selector for a dynamic web page: webctrl idx=’144′ tag=’IMG’/
Ans : – False
In the UiPath Robotic Enterprise Framework template, if a System Error is encountered in the Init state of the Main workflow, which state is executed next?
Ans : – End Process
What is the difference between a Click activity whose SimulateClick property is checked and another one with the same property unchecked?
Ans : – The activity with the SimulateClick flag unchecked moves the mouse cursor over the target element, while the one with the flag set does not move the mouse cursor.
How can you pass data between workflows?
Ans : – By using arguments.
What can the UiPath Robotic Enterprise Framework template be used as?
Ans : – The starting point for every automation project
In the UiPath Robotic Enterprise Framework template, to enable the retry mechanism without using Queues, what should the value of MaxRetryNumber be set to?
Ans : – Any value greater than 0
Which of the following are considered best practices? Select all the options that apply.
Ans : – Breaking the process into smaller workflows.– Reusing workflows across different projects.
In a Try Catch activity, how many times is the Finally section executed if no error occurs in the Try section?
Ans : – Once
Which of the following are considered best practices?
Ans : – Start your new sequence with a short annotation meant to explain the purpose of the workflow.– Think about the exceptions that might occur during the execution of the process.
One of the steps in your process is to authenticate on a web application. How can you check if the login succeeded or not?
Ans : – Use an Element Exist activity to check whether the login succeeded by searching for an element that is only displayed in that case.
What are the functions of the Outline panel?
Ans : – It shows the structure of the workflow– If the Activities are properly named, it can be used to search and select specific Activities used inside the workflow
In the UiPath Robotic Enterprise Framework template, in the Main workflow, what is the default type of the TransactionItem variable?
Ans : – QueueItem
Which of the following SQL statements can be executed by using the activity called Execute Non Query?
Ans : – Insert– Update– Delete
Which statements are true regarding the Write Line and the Log Message activities?
Ans : – By using a Log Message activity, you can set different levels of tracing.– Write Line is just a Log Message set on Trace.– By using any of them, you generate traces in the Output panel and also in the log files.
Where can we see the logs generated by running robots?
Ans : – In the Output panel.– In the local Logs folder.– In the Orchestrator logs.
At the end of the execution of Workflow1, which retrieves some items from a database, is the database connection closed automatically?
Ans : – The connection has to be closed using a Disconnect activity.
You need to collect employees data and send it by email as an Excel file. What type of workflow is the most suitable for the final part, which adds the file attachment, formats the email, and sends it?
Ans : – Sequence
Consider three GenericValue variables, var1 with the default value of “3 apples”, var2 with the default value of “5 mangos”, and the result, which is the output of an Assign Activity with the var1 + var2 expression. What is the value of the resulting var
Ans : – “3 apples5 mangos”
What happens if you try to end the execution of a job by clicking the Stop/Cancel button in UiPath Orchestrator?
Ans : – The execution is not impacted if no Should Stop activity has been included in the workflow in Studio.
The best way of managing variable values within a workflow, so that they can be shared on different robots and environments is:
Ans : – Using assets defined in Orchestrator.
What status does a job have when a schedule is triggered in Orchestrator, but there are no available robots to execute it?
Ans : – Pending
What robots can be selected when you start a job from Orchestrator?
Ans : – Any robot in the same environment as the process to be executed.
What is Orchestrator used for?
Ans : – Remotely controlling any number of robots and performing workflow management.
What is the best practice to stop an ongoing job in Orchestrator?
Ans : – By cancelling it and using a Should Stop activity inside the workflow.
What happens when a new version of a package is published?
Ans : – The processes have to be updated in order for the robots to run the latest version of the package
What is the relation between environments and provisioned robots?
Ans : – One robot can be assigned to multiple environments.- An environment can contain multiple robots.
If a large item collection is processed using For Each, which activity enables you to efficiently exit the loop after a specific moment?
Ans : – The “Break” activity is the most suitable in For Each
What is the best way of scraping a large, selectable text in a Citrix environment?
Ans : – Select the entire text and copy it with the Copy Selected Text activity.
24.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?
Ans : – Use a Click activity inside a Try Catch activity.- Use a Click activity with the ContinueOnError property set to True.
In the UiPath Robotic Enterprise Framework template, in the Main workflow, what is the default type of the TransactionItem variable?
Ans : – QueueItem
Which Queue Item properties can be used to control the order in which the items are processed?
Ans : – Priority– Deadline– Postpone
In the UiPath Robotic Enterprise Framework template, what should be the outcome of the Process Transaction state of the Main workflow when the application loops back to the Get Transaction Item state?
Ans : – Success- Business rule exception- Application exception
What can the UiPath Robotic Enterprise Framework template be used as?
Ans : – The starting point for every automation project
You want to build a Dispatcher process to populate an Orchestrator Queue for parallel processing on multiple robots. Which activity should you use to add a queue item for each work item?
Ans : – Add Queue Item
When should the Simulate Type/Click property be used?
Ans : – Whenever supported by the target application
How should a UiPath developer handle frequent changes in the project files?
Ans : – By using a source control solution, such as SVN, TFS, etc.
Which one of the statements below regarding the GetAppCredentials workflow included in UiPath Robotic Enterprise Framework is true?
Ans : – It first tries to fetch a credential from Orchestrator.
The return value of the Get Transaction Item activity is of the following type:
Ans : – QueueItem
Which is the best way to navigate to a specific page in a web browser?Ans : – Use the Navigate To activity inside an Attach Browser container
Downloading a report from a web application takes a variable amount of time, but a pop-up window is shown when the download is finished. What should you do to check whether the file has been fully downloaded before continuing the process?
Ans : – Use the On Element Appear activity and indicate the download pop-up window
In the UiPath Robotic Enterprise Framework template, if a System Error is encountered in the Process Transaction state of the Main workflow, which state is executed next?
Ans : – Get Transaction Data
In the UiPath Robotic Enterprise Framework template, what happens if the processing of a transaction item fails with an Application Exception or a System Error?
Ans : – All used applications are closed and then re-initialized.- The execution of the transaction item is retried if the MaxRetryNumber config value is greater than 0.
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:
Ans : – Get data from spreadsheets, databases, email, web API.– Do not work with UiPath Orchestrator queues.
In which workflow in the UiPath Robotic Enterprise Framework template is the retry mechanism implemented?
Ans : – The SetTransactionStatus workflow
Which is considered to be one of the best practices regarding the process finalization?
Ans : – Leave the application in its initial state, so that we can execute the process again
What type of Output variable do all Get Mail activities return? (POP3, IMAP, Outlook, Exchange)
Ans : – List <MailMessage>
Is it possible to write to a text file without using the Write Text File activity?
Ans : – Yes, using the Invoke Method activity– Yes, with the Invoke Power Shell activity
What is the purpose of the WaitForReady property in any UiAutomation activity?
Ans : – Before performing the actions, waits for the target to become ready.
How can you identify a column in a DataTable?
Ans : – By using the column name.– By using the column index.
What type of argument can you define to pass data and retrieve the modified value from an invoked workflow?
Ans : – in\out
Which of the following statements related to Orchestrator are true?
Ans : – Robots can be assigned to multiple environments.– A robot can execute many different jobs one after the other.
“Add Assets” in Orchestrator has the following option:
Ans : – Value Per Robot– Single Value
What robot state is displayed on the Robots page while a job is being executed?
Ans : – Busy
Where can you trigger an unattended robot from? Select all the options that apply.
Ans : – The UiPath Robot icon in the system tray– Remotely, from Orchestrator
How can you improve a selector?
Ans : – By replacing the dynamic parts of an attribute with wildcards.– By using intermediate containers for a better matching of the UI element.
How can you retrieve the value stored in a Queue Item variable?
Ans : – Use the SpecificContent property
What layout should be used for UI navigation and data processing?
Ans : – Sequence
How should exceptions be handled? Select all the options that apply.
Ans : – By using Try Catch activities inside the workflow for unexpected application exceptions.– By validating data using conditional blocks for business exceptions.
What happens in the Init state of the Main workflow, in the UiPath Robotic Enterprise Framework template?
Ans : – The robot reads the configuration file and initializes all the required applications.
Which of the following are considered best practices?
Ans : – Removing unreferenced variables. – Deleting disabled code.
In the UiPath Robotic Enterprise Framework template, in the Main workflow, the State Machine includes the following states:
Ans : – Init state– Get transaction data state– Process Transaction State– End Process State
In the UiPath Robotic Enterprise Framework template, where can the GetAppCredentials workflow retrieve credentials from?
Ans : – Orchestrator Asset– Windows Credential Manager– User dialog
In the UiPath Robotic Enterprise Framework template, in the Get Transaction Data state of the Main workflow, what happens before the next transaction item is retrieved?
Ans : – We check if a stop signal was sent from Orchestrator
Which statement about the UiPath Robotic Enterprise Framework template is false?
Ans : – The framework can be used only if you get the input data from the UiPath server queues.
Which of the following are required to have efficient execution of automation projects?
Ans : – Proper exception handling– Recovery abilities– Effective logging mechanisms
Where should credentials be stored? Select all the options that apply.
Ans : – In Windows Credential Store.– In Orchestrator, as assets.
Which of the following statements are true? Select all the options that apply.
Ans : – The recorder is used to create a skeleton for the UI automation– The Desktop recorder generates partial selectors