option
Cuestiones
ayuda
daypo
buscar.php

Uipath Associate Certification - 3

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
Uipath Associate Certification - 3

Descripción:
54 preguntas Examen Certificacion Uipath Associate

Fecha de Creación: 2025/04/02

Categoría: Otros

Número Preguntas: 54

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

The Get Transaction Data state can work with data ______________. A. from queues only. B. None of the listed options. C. from both queues and collections. D. from collections only.

Which of the following statements are true regarding the Find Element activity?. A. It throws an exception if it doesn't find the element on screen. B. It returns a Boolean(True or False) specifying if the element was found on screen. C. All the listed options. D. It returns the found element in a variable for later use.

What activity can you use to read an entire sheet from an entire excel file?. a) Get Value. b) Read Cell. c) Read Range.

Manager has assigned a task to replace the last four digits of an invoice number with a specific string 1999. The string variable being focused on is invoiceNumber = "INV 1973“. Which of the following expressions would achieve this?. A. InvoiceNumber.Replace(1,6, "1999). B. Replace.InvoiceNumber("1999", "1973"). C. Replace.InvoiceNumber(6, "1999"). D. InvoiceNumber.Replace("1973", "1999").

If a large item collection is processed using For Each,which activity enables you to efficiently exit the loop after a specific moment?. a) The "Break" activity is the most suitable in For Each. b) A While loop should be used For Each. c) No activity can be used. Instead, you have to try create a Boolean variable based on which the For Each loop is broken.

What type of Output variable do all Get Mail activities return? (POP3,IMAP,Outlook,Exchange). a) List. b) MailMessage.

Where can you see the activities that make up the workflow?. a) In the activities pane. b) In the workspace pane. c) In the outline pane.

What value will the following expression return? String.Format("{1} is {0}", "home", " Björn", "far away", 0, 1). A. "Home is far away". B. "Björn is far away". C. "1 is 0". D. "Björn is home“.

A Bot developer is working with a typical database of employees of a group in the company you work at. The data organized naturally in an .xlsx file. Which of the following worksheet elements would be used for the “All the data of one employee.” content?. A. Workbook. B. Column. C. Cell. D. Row.

What is the best way to select a row with a certain value form a column in Excel?. a) Use a Read Range activity to retrieve the contents of the Excel file, and then use a For Each activity loop to iterate through the data and identify the element. b) Use the Find functionality from Excel. c) Use a Read Range Activity to retrieve the contents of the Excel file ,and then use a Select method to identify the desired row.

A Bot developer is working on a project and have been tasked with finding a way to loop through all the rows of a data table. Which is the best choice to do so?. A. For Each Row. B. Join Data Tables. C. While. D. For Each.

Which of the below is a Native screen scraping method feature?. A. Extracts Hidden Text. B. Extracts Text Position. C. Supports Citrix. D. Runs in the Background.

Can you run the robot manually, step by step, in order to analyze the robot behavior in a certain condition?. a) Yes, by using a breakpoint and running the workflow in debug mode. b) Yes, by running the workflow in debug mode. c) Yes, by using step into step over. d) No, you can not do it.

Which one is the best workflow type for the mentioned statement? "We have a workflow with successive decision points. Based on the input data and the verifications made, it may have 5 possible outcomes.". A. Flowchart. B. Sequence. C. State Machine. D. Collection Flow. E. Control Flow.

How to create a new variable in UiPath Studio?. A. Press Ctrl+K in an activity input field that requires a variable. B. Select the Create new Variable option in the Variables panel. C. Press Ctrl+Shift+K in an activity input field that requires a variable. D. Press Ctrl+K in an input field that requires a variable in the Properties panel. E. Press Ctrl+Shift+K in an input field that requires a variable in the Properties panel.

What is the maximum number of catches you can have in a Try/Catch block?. A. 1. B. There is no limit on the number of catches. C. 2. D. 5. E. 3.

What is an Environment in Orchestrator?. A. None of the listed options. B. A cluster of Workflows defined in Orchestrator. C. Each instance of Orchestrator is an Environment. D. A group of Machines defined in Orchestrator.

What is the best practice to stop an ongoing job in Orchestrator?. a) By cancelling it and using a Should Stop activity inside the workflow. b) The process can only stop on its own. c) By terminating it.

A Bot developer is viewing the Activities panel but the PDF activities are not registering. How Bot developers corrected the issue?. A. By installing them using the Manage Packages feature. B. None of the listed options. C. Reboot, they should be there. D. By finding them in the Library tab. E. By going to the Output panel.

