Uipath Certification X
![]() |
![]() |
![]() |
Título del Test:![]() Uipath Certification X Descripción: UIAdvancedRpaDeveloper Fecha de Creación: 2023/03/02 Categoría: Informática Número Preguntas: 60
|




Comentarios |
---|
NO HAY REGISTROS |
A developer implemented a Dispatcher process using the Robotic Enterprise Framework to upload items to a queue. According to the requirements from the Finance team, all items with Price>10000$ should be processed starting 1st of July 2021 at 8 am, when Q3 starts. For that, the developer uses an Add Queue Item activity inside an If. What is the correct setting for that activity?. Set Postpone property to: 1 7 21 8:0. Set Postpone property to: DateTime.ParseExact("1 July 2021 08:00","dd mmmm yyyy hh:mm", System.Globalization.CultureInfo.InvariantCulture). Set Delay property to: DateTime.ParseExact("1 July 2021 08:00","dd mmmm yyyy hh:mm", System.Globalization.CultureInfo.InvariantCulture). Set Postpone property to: 7 1 21 8:0. A developer automates a project for Finance Team. As the first step, robot needs to capture ticket numbers from a Sharepoint site and then search them in SalesForce application. However, on Sharepoint all ticket numbers contain 7 characters and start with zeros e.g. 0000728, 0011430, 0003219. While in SalesForce, zeros in front are removed e.g. 728, 11430, 3219. How can robot overcome this inconsistency?. newTicketNumber = oldTicketNumber.Replace("0",""). newTicketNumber = oldTicketNumber.Substring(3). newTicketNumber = oldTicketNumber.Trim("0"c). newTicketNumber = oldTicketNumber.TrimStart("0"c). What tags are verified in Internet Explorer to assess if an application is in the Interactive or Complete state?. The tag is used to check if the Ready state of the HTML document is Complete. , , , or tags. The tag is used to check if the Ready state of the HTML document is set to Complete. Additionally, the Busy state has to be set to "False". The presence of tag is verified. A developer uses an Anchor Base activity to search for the required selector. In the “Anchor Position” property, the “Auto” option is selected. If multiple elements are found at equal distance from the anchor, in which order the target is selected?. Left, Right, Top. Right, Left, Bottom. Top, Right, Bottom, Left. Right, Top, Left, Bottom. A developer wants to use a Read PDF With OCR activity to extract required data from a PDF file. According to requirements from the client, the PDF file should be protected by a password, as it stores sensitive information. What should be done in order to ensure that the robot is able to read data from this file?. Password to this file should be provided in "Password" property of the Read PDF With OCR activity. Password should be provided in a SecureString format. Using Manage PDF Passwords activity, the developer can remove the password by providing the old password and not providing a new one. Password to this file should be provided in "Password" property of the Read PDF With OCR activity. Password should be provided in a String format. It is not possible to retrieve data from a protected PDF file by using OCR. The developer should use a Read PDF Text activity instead. A developer uses REFramework to create a complex automation project. In the Settings sheet of the Config file, the developer writes “fileName” in the Name column and “Fin_Excel_FileName” in the Value column. In Orchestrator, the developer creates an asset named “Fin_Excel_FileName” with the value “Report_Udemy2021.xlsx”. What will be the value of Config(“fileName”).ToString?. fileName. Report_Udemy2021.xlsx. Fin_Excel_FileName. A developer needs to implement the following logic for each row in the Excel table: – if the value in column Price is above 130$, then apply a discount of 10% if the value in column Price is above 250$ then apply a discount of 7% and store the row in a separate table – if the date in the column Deadline is less than 15 days from now, send a mail notification to the analyst mentioned column Contact person – if the value in the column Region is ELAMA, apply an additional tax of 3,5% – if the value in the column Additional comments is not empty, send the item for review to a responsible team What is best suited to implement the above-mentioned logic?. Sequence. Flowchart. State Machine. Switch. A process is created using UiPath REFramework. During the processing of a queue item, a Business Exception occurs. What will be the destination of transition?. Initialization. Get Transaction Data. End Process. Which of the following Rules belongs to the Design Best Practices category?. ST-NMG-009 - Prefix Datatable Variables. ST-SEC-009 - SecureString Misusage. ST-DBP-021 - Hardcoded Timeout. ST-MRD-008 - Empty Sequence. A developer runs the process in Debug mode. Which panel allows to see, which activity will be executed next?. The Call Stack Panel. The Immediate Panel. The Watch Panel. The Locals Panel. A developer initialized the following dictionary: sampleDictionary = New Dictionary(Of String, String) From { {HUB Academy, RPA}, {UiPath, Certificate} } How to return the value “Certificate” from this dictionary?. sampleDictionary.Keys("UiPath"). sampleDictionary.Values(2). sampleDictionary("UiPath"). sampleDictionary("UiPath").GetValue. A developer runs a Dispatcher process to upload 5 queue items to Orchestrator and then runs a Performer to process them. However, the developer forgot to use the Set Transaction Status activity, which resulted in all 5 items changing their status to In Progress. 2 days later, the developer checks the status of transactions in Orchestrator. What will be their status?. Abandoned. In Progress. Deleted. Failed. A developer uses REFramework to create complex process automation. In the InitAllSettings state, the robot retrieves all required assets from the Orchestrator. All values are stored in a Config dictionary which is passed between workflows. What happens if, during the processing of a queue item, the value of one of the assets was changed in Orchestrator?. The value of the asset will be null. Robot will use the new value of the asset. Robot will use the old value of the asset. Robot will throw an error when trying to use the value of that asset. A developer is working with a newer application using UiExplorer. Unfortunately, UiExplorer does not recognize the required selectors. What UI Framework is recommended for the developer to choose in such a situation?. Visual UI. Default. UI Automation. Active Accessibility. A Business Exception occurs in an isolated workflow. What exception is returned to the outer workflow?. A NullReference Exception. No exception is returned. A System Exception. A Business Exception. A developer implemented a Performer using the Robotic Enterprise Framework to process items from the queue. Each transaction item contains a file path to a specific file on Shared Drive. Robot uses Path Exists activity to check if a required file exists. If the path exists, robot needs to copy the file to its local folder. If the path does not exist, robot sets a status Failed with a Business Rule Exception to this transaction item. Robot does not retry these items during processing. What is the correct reason for that?. The Auto Retry property in the queue is set to No. Items that failed with a Business Rule Exception are not retried. MaxRetryNumber in Config is set to 0. Path Exists activity is wrapped in a Try Catch. Please choose the correct statement about selectors in UiPath. Selectors in UiPath are case-sensitive by default. You can change the case sensitivity of attributes. Selectors in UiPath are case-insensitive by default. You cannot change the case sensitivity of attributes. Selectors in UiPath are case-sensitive by default. You cannot change the case sensitivity of attributes. Selectors in UiPath are case-insensitive by default. You can change the case sensitivity of attributes. When is it recommended to use full selectors?. When the selector is stable. When working with dynamic selectors. When switching between multiple windows. When performing multiple actions in the same window. A process is created using UiPath REFramework. By default, if the maximum number of retries is reached, what steps are executed next?. 1. io_RetryNumber = 0 1. io_TransactionNumber = io_TransactionNumber + 1. 1. io_RetryNumber = 0 2. io_TransactionNumber = io_TransactionNumber + 1. 1. io_RetryNumber = 1 2. io_TransactionNumber = io_TransactionNumber + 1. A developer creates a process using a State Machine. What section(s) does the State activity contain?. Entry, Exit and Transition(s). Entry, Exit and Transaction(s). Entry, Exit and Action(s). Entry and Exit. A developer automated a process with the following logic: each queue item contains a filepath to an Excel file. If the required file exists, robot needs to upload it on Sharepoint. Otherwise, the transaction cannot be considered a success. What is the best approach if the required file does not exist?. Set status of the transaction to System Exception. Configure queue to retry System Exception transactions 3 times. Set status of the transaction to Business Rule Exception. Configure robot to notify the responsible person that the required file is missing. Set status of the transaction to Business Rule Exception. Configure queue to retry Business Rule Exception transactions 3 times. Set status of the transaction to Business Rule Exception. Wrap Path Exists activity in Try Catch. Please select the correct statement about Global Exception Handler. The Global Exception Handler has two arguments that can be removed. The Global Exception Handler is available for library projects and processes. Every automation project includes a Global Exception Handler. Only one Global Exception Handler can be set per automation project. A developer wants to automate a process in an internal ERP system. The robot needs to log in to the system using login and password. What is the correct approach to using credentials in UiPath?. The developer should store login and password in the Config file. The credentials should be stored in Orchestrator and retrieved using Get Asset activity. The developer should write login and password directly in Type Into activity. The credentials should be stored in Orchestrator and retrieved using Get Credential activity. Which of the following activities searches for a UI element by using a position relative to a fixed element?. Anchor Base. Find Element. Find Relative Element. Element Exists. What is considered a best practice in large projects?. Breaking a large process in a smaller workflow. Encapsulating most used activities in a single-activity workflow that can be invoked from another workflow. Testing workflow independently. Giving description names to variable and workflows. What activity allows you to customize the name of the sender when you are sending an email?. Send Exchange mail message. Send SMTP mail message. Send Outlook mail message. Which of the following text scraping methods preserve the text position?. Native. Full text. OCR. Having an app in a Citrix environment with multiple text-boxes that look the same (size/style), how can you identify one of them to type into?. By clicking relative to the unique text/image next to textbox. By using partial selector. By using text-box element attributes. You can’t identify it if it doesn’t have something unique next to it (text/image). What do the Item in the Orchestrator queues consist of?. Input data for the processes executed by the robots. Jobs to be executed by the robots. Process to be executed by the robots. What activity should you use if you want to add to the existing .xslx document?. Workbook append range. Excel write cell. Excel append range. Workbook write range. The most important advantages of the fulltext method are: It works in citrix environment. It works in the background. It’s accurate. It’s fast. Which of the following is not one of the default log fields present in all logs?. Message. TimeStamp. Name. JobID. What is an accurate description of what a log is made up of, as it relates to data type?. String. List. JSON Key-Value Pairs. Collection. In studio, how would one get to the robot execution logs?. From the design tab, click open log. From the debug tab, click open logs, then open execution log file. From the debug tab, click execution trail. From the home tab, go to tools, and open the log files. Which of the following is not a common reason why we should use the Invoke Code Activity?. When we want to simplify data manipulation procedures in our workflow. When we want to reduce the number of Assign and Invoke Method activities, by replacing several with a single Invoke Code activity. When we need to write custom code for some steps in the process. 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 using VB.NET code in Invoke Code activity, the assemblies can be instantiated within the code itself. True. False. Where in the REFramework is the new Transaction Status set for transaction items?. In the Finally Section of the Process Transaction State. In the SetTransactionStatus.xaml workflow. In the Success Section of the Process Transaction State. In the Exit of the Process Transaction State. How would a developer pull information from the 3rd Row, 2nd column of a data table named dt1?. dt1.rows(3).Item(2).ToString. dt1.rows(2).Item(1).ToString. dt1.rows(3).columns(2).ToString. dt1.rows(2).columns(1).ToString. Which state in the REFramework reads the config file?. Configuration. Initialization. Process Transaction. Get Transaction Data. Which state of the REFramework is the “dispatcher” ?. Initialization. Get Transaction Data. Process Transaction. End Process. Which state of the REFramework is the “performer” ?. Initialization. Get Transaction Data. Process Transaction. End Process. How would you create a new library?. From the design ribbon, click create new library. Go to the Studio Backstage View, click Start, and click Library. Click home, settings, and click library. From the design ribbon, click library, and click create new library. The project panels displays all of the following except: the tree view with the project folder. dependencies. all related projects. the NewActivity.xaml. Which of the following is true about a shared library?. A Library is a package which contains multiple reusable components. A Library is a package which contains a single reusable component. A Library is a package that is saved as nuget files and can be installed as dependencies to workflows using the Package Manager. A Library is a package that is saved as nuget files and can be installed as activity packages to workflows using the Package Manager. Which of the following regular expressions (REGEX) will perform the following: matches a single character that is a digit. \d. \w. . (a period). \s. During start-up, a Windows Session is created for the System Processes to run which are not related to a specific user, this is called: Background Zone. Session Zero. Dark Session. BG Automation. When merging a data table from DT1 and DT2, and the output is set to DT2, the following will occur. An error will be thrown- must specify an unused data table. A validation error will be thrown before execution. No data tables will be affected and no new data table will be written. DT2 will be overwritten with the merged data. Which of the following regular expressions (REGEX) will perform the following: returns a match for any alphabetical character between a and z, either lower OR upper case. [abcABC]. [a-zA-Z]. [^a-z\A-Z]. [a-z]. Due to a software limitation, reading cells (with the Read Range activity in an Excel Application Scope) that have currency format only retrieves a maximum of how many decimal places?. 1. 4. 3. 2. Global project settings properties will take priority over activity-specific property value changes. True. False. In orchestrator for credential assets, once an asset is created, what are you unable to edit as it pertains to the asset’s settings?. Password. Asset Type. Description. Asset Name. There is a string list variable called: Numbers that has been instantiated with “1”, “2”, and “3”. An Invoke Method activity has the following settings: MethodName: Add Result: Empty TargetObject: Numbers TargetType: (null) Parameters –> Direction: In Type: String Value: “4” What is the outcome of the Invoke Method activity?. Numbers will contain: "1", "2", "3". Numbers will contain: "4", "1", "2", "3". Numbers will contain: "1", "2", "3", "4". The Invoke Method activity will throw an error. In the “Instance” methods of Invoke Method, what should the TargetType be set to?. The type of the target object. Int32. String. (null). What should be input into the value field for TargetObject when filling in the Invoke Method using the static method?. Nothing. String. Any VB expression that fulfills the purpose. Int32. A click activity interacts with a UI element that must be 100% loaded before interaction is possible. What is the best way to ensure that the click activity functions properly?. TimeoutMS = *. WaitForReady = Interactive. WaitForReady = Complete. TimeoutMS = 99999. How do you initialize a dictionary?. Dictionary = new Dictionary(of String, String). Dictionary = new Dictionary(of String, of String). Dictionary = new Dictionary(String, String). Dictionary = new Dictionary(String, of String). Job completion Priority What is the priority for job completion?. 1. Earliest Deadline with High priority 2. Earliest Deadline with Normal priority 3. Next Deadline with High priority 4. Next Deadline with Normal priority 5. No Deadline with High priority 6. No Deadline with High priority. 1. High Priority Earliest Deadline 2. High Priority Next Deadline 3. Normal Priority Earliest Deadline 4. Normal Priority Next Deadline 5. High Priority No Deadline 6. Normal Priority No Deadline. What is displayed in the output panel?. Both var1 and var2 are of type: GenericValue. Assign: var1 = 555. Assign: var2 = "555". Log Message: (var2 + var1) + " " + (var1 + var2). While debugging a workflow file you wish to skip an activity that is coming up next in the workflow. Step Out. Step Over. Step From. Orchestrator Settings take priority over Config file settings. True. False. |