- (Topic 2)
What can be used to debug a workflow? Options are :
Correct Answer:
AB
- (Topic 2)
Which input method has the highest speed?
Correct Answer:
B
Simulate Type/Click method is the fastest of the three and works in the background. If this does not work for you, try the SendWindowMessages method and then the Default one, as it is the slowest.
- (Topic 2)
What status does a job have when a schedule is triggered in Orchestrator, but there are no available robots to execute it?
Options are :
Correct Answer:
B
- (Topic 2)
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?
Correct Answer:
A
To get a value by key from a dictionary, use
You can also get the value if you know its index, however, remember, that dictionary is zero-based. So in this example, it is possible to return the value "Certificate" by
using sampleDictionary.Values(1) UiPath Forum
Exam Topic: Describe how to work with complex data structures and data manipulation; for example, datatables and collections.
- (Topic 2)
What tags are verified in Internet Explorer to assess if an application is in the Interactive or Complete state?
Correct Answer:
D
To assess if an application is in the Interactive or Complete state, the following tags are verified:
* 1. Desktop applications - A wm_null message is sent to check the existence of the
* 2. Web applications:
* a. Internet Explorer - The
* b. Others - The
* 3. SAP applications - First the presence of the
UiPath Documentation Exam Topic:
Describe the use of various Classic UI synchronization activities; for example, ElementExists, FindElement, and FindText