Which of the following fields can be configured in StudioX using the properties of the Send Outlook Message action?. a) Attachments. b) Subject. c) Email recipients. d) Email sender's address.

Review the following Business scenarios: • Storing the computer names of the members of a project team for a certain configuration that needs to be made • Collecting and storing the numbers of invoices that meet certain criteria • Keeping track of the ticket numbers created in a certain period on a certain issue Which of the data structures is best suited for this application?. A. Strings. B. RegEx. C. Arrays. D. Lists. E. Collections.

Which of the following technologies can be used for background automation?. a) The Full Text method of Screen Scraping. b) Type into activity with Send Window Messages flag checked. c) Data scraping. d) The Click activity with the Simulate Click flag checked.

Which panel displays the results of the Log Message or Write Line activities?. a) Activities. b) Properties. c) Output. d) Project. e) Outline.

Consider an Int32 variable (counter), initially assigned with the value 10. The value decreases by 1 everytime a sequence is executed in a Do While activity. How many times will the sequence be executed if the expression in the Condition filed of the Do While activity is V>0?. a) 9. b) 11. c) 10. d) Indefinitely.

Which of the following criteria can be considered breakdown criteria for splitting large workflows? (Select all that apply). A. The data types used. B. The application that is being automated. C. Each workflow's length. D. The length of timeout properties. E. An operation's purpose (login, processing, reading a document using OCR, filling in a template, and so on).

What is the function of the circled item?. A. Used to stop the process so temporarily as a “pause” button. B. Used to purposely pause the debugging process on an activity which may trigger execution issues. C. Used to find the area of a workflow which has a broken link in the process designed. D. Used to make a fixed stop in a workflow so another workflow can be introduced.

A Bot developer is working on a UiPath robot process. The current date is April 21, 2020 and the Queue items properties are shown below: Select the execution sequence that the robot will follow. A. Ref1 → Ref3 → Ref2 → Ref4. B. Ref3 → Ref1 → Ref2 → Ref4. C. Ref4 → Ref3 → Ref1 → Ref2. D. Ref3 → Ref1 → Ref4 → Ref2. E. Ref1 → Ref4 → Ref2 → Ref3.

What happens when you click an activity or container in the Call Stack panel?. 1. Nothing. 2. It starts execution from that activity or container. 3. You focus on it. 4. None of the listed options.

A Bot developer has created multiple exception types in the Catch block and an exception has occurred which fits more than one type. Which block will execute?. 1. The block with most generic match. 2. All matching blocks in the order they are defined. 3. The first match defined. 4. The block with most specific match.

How can a process in Orchestrator be executed? (Select all that apply). 1. Immediately, from the Robot tray, if the package is allocated to the Robot (or Environment). 2. Immediately, from Orchestrator, by starting a Job. 3. In a planned way, from Orchestrator, by creating a Schedule. 4. None of the listed options.

A Bot developer has been tasked with extracting specific information from several native PDF files. All of them have a consistent structure. Which of the below activities should developer use?. A. Get Text. B. There is no activity for this. C. Read PDF with OCR. D. Get Text with OCR.

When working with the Show Changes option, it's good to know that it works at the ______ level. A. Project. B. Workflow File. C. Pending. D. Commit.

Select the term which is best described by: “Defines what kind of data can be stored in the variable.”. A. Scope. B. Name. C. Default Value. D. Type.

Which is the best workflow type for the following problem statement? "We are developing a workflow that will be integrated in a bigger project. It consists of logging in to an ERP application using secure credentials, downloading all the invoices that were validated in the previous day and transferring them.". A. Sequence. B. State Machine. C. Collection Flow. D. Control Flow. E. Flowchart.

Flowcharts can be used in a variety of settings, from large jobs to small projects that you can reuse in other projects. Which of the below is the most important aspect of a flowchart?. A. Determines the project's behaviour when encountering an execution error. B. Provides a condition to facilitate the transition from one state to another. C. Provides the ability to seamlessly go from one activity to another and act as a single Block activity for linear processes. D. Enables the creation of complex business processes and connect activities in multiple ways by branching multiple logical operators.

A Bot developer is working as a developer at a company and each moth need to download a report. He decide to loop over the months using a “For Each” activity. Which data type is best-suited to hold the values of the names of the months?. A. GenericValue. B. List (Of String). C. Dictionary. D. String. E. String[] – Array for String.

Which activities can be used to interact with the user?. a) Writeline. b) Messagebox. c) Input Dialog.

