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




Comentarios |
---|
NO HAY REGISTROS |
Which activities allow you to iterate through an array of strings?. For Each Row. For Each. While. Do While. Which of these are workflow types available in UiPath Studio. REFramework. Flowchart. Sequence. Activity. In which types of variable can you store text?. Integer. String. Double. Generic. What is the slowest method of reading text?. OCR. Native. Full Text. Which of the following SQL statements can be executed by using the activity called Execute Non Query?. Insert. Update. Select. Delete. Can you store a Selector in a variable?. Yes, in a UiElement variable. Yes, in a String variable. No. Can you run multiple instances of the same process, in parallel?. Yes, on the same robot. No. Yes, on different robots. 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 status does a job have when a schedule is triggered in Orchestrator, but there are no available robots to execute it?. In progress. Pending. New. If a large item collection is processed using For Each, which activity enables you to efficiently exit the loop after a specific moment?. No activity can be used. Instead, you have to create a Boolean variable based on which the For Each loop is broken. The "Break" activity is the most suitable in For Each. A While loop should be used instead of For Each. 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. 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. Check the return value of the Login activity. Which of the following statements are true?. 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. 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. 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 variable. Null. "8 fruits". 8. Error: "Input string was not in a correct format". "3 apples5 mangos". Is it possible to write to a text file without using the Write Text File activity?. No. Yes, using the Invoke Method activity. Yes, with the Invoke Power Shell activity. What robots can be selected when you start a job from Orchestrator?. Any robot provisioned in Orchestrator. Any robot you have access to according to your role permissions. Any robot in the same environment as the process to be executed. What types of assets can be stored in Orchestrator?. Array, Datatable, Bool, String. Bool, String, Integer, Credential. Integer, Password, GenericValue, String. Which of the statuses below can a transaction have?. New. Pending. In progress. Successful. Abandoned. Failed. Retried. Deleted. Which of the following are considered best practices?. Keeping environment settings hard coded inside workflows. Breaking the process into smaller workflows. Reusing workflows across different projects. 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?. Use a Click activity inside a Try Catch activity. Use a Click activity with the ContinueOnError property set to True. Use a Click activity and set its TimeoutMS property to 30. 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. UiPath handles exceptions by default. Which Queue Item properties can be used to control the order in which the items are processed?. Priority. Deadline. Postpone. ItemInformation. In the UiPath Robotic Enterprise Framework template, in the Main workflow, what is the default type of the TransactionItem variable?. String. QueueItem. Object. Which of the scraping methods can get you the hidden text in the element?. All of the above. Native. OCR. FullText. What is Orchestrator used for?. Remotely controlling any number of robots and performing workflow management. Designing workflows to be run by robots in a supervised mode. Designing workflows to be run by robots in an unsupervised mode. Running Windows processes on the local machine. How can you delay the Automatic Recording?. By hitting the Escape key. By right clicking. Not possible. By hitting the F2 key. What are the uses of web scraping in UiPath?. Extracting lists or other structured data from a web page. Extracting all the information from a web page. Extracting the content of a table from a web page. Extracting the images from a webpage. What is an argument?. A variable. An input/output parameter of the workflow. A variable type. 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?. Use the On Element Appear activity and indicate the download pop-up window. Set the WaitForReady property to Complete. Use the Element Exist activity and indicate the download pop-up window. Which is the best way to delete unreferenced variables?. Delete them one by one from the Variables panel. UiPath Studio performs the workflow validation in real time, therefore you can see which variable is being used. The unreferenced variables do not utilise memory, therefore you do not have to delete them. You can manage your variables from the Design panel > Manage Variables > Remove Unreferenced. What recording wizard would you use to automate UI interactions in an application that does not offer support for selectors?. Basic Recording. Citrix Recording. Web Recording. Desktop Recording. 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. It is automatically set to Failed after 24 hours. It is automatically set to Successful after 24 hours. Where can you find the value written by the Write Line activity?. At console. In a variable. In the Output pane. How can you find all anchor elements in a web page?. Using the Find Relative Element Activity. Using the Get Ancestor Activity. Using the Find Element Activity. Using the Find Children Activity. What are the recording profiles are available in UiPath Studio?. Basic, Desktop, Web, and Citrix. Basic and Desktop. Automatic recording and Step-by-Step recording. Click, Check, Type Into, and Select Item. The best way of managing variable values within a workflow, so that they can be shared on different robots and environments is: Using excel config files. Using Json config files. Using assets defined in Orchestrator. In which workflow in the UiPath Robotic Enterprise Framework template is the TransactionNumber global variable incremented by default?. Process workflow. GetTransactionData workflow. SetTransactionStatus workflow. How can you improve a selector?. By using intermediate containers for a better matching of the UI element. By adding the absolute position of the elements to the selector. By replacing the dynamic parts of an attribute with wildcards. Which of the following are required to have efficient execution of automation projects?. Recovery abilities. Effective logging mechanisms. Proper exception handling. Is there any way to hide the execution of one activity in the logs?. Yes, by changing the minLevel property of the "Execution" logger from NLog.config file. No, but the logs can be manually edited. Yes, by checking the Private property of the activity that is to be hidden. Which activity can be used if you want to test whether a condition evaluates to true or false?. Flow Decision activity. If activity. For Each activity. Where can the logging level of a robot be changed from?. Orchestrator, in the Edit Robot section, the Settings tab. The robot settings, which are accessed via the UiPath Robot icon in the System tray. You can not change the logging level. In a Try Catch activity, how many times is the Finally section executed if no error occurs in the Try section?. Once. Zero. The Finally section is executed only when the Catch section is executed. What is the Attach Window activity used for?. To specify the browser container you will be working with. Specifies that you are working with a java window. To specify the top-level window container you will be working with. Which statement about the UiPath Robotic Enterprise Framework template is false?. The framework can be used only if you get the input data from the UiPath server queues. The framework has a robust exception handling scheme and event logging. The framework is meant to be a template that helps the user design processes. What type of Output variable do all Get Mail activities return? (POP3, IMAP, Outlook, Exchange). List. MailMessage. 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?. End Process. Get Transaction Data. Init. When requesting a work item from Orchestrator Queues using the Get Transaction Item activity, you need to specify the following: The name of the Queue and the number of items to be retrieved. The name of the Queue, the number of items, and a filtering expression. The name of the Queue which contains that specific work item. Which activity can you use if you want to loop through a collection of items?. If activity. Assign activity. For Each activity. Flow Decision activity. Which of the following is not one of the activity groups or independent activities in the UiPath.Persistence.Activities Pack?. Jobs. Queues. Tasks. Workflows. For the workflow analyzer, what does the NMG in the rule “ST-NMG-001” represent?. Shows that the rule is part of the Naming Rules category. Shows that the rule is part of the Project Anatomy Rules category. Shows that the rule is part of the Design Best Practices category. Reveals the rule's identifier. A Business Exception describes an error rooted in a technical issue, such as an application that is not responding. False. True. When we enable an SLA, will the association between the process and the queue automatically be made?. Yes. No. If a trigger runs the same process multiple times, the related queued jobs are NOT limited to the number of executions specified when you defined the trigger, on the Execute Target tab. False. True. Which of the following is false about what you can do using the workflow analyzer settings menu?. Change the default action for each rule. Add new rules. Access the documentation page for each rule. Enable and disable rules. Match the definition with the correct type of log: [?] are diagnostic log messages generated by studio, containing information related to its behavior. Studio Logs. Orchestrator Logs. Robot Logs. Setup Logs. You only need the “Try” field completed in order to use the Try Catch activity. False. True. An Application Exception describes an error rooted in the fact that certain data which the automation project depends on is incomplete or missing. False. True. Where will the results of workflow analysis be displayed?. Message Box. Output Panel. Outline Panel. Error List Panel. |