Uipath Certification II
![]() |
![]() |
![]() |
Título del Test:![]() Uipath Certification II Descripción: UIAdvancedRpaDeveloper |




Comentarios |
---|
NO HAY REGISTROS |
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: Get data from UiPath Orchestrator queues with Auto Retry disabled. Get data from spreadsheets, databases, email, web API. Do not work with UiPath Orchestrator queues. What activity can you use to get a column value from a specific row of a DataTable?. Row Read Cell. Get Row Item. Remove Data. What is the safest way to close an application?. By using the Process Name property of the Kill Process Activity. By sending the Alt + F4 hotkeys. By using the Close Application activity. In the UiPath Robotic Enterprise Framework template, in the Main workflow, the State Machine includes the following states: Init state. Set Transaction State. Get transaction data state. End Process State. Process Transaction State. 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. Click Edit Arguments, and then bind the arguments to the local variables or to some default values. Which one of the statements below regarding the GetAppCredentials workflow included in UiPath Robotic Enterprise Framework is true?. It first requests the credential from user. It first tries to fetch a credential from Orchestrator. It first tries to fetch a credential from the Windows Credential Manager. How can you dynamically change parts of a selector?. By using variables to replace the dynamic parts. You cannot have dynamic components in a selector. By adding parameters from the Properties tab. What layout should be used for UI navigation and data processing?. State Machine. Sequence. Flowchart. When should the Simulate Type/Click property be used?. Only when background automation is required. Whenever supported by the target application. Only for testing purposes. How can you fine tune a selector?. Replacing variable attribute parts with *. Adding all parents. Making sure you have an idx attribute. This is a reliable selector for a dynamic web page: webctrl idx='144' tag='IMG'/. True. False. 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. What kind of workflow should you create to define business rules?. Sequence. Flowchart. State machine. What is the best practice to stop an ongoing job in Orchestrator?. By terminating it. By cancelling it and using a Should Stop activity inside the workflow. The process can only stop on its own. 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. How does the Anchor Base activity work?. It searches for an UiElement at a fixed anchor position. It searches for an UiElement using a relative coordinate position. It searches for an UiElement by using another UiElement as anchor. What are the functions of the Outline panel?. It shows the structure of the workflow. It shows the execution result of the workflow. If the Activities are properly named, it can be used to search and select specific Activities used inside the workflow. What is the best way of scraping a large, selectable text in a Citrix environment?. Use a Get Full Text activity. Select the entire text and copy it with the Copy Selected Text activity. Use the Microsoft OCR engine. Use the Google OCR engine. Where can you trigger an unattended robot from?. The UiPath Robot icon in the system tray. UiPath Studio. Remotely, from Orchestrator. How can you provide more details to explain the purpose of the activities in a workflow?. By adding activity Annotations. By using a Comment Out activity. By using the Comment activity. How can you pass data between workflows?. By using arguments. By using variables. By using a pipe. The return value of the Get Transaction Item activity is of the following type: String. List. Object. QueueItem. When should the "Add Log Fields" activity be used?. When a log message with a maximum number of five visible fields needs to be generated. When the standard log message has to be customized by adding new fields to it. When logs need to be enabled. 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?. Application exception. Business rule exception. Success. Which statements are true regarding the Write Line and the Log Message activities?. By using any of them, you generate traces in the Output panel and also in the log files. By using a Log Message activity, you can set different levels of tracing. Write Line is just a Log Message set on Trace. Where should you store the environment settings that are prone to changes?. Directly inside the workflows, as hard coded values. In Orchestrator, as assets. Inside config files (.xml, .json, .xlsx, etc.). What can the UiPath Robotic Enterprise Framework template be used as?. A consumer of a queue in Orchestrator. A complete library for front office robots. The starting point for every automation project. Which is the best way to navigate to a specific page in a web browser?. Use the Type Into activity inside an Attach Browser container. Use the Navigate To activity inside an Attach Browser container. Use a Type Into activity with a full selector. Which of the following are considered best practices?. Include a Should Stop activity at the end of the workflow. Think about the exceptions that might occur during the execution of the process. Start your new sequence with a short annotation meant to explain the purpose of the workflow. What is the robot able to do when the Full Text scraping method is used?. Get the entire visible text. Get font Information (Size color). Get editable text. Get hidden information. Which of the following are considered best practices?. Deleting disabled code. Removing unreferenced variables. Leaving target applications opened. How should a UiPath developer handle frequent changes in the project files?. Old versions of the project files are not relevant. By creating daily backups of the files. By using a source control solution, such as SVN, TFS, etc. In UiPath Robotic Enterprise Framework, what are the transitions of the Init state?. In the case of Success, the transition is to the Process Transaction state. In the case of System Error, the transition is to the End Process 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 Init state. What happens when a new version of a package is published?. The old version of the package is overwritten. The processes have to be updated in order for the robots to run the latest version of the package. The processes using the package are automatically updated to the latest version. 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. How can you identify a column in a DataTable?. By using the column index. By using the row index. By using the column default value. By using the column name. Which activity provides the easiest way to loop through all the rows in a DataTable?. Repeat Until. For Each Row. For Each. Do While. While. "Add Assets" in Orchestrator has the following option: Value Per Robot. Value Per Process. Single Value. Value Per Environment. When should an Attended Robot be used?. When a workflow needs to be modified and corrected. When the process might be interrupted by exceptions and errors. When the processing of some input data relies on human decision. What happens if the ClickBeforeTyping property in a Type Into activity is selected?. Before typing, a click is performed at the current mouse position. Before typing, a click is performed on the top left corner of the UiElement. Before typing, a click is performed at the center of the UiElement. Which is considered to be one of the best practices regarding the process finalization?. Leave the used applications open so that person can Inspect me result. Leave the application In its initial state, so that we can execute the process again. Restart the machine so that any potential problem can be fixed. The String.Format("Input = {0} and Output = {0}", "1","2") expression returns the following: An error. Input = 1 and Output = 1. Input = {1} and Output = {2}. Input = {0} and Output = {0}. Input = 1 and Output = 2. How can you retrieve the value stored in a Queue Item variable?. Use the Deserialize Xml activity. Use the Deserialize Json activity. Use the SpecificContent property. How can a string variable called myString be converted to an all-capitals representation for future use?. By using a Write Line with the Text property set to myString.ToUpper. By using an Assign activity with myString on the left side and myString.ToUpper on the right side. When is it recommended to use Desktop recording?. When you automate Citrix Applications. When you automate more steps in the same window. When you automate one step. When you automate Web pages. Scheduling a process is done from: Orchestrator Server. Not Possible. UiPath Studio. UiPath Robot. Which of the following statements is true regarding Lists and Arrays?. You can add any number of elements to an array. You can iterate through a List using a For Each loop activity. List items can be added using an Add to Collection activity. Array and List elements can be accessed by index. What type of container will Web Recording generate?. No container. Attach Browser. Attach Window. Excel Application Scope. The String.Format("Input = {0} and Output = {1}", "1","2") expression returns the following text: Input = 0 and Output = 0. Input = 1 and Output = 2. Input = 1 and Output = 1. Input = {0} and Output = {1}. Match the definition with the correct term: [?] track events related to installing UiPath Studio. When running the windows installer (UiPathStudio.msi), all errors are logged in the Event Viewer. Studio Logs. Setup Logs. Robot Logs. Orchestrator Logs. Which of the following is false about when we should use the Invoke Method?. When we have a class library/DLL in vb.net or c# and want to call that method. When we want to use a method which does not generate an output (for example, Reverse) and therefore cannot be used in an Assign activity. When the logic is complex and would take several activities to perform an action that could be completed in a single Invoke Method activity. When we want to use a method which generates several pieces of output (for example, TryParse which generates a Boolean and an Int32). Several values cannot be assigned using an Assign activity. How can you figure out whether a method for Invoking is Static or an Instance Method?. Trial and Error. Plug and Chug. MSDN Website. The Method changes based on the circumstances of the activity being used. Which input method(s) can be used to type into a field that is in a window that is hidden or minimized?. SimulateType. SimulateType and SendWindowsMessages. SendWindowsMessages. SimulateType and SendWindowsMessages and Hardware Driver Default. If you are working on a project in TFS with other developers and you want to make sure that you have the latest version from the server on your computer, what TFS command do you use?. Pull (rebase). Checkout and Push. Get Latest Version. Track Changes. The Unique Reference Field in Orchestrator can be set to Yes or No to indicate whether the transaction reference should be treated as unique or not. True. False. What is the main difference between full selectors and partial selectors?. Full selectors include information about the top-level window. Partial selectors include information about the top-level window. Full selectors are recommended when performing multiple actions within the same window. Partial selectors are recommended when performing multiple actions across multiple windows. What happens if a workflow does not have the Set Transaction Status correctly configured?. After 24hrs all the transactions are set to abandoned. After 24hrs all the transactions are set to failed. After 24hrs all the transactions are set to completed. After 24hrs all the transactions are set to pending. Which activity can obtain unread emails with a specific subject line from a mail server?. Get POP3 Mail Messages. Get IMAP Mail Messages. Get Exchange Mail Messages. Get Outlook Mail Messages. You are invoking a workflow file called WorkflowFile2.xaml from WorkflowFile1.xaml The Import Arguments Panel of the Invoke Workflow File activity has an “in” argument named “in_Message” with a value of “Hello.” The Arguments Panel of the WorkflowFile2.xaml has an “in” argument named “in_Message” with a value of “Bye.” Within the WorkflowFile2.xaml there is a Write Line activity which prints the value of the argument “in_Message” What is displayed in the output panel when you execute the WorkflowFile1.xaml?. Bye. Hello. A system.execution error is thrown. An system.argument error is throw. What is the best way of restricting the access of a person to a limited number of pages in Orchestrator?. By changing the rights of the Administrator to the desired state. By creating a different account and role for that person. When creating a new role, restrictions can be applied. That option does not exist. Everyone is able to see everything. |