UiPath offers a broad range of activities that can be used to work with DataTable variables. Which of the following activities can be used to write the content of a DataTable into a String?. A. Clear Data Table. B. Build Data Table. C. Generate Data Table. D. Render Data Table. E. Output Data Table.

A Bot developer is working with a typical database of employees of a group in the company. The data organized naturally in an .xlsx file. Which of the following worksheet elements would be used for the “All the data of all the employees of one company in the group” content?. A. Row. B. Workbook. C. Cell. D. Column. E. Worksheet.

After adding an Invoke Workflow File activity and selecting the workflow to invoke, you need to: a) Click Import Arguments, and then bind the arguments to the local variables or to some default values. b) Click Edit Arguments, and then bind the arguments to the local variables or to some default values.

A Bot developer is fine-tuning a Selector in your workflow automation and using the “*” as a wildcard. What is the character count that will be replaced using “*” ?. A. Zero. B. Exactly one. C. One or more. D. Zero or more.

Consider a typical database of employees of a group of companies, what is the natural way to organizing it in any Excel file? Match the concept on the left with the data pieces on the right. a) 1>E, 2>B, 3>A, 4>D, 5>C. b) 1>A, 2>B, 3>E, 4>D, 5>C. c) 1>B, 2>A, 3>C, 4>D, 5>E.

Which of the following situations would trigger the Solve Conflicts window to be displayed?. A. You have committed your project and then realized that further changes were needed. Next, you updated the project and then selected Amend Commit. The Solve Conflicts window was presented because you were overwriting the last commit. B. You have pulled a project and started to work on it. During this time, a co-worker has pushed a new version of the project to the remote repository. When pushing your version, the Solve Conflicts window is presented because your last pull is not the same as the version in the remote repository at the time of the push. C. You have pulled a project and begun working on it. Once the necessary changed were made you pushed it back to the remote repository. The Solve Conflicts window was presented because the version of the project you were pushing is different from the one you pulled. D. None of the listed options.

RPA can significantly streamline your company’s processes and increase productivity. That said, certain factors increase the complexity of a potential automation. Which of the below increase automation complexity? (Select all that apply). A. Legacy applications. B. Having clear rules for each step. C. Inputs that cannot be standardized. D. The number of decision points in the business logic.

The data types in UiPath are borrowed from VB.Net. Which of the below are commonly used data types in UiPath? (Select five). A. String. B. Boolean. C. GenericValue. D. Assign. E. For Each. F. Collection. G. Numeric. H. Message Box. I. Write CSV.

One of the steps in your process is to authenticate on a web application. How can you check if the login succeeded or not?. a) Check the return value of the Login activity. b) Place the login activities inside a Try-Catch block. An exception is thrown in case a login problem occurs. c) Use an Element Exist activity to check whether the login succeeded by searching for an elementthat us only displayed in that case.

You plan to use Write Range to write data in an .xlsx file that does not exist. What will be the result?. A. None of the listed options. B. It will continue the execution without writing the data. C. It will throw an error. D. It will create that file for you and write the data in it.

Splitting a project into smaller workflows has an influence on how data is handled. Since variables work only inside the same workflow, having more than one workflow requires _________________. A. Flowcharts. B. Arguments. C. State Machines. D. Collection Flows.

Sequence data flow is most suitable for?. A. When we first start a project as the main workflow. B. Workflow that need decision making. C. Pieces of automation that can be used in a large projects. D. Short and simple workflows.

Which is the best workflow type for the following problem statement? “We need to automate a banking process that moves the money from clients' accounts according to certain rules. It makes payments, it calculates interest rates and, each morning, it moves the amounts of money according to specific rules. The process is continuous.”. A. Control Flow. B. Flowchart. C. Sequence. D. State Machine. E. Collection Flow.

When working with an attribute list within UiPath, which of the below can be used to display the full list of UI element attributes?. A. Using the Output panel. B. Using the Outline panel. C. Using the UI Explorer tool. D. Using the "Indicate on Screen" button.

What is the main improvement of transactional processing over the iterative processing?. A. The processing is done in iterations. B. Getting and processing the data are completely independent. C. Data is processed immediately after being read. D. None of the listed options.

What activities can you use to send an email message?. a) Send Outlook mail messagecorrect. b) Send SMTP mail message. c) Send IMAP mail message.

What is UiExplorer used for? (Select all that apply). A. To create and fine tune selectors. B. UiExplorer is not a component of UiPath. C. To explore the workflow tree. D. To explore the UI tree. E. To view logs. F. To create stable selector. G. To explore workflow tree.

Denunciar Test