Thursday 7 February 2019

UiPath RPA Developer Foundation Training Certification answers - 5

Here is the continuation part of the sample question and answers for the developer foundation training.

Note : These are the sample question and answers for the RPA Developer Foundation Training, please do go through the actual training materials of the UiPath.


1. What is the AttachWindow activity used for ?

   To specify the top-level window container you will working with

2. How can we make sure that an app is in a certain state in a Citrix environment ?

   By waiting for certain UI elements to apper or disappear and making decisions based on that.

3. Which recording profile generates full selectors ?

   Basic recording.

4. What should you use to scrape tables from a web page ?

   Data Scrapping.

5. What activities can be used to interact with applications in a Citrix environment ?

   Click Text
   Click Image.

UiPath RPA Developer Foundation Training Certification answers - 4

UiPath RPA Developer Foundation Training Certification answers - 4

Here is the continuation part of the sample question and answers for the developer foundation training.

Note : These are the sample question and answers for the RPA Developer Foundation Training, please do go through the actual training materials of the UiPath.

1. How can you trigger another workflow from within your current one ?
   
   By using the invoke Workflow File activity

2. How can we test if a given address( a string variable called fullAddress) can be found on a particular stree(a string variable called)

   fullAddress.Contains(streetName)

3. How do you exit the selection mode ?

   Right Click

   ESC

4. What type of argument can you define to pass data and retrieve the modified value from an invoked workflow ?

   In/Out.

5. Which of the scrapping methods can get you the hidden text in the element ?

   FullText

6. What is considered a best practise in large projects ?
   
   Testing workflows independently

7. What recording wizard would you use to generate partial selectors ?

   Citrix Recording
   Web Recording
   Desktop Recording

8. How can you improve the following calendar page selectors to work only for the dates in 2017 ?
   "<html app='chrome.exe' title = 'UiPath-Calendar - Week of May 1, 2017>"

   <html app = 'chrome.exe' title = 'UiPath-Calendar - * 2017/>

9. By using the FullText scrapping method the robot is able to ?

   Get editable Text

   Get hidden information

10. What is TimeoutMs property used for ?

    To define the amount of time during which the target of an activity must be found.

UiPath RPA Developer Foundation Training Certification answers - 3


UiPath RPA Developer Foundation Training Certification answers - 3

Here is the continuation part of the sample question and answers for the developer foundation training.

Note : These are the sample question and answers for the RPA Developer Foundation Training, please do go through the actual training materials of the UiPath.



1. What is the most effective way to handle the click on a UI element that is not always available ?

   By placing the Click activity inside a Try/Catch Block

2. How can UiPath identify an Ui elemnt on the screen ?

   By using a partial selector inside a container.

   By using a full selector.

3. What activity should you use if you want to add data to an existing .xlsx document ?

   Workbook Append range.

   Excel Append Page.

4. What are the supported wildcard characters for selectors in UiPath Studio ?

    ?
    *

5. What is a wildcard used for ?


   To replace variable values in selector attributes.

6. What activity can you use to get a column value from a specific row of DataTable ?

   Get Row Item

7. What is an argument ?

   An input/output parameter of the workflow.

8. Which activities can be used to interact with the user ?

   MessageBox

   InputDialog

9. What kind of actions can be performed in the Variables Panel ?

   Setting default values for variables.

10.Getting the content of a PDF document is possible :

   By using the Read PDF Text activity and providing the PDF file's path

   By opening the PDF and using screen scrapping to get its data.



Monday 4 February 2019

UiPath RPA Developer Foundation Training Certification Questions and answers- 2


UiPath RPA Developer Foundation Training Certification answers - 2

Note : These are the sample question and answers for the RPA Developer Foundation Training.

1. Can you insert a Flowchart activity in a sequence activity

   Yes

2. What is a sequence most suitable for ?

   Short and simple workflow

   Pieces of automation that can be used in a larger part


3. Which of the following is a valid full selector ?

   <wnd app='explorer.exe' cls='Shell_Traywind' />
   <wnd cls='Start' title='Start'/>

   <html app='chrome.exe' title='Yahoo Finance' />
   <webctrl idx = '1' parentid='data-util-col' tag='TABLE'>
   <webctrl isleaf='1' tableRow='3' tag='TD'/>

4. How should you organize your workflow ?

   Use Flowchart or State Machine for a high level organization

5. As a best practise, how should workflows use a local desktop application ?


   By checking if the corresponding process is running and if not, opening the application by using the open Application activity

   By closing the application once its no longer needed.

6. What happens if you put a BreakPoint on a Click activity and start the workflow in Debug mode ?

   The workflow will be paused until you click the Continue button.

7. What should you use to verify if a checkbox is selected or not ?

   Get Attribute activity

8. The Save Attachments activity can save all the attachments of an email to :

   An absolute path

9. What type of content can you store inside a Generic type variable ?

   Numbers
   True/False
   Dates
   Text

10. What happens if you try to use a Write Range activity to a .xlsx file that does not exists

    It will create that file for you and write the data in it.



   To be continued.....