Created
May 24, 2020 09:51
-
-
Save sudikrt/b7fcd53339acdab0899275983362c18f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Where can the logging level of a robot be changed from? | |
* 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 happens if you try to end the execution of a job by clicking the Stop/Cancel button in UiPath Orchestrator? | |
* The execution process is killed. | |
* The execution is not impacted if no Should Stop activity has been included in the workflow in Studio. | |
* The job state is changed to Canceled/Stopped, even if no Should Stop activity was used. | |
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? | |
* Success | |
* Business rule exception | |
* Application exception | |
Which Queue Item properties can be used to control the order in which the items are processed? | |
* ItemInformation | |
* Priority | |
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? | |
* Add Queue Item | |
* Get Transaction Item | |
* Add Transaction Item | |
In the UiPath Robotic Enterprise Framework template, in the Main workflow, the State Machine includes the following states: | |
* Init stat (ALL) | |
* Get transaction data state | |
* Process Transaction State | |
* Set Transaction State | |
* End Process State | |
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? | |
* We check if the previous transaction has been completed | |
* We check if a kill signal was sent from Orchestrator | |
* We check if a stop signal was sent from Orchestrator | |
In the UiPath Robotic Enterprise Framework template, to enable the retry mechanism without using Queues, what should the value of MaxRetryNumber be set to? | |
* 0 — | |
* Any value greater than 0 | |
* Any value greater than 2 | |
Why is renaming activities considered to be one of the best practices? | |
* In case of an exception, to be able to find its source activity | |
* To be able to understand the process logic without expanding each sequence or invoked workflow. | |
* To easily understand the high-level business logic from a workflow. | |
What is the robot able to do when the Full Text scraping method is used? | |
* Get font information (size, colour). | |
* Get hidden information. | |
* Get editable text. | |
* Get the entire visible text. | |
Which statements are true regarding the Write Line and the Log Message activities? | |
* 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. | |
How can a robot start an application in Citrix? | |
* By using a command line. | |
* By double clicking on a Desktop icon. | |
* By using an Open Application activity. | |
* By defining a shortcut key for the application and then triggering the app with a Send Hotkey activity. | |
What happens if you try to end the execution of a job by clicking the Kill/Terminate button in Uipath Orchestrator? | |
* The execution process is killed. | |
* The execution is not impacted if no Should Stop activity has been included in the workflow in Studio. | |
* The job state is changed to Canceled/Stopped, even if no Should Stop activity was used. | |
One of the actions below is not required when starting processes with UiPath Orchestrator. | |
* Registering robots to Orchestrator | |
* Publishing projects from UiPath Studio | |
* Creating an environment containing the robot | |
* Creating a queue in Orchestrator | |
* Creating a process with the published package and environment | |
* Starting a job, which is the execution of the process | |
Submit | |
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? | |
* We check if the previous transaction has been completed | |
* We check if a kill signal was sent from Orchestrator | |
* We check if a stop signal was sent from Orchestrator | |
Which of the following statements are true? Select all the options that apply. | |
* You cannot use a recorder in a Citrix environment | |
* The recorder is used to create a skeleton for the UI automation | |
* The Desktop recorder generates partial selectors | |
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? | |
* The process executes the End Process state. — | |
* 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. —— | |
What is the safest way to close an application? | |
* By sending the Alt + F4 hotkeys — | |
* By using the Close Application activity | |
* By using the Process Name property of the Kill Process Activity | |
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? | |
* Get Transaction Data | |
* Init | |
* End Process — | |
In the UiPath Robotic Enterprise Framework template, where can the GetAppCredentials workflow retrieve credentials from? | |
* Orchestrator Asset — | |
* Windows Credential M anager —— | |
* User Dialog | |
In the UiPath Robotic Enterprise Framework template, in the Main workflow, what is the default type of the TransactionItem variable | |
QueueItem | |
Which statement about the UiPath Robotic Enterprise Framework template is false? | |
* The framework is meant to be a template that helps the user design processes . | |
* The framework can be used only if you get the input data from the UiPath server queues. (Answer) | |
* The framework has a robust exception handling scheme and event logging. | |
Which of the following are considered best practices? Select all the options that apply. | |
* Breaking the process into smaller workflows. | |
* Reusing workflows across different projects. | |
Which is the best way to navigate to a specific page in a web browser? | |
* Use the Navigate To activity inside an Attach Browser container | |
When should the Simulate Type/Click property be used? | |
* Whenever supported by the target application | |
Which one of the statements below regarding the GetAppCredentials workflow included in UiPath Robotic Enterprise Framework is true? | |
* It first tries to fetch a credential from Orchestrator. | |
Where should you store the environment settings that are prone to changes? | |
* In Orchestrator, as assets | |
* Inside config files (.xml, .json, .xlsx, etc.) | |
How can you retrieve the value stored in a Queue Item variable? | |
* Use the SpecificContent property | |
How should exceptions be handled? Select all the options that apply. | |
* By using Try Catch activities inside the workflow for unexpected application exceptions. | |
* By validating data using conditional blocks for business exceptions. | |
What is the best practice to stop an ongoing job in Orchestrator? | |
By cancelling it and using a Should Stop activity inside the workflow. | |
What is the best way of restricting the access of a person to a limited number of pages in Orchestrator? | |
* By creating a different account and role for that person. When creating a new role, restrictions can be applied. | |
Where can you trigger an unattended robot from? Select all the options that apply. | |
* The UiPath Robot icon in the system tray | |
* Remotely, from Orchestrator | |
Is it possible to retrieve the color of a specific Excel cell? | |
* Yes, by using Get Cell Color | |
Which of the following SQL statements can be executed by using the activity called Execute Non Query? | |
* Insert | |
* Update | |
* Delete | |
At the end of the execution of Workflow1, which retrieves some items from a database, is the database connection closed automatically? The connection has to be closed using a Disconnect activity. | |
Which of the following technologies can be used for background automation? | |
* The Click activity with the Simulate Click flag checked. | |
* Data Scraping. | |
* The Full Text method of Screen Scraping. | |
* Type into activity with SendWindowMessages flag checked. | |
After adding an Invoke Workflow File activity and selecting the workflow to invoke, you need to: | |
* Click Import Arguments, and then bind the arguments to the local variables or to some default values | |
The best way of managing variable values within a workflow, so that they can be shared on different robots and environments is: | |
* Using assets defined in Orchestrator. | |
What happens when a new version of a package is published? | |
* The processes have to be updated in order for the robots to run the latest version of the package | |
What do the Items in the Orchestrator queues consist of? Select all the options that apply. | |
* Input data for the processes executed by the robots | |
What happens if the result of a transaction is not set? | |
* The status is “In Progress” for 24 hours, and then it switches to Abandoned | |
How can a process be executed on three different robots? | |
* By creating a job and selecting all three robots | |
* By scheduling the process and adjusting the settings in the Execution Target tab accordingly | |
Which of the statuses below can a transaction have? Select all the options that apply. | |
* New | |
* In progress | |
* Successful | |
* Abandoned | |
* Failed | |
* Retried | |
* Deleted | |
What robot state is displayed on the Robots page while a job is being executed? | |
* Busy | |
How can you identify a column in a DataTable? | |
* By using the column name. | |
* By using the column index. | |
Is there any way to hide the execution of one activity in the logs? | |
* Yes, by checking the Private property of the activity that is to be hidden. | |
Which of the following are considered best practices? | |
* Removing unreferenced variables. | |
* Deleting disabled code. | |
In which workflow in the UiPath Robotic Enterprise Framework template is the retry mechanism implemented? | |
* The SetTransactionStatus workflow | |
How should a UiPath developer handle frequent changes in the project files? | |
* By using a source control solution, such as SVN, TFS, etc. | |
In the UiPath Robotic Enterprise Framework template, in the Main workflow, what is the default type of the TransactionItem variable? | |
* QueueItem | |
In UiPath Robotic Enterprise Framework, what are the transitions of the Init state? | |
* In the case of Success, the transition is to the Get Transaction Data state. | |
* In the case of System Error, the transition is to the End Process state. | |
What is the best way to select a row with a certain value from a column in Excel? | |
Use a Read Range Activity to retrieve the contents of the Excel file, and then use a Select method to identify the desired row. | |
One of the steps in your process is to authenticate on a web application. How can you check if the login succeeded or not? | |
* Place the login activities inside a Try-Catch block. An exception is thrown in case a login problem occurs. | |
* Use an Element Exist activity to check whether the login succeeded by searching for an element that is only displayed in that case. | |
What can the UiPath Robotic Enterprise Framework template be used as? | |
* The starting point for every automation project | |
In which workflow in the UiPath Robotic Enterprise Framework template is the TransactionNumber global variable incremented by default? | |
* SetTransactionStatus workflow | |
What robots can be selected when you start a job from Orchestrator? | |
* Any robot in the same environment as the process to be executed. | |
When should an Attended Robot be used? Select the option that applies. | |
* When the processing of some input data relies on human decision. | |
The return value of the Get Transaction Item activity is of the following type: QueueItem | |
What happens in the Init state of the Main workflow, in the UiPath Robotic Enterprise Framework template? | |
* The robot reads the configuration file and initializes all the required applications. | |
In a Try Catch activity, how many times is the Finally section executed if no error occurs in the Try section? | |
* Once | |
What is the best way of scraping a large, selectable text in a Citrix environment? | |
* Select the entire text and copy it with the Copy Selected Text activity. | |
Where should credentials be stored? Select all the options that apply. | |
* In Windows Credential Store. | |
* In Orchestrator, as assets. | |
What status does a job have when a schedule is triggered in Orchestrator, but there are no available robots to execute it? Pending | |
What robots can be selected when you start a job from Orchestrator? | |
* Any robot in the same environment as the process to be executed. | |
Where can you trigger an unattended robot from? Select all the options that apply. | |
* The UiPath Robot icon in the system tray | |
* Remotely, from Orchestrator | |
When should the “Add Log Fields” activity be used? | |
* When the standard log message has to be customized by adding new fields to it | |
What happens if the result of a transaction is not set? | |
* The status is “In Progress” for 24 hours, and then it switches to Abandoned |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment