UiPath 자격증 족보 – UiPath Advanced Developer Certification (1)
https://certificate.uipath.com/account/login
시험은 이곳에서 보면 되고 응시는 2020.03.31까지 무료!
Advanced 자격증은 2020.04.30 에 사라지고 1년간 자격이 유효하다고 한다.
Thank you for your interest in UiPath certifications. We are happy to introduce a new UiPath Certified Professional program. This highly valuable, secure, high-stakes program is now available to you! The legacy, free Advanced RPA Developer certification is available but will retire after 30 April 2020 and the certificate will expire in 1 year. You may want to consider getting certified in the new UiPath Certified Professional program, please click here for details.
그리고 구입 가능한 UIpath 도서 추천
.
.
.
.
Quiz & Answer
How does the Anchor Base activity work?
- It searches for an UiElement using a relative coordinate position.
What direction can the arguments of a workflow have?
- In arguments.
- Out arguments
- In/Out arguments.
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.
Where can we see the logs generated by running robots?
- In the Output panel.
- In the local Logs folder.
- In the Orchestrator logs.
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 type of Output variable do all Get Mail activities return? (POP3, IMAP, Outlook, Exchange)
- List
Is it possible to retrieve the color of a specific Excel cell?
- Yes, by using Get Cell Color
Can you store a Selector in a variable?
- Yes, in a String variable.
What can be used to debug a workflow?
- Breakpoints
- Highlighting activities.
- The Slow Step option.
How can a robot start an application in Citrix?
- By using a command line.
- By double clicking on a Desktop icon.
- By defining a shortcut key for the application and then triggering the app with a Send Hotkey activity.
What is Orchestrator used for?
- Remotely controlling any number of robots and performing workflow management.
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 types of assets can be stored in Orchestrator?
- Bool, String, Integer, Credential
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
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
The best way of managing variable values within a workflow, so that they can be shared on different robots and environments is:
Using Json config files.
Using excel config files
Using assets defined in Orchestrator.
What robots can be selected when you start a job from Orchestrator?
- Any robot in the same environment as the process to be executed.
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.
“Add Assets” in Orchestrator has the following option:
- Value Per Robot
- Single Value
What robot state is displayed on the Robots page while a job is being executed?
- Busy
Where should credentials be stored? Select all the options that apply.
- In Windows Credential Store.
- In Orchestrator, as assets.
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.
If a large item collection is processed using For Each, which activity enables you to efficiently exit the loop after a specific moment?
- The “Break” activity is the most suitable in For Each
Which of the following statements are true? Select all the options that apply.
- The recorder is used to create a skeleton for the UI automation
- The Desktop recorder generates partial selectors
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.
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.
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.
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
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 a stop signal was sent from Orchestrator
When should an Attended Robot be used? Select the option that applies.
- When the processing of some input data relies on human decision.
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.
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.
In which workflow in the UiPath Robotic Enterprise Framework template is the retry mechanism implemented?
- The SetTransactionStatus workflow
In the UiPath Robotic Enterprise Framework template, in the Main workflow, the State Machine includes the following states:
- Init state
- Get transaction data state
- Process Transaction State
- End Process State
Which of the following are considered best practices?
- Removing unreferenced variables.
- Deleting disabled code.
In a Try Catch activity, how many times is the Finally section executed if no error occurs in the Try section?
- Once
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 spreadsheets, databases, email, web API.
- Get data from UiPath Orchestrator queues with Auto Retry disabled.
The return value of the Get Transaction Item activity is of the following type:
- QueueItem
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
How should a UiPath developer handle frequent changes in the project files?
- By using a source control solution, such as SVN, TFS, etc.
What layout should be used for UI navigation and data processing?
- Sequence
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?
- Init
How can you pass data between workflows?
By using arguments.
By using variables.
By using a pipe.
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?
- 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.
Which of the following are required to have efficient execution of automation projects?
- Proper exception handling
- Recovery abilities
- Effective logging mechanisms