What expression would you use to instantiate a dictionary object that pairs names (key) with ages (value)?

  • Choose one of the options below
 

New Dictionary(of Int32, String)

 

 

New Dictionary(of String, Int32)

 

 

Dictionary (String, Int32)

 

 

Dictionary (Int32, String)

 

Pair the following methods that use the RegEx builder with the correct explanations.

  •  
  •  
  •  

 

Which of the following methods can be used to populate a list of strings type variable with the values John, Paul, George and Ringo?

  • Choose all the options that apply

 

  •  

    Set the Default value in the Variables panel to {"John", "Paul", "George", "Ringo"}

  •  

    Set the Default value in the Variables panel to New List(of String) from {"John", "Paul", "George", "Ringo"}

  •  

    Initiate the variable with New List(of String) and use Add To Collection activities to populate the list.

  •  

    Leave the Default value blank and use Add To Collection activities to populate the list.

     

     

Consider the string variable Letters = "abcdefg". 

 

What value would the expression Letters.Substring(1,2) return?

  • Choose one of the options below
 

"bc"

 

"bcd"

 

"ab"

 

"abc"

What is the best collection data type to store several cake recipes (names and ingredients)?

  • Choose one of the options below
 

List

 

Array

 

Dictionary

 

Consider a dictionary variable (BirthDates), of type String, String, that contains name and birth date pairs. They key values are the names. You want to add a new key / value pair using an Assign Activity (John Doe, Apr/20/1980). 

 

What expressions would you enter in the To and Value fields of the Assign activity?

  • Choose one of the options below
 

To: BirthDates(John Doe) Value: "Apr/20/1980"

 

To: BirthDates("Apr/20/1980") Value: "John Doe"

 

 

To: BirthDates("John Doe") Value: "Apr/20/1980"

 

 

To: "John Doe" Value: "Birth Dates"

 

Which activity can be used to write the content of a DataTable into a String?

  • Choose one of the options below

here...

 

Clear Data Table

 

Generate Data Table

 

Output Data Table

 

 

Consider the list of strings ListOfContinents = {"Africa", "Antarctica", "Asia", "Australia", "Europe", "North America", "South America"}. 

 

What value will the expression ListOfContinents(2) return?

  • Choose one of the options below
 

Antarctica

 

 

 

Asia

 

 

None, objects are not identified by their index in lists

 

Australia

Typical uses of RegEx include:

  • Choose all the options that apply
  •  

    Data scraping

  •  

    Debugging

  •  

    String parsing

  •  

    Input validation

  •  

    Interacting with UI elements

  •  

    String manipulation

 

What value will the following expression return? 

 

String.Format("{1} is {0}", "home", "John", "far away", 0, 1)

  • Choose one of the options below
 

"1 is 0"

 

"John is home"

 

"Home is far away"

 

"John is far away"

'Uipath > Foundation 퀴즈' 카테고리의 다른 글

Project Organization in Studio 문제  (0) 2022.04.28
Selectors in Studio 문제  (0) 2022.04.27
DataTables and Excel Automation 문제  (0) 2022.04.27
UI Automation with Studio 문제  (0) 2022.04.26
UI Automation with Studio 문제1  (0) 2022.04.26

Let's review the main concepts in Excel.

Consider a typical database of employees of a group of companies. What is the natural way of organizing it in an Excel file?

 

Match the concepts on the left with the data pieces on the right.

  •  

 

 

 

Which activity can be used to read an entire sheet from an Excel file?

  • Choose one of the options below
 

Get Table Range

 

 

Read Range

 

Read Cell

 

 

What happens if you use a Write Range activity and try to write data in an .xlsx file that does not exist?

  • Choose one of the options below
 

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

 

 

It will throw an error. 

 

It will continue the execution without writing the data.

 

 

Which activity would be your first choice to loop through all the rows of a data table?

  • Choose one of the options below
 

While

 

For Each

 

 

For Each Row

 

Join Data Tables

 

 

Which of the following activities can you use if you want to add data to an existing .xlsx document without overwriting existing data?

  • Choose all the options that apply
  •  

    Workbook Write Range

  •  

    Workbook Append Range

  •  

    Excel Append Range

  •  

    Excel Write Cell

     

     

This project type is recommended for simple, linear workflows without multiple decision nodes.

  • Choose one of the options below
 

Sequence

 

State Machine

 

Flowchart

 

What activity can you use to write a data table to a string variable?

  • Choose one of the options below
 

Generate Data Table

 

Output Data Table

 

Write Range

 

Merge Data Table

 

 

You have included a Sort Data Table activity in your workflow.  The DataTable variable is called dt_Usernames. The Input DataTable field is set to the dt_Usernames variable and the Output DataTable field is also set to dt_Usernames. 

 

The activity will sort the Data Table values and...

  • Choose one of the options below
 

store them a different variable

 

 

store them in a .CSV file

 

store them in the same variable

 

display them in the Output panel

 

 

store them in an Excel file

 

The body of a loop is executed at least once when this activity is used.

  • Choose one of the options below
 

While

 

For Each

 

Do While

'Uipath > Foundation 퀴즈' 카테고리의 다른 글

Selectors in Studio 문제  (0) 2022.04.27
Data Manipulation in Studio 문제  (0) 2022.04.27
UI Automation with Studio 문제  (0) 2022.04.26
UI Automation with Studio 문제1  (0) 2022.04.26
Variables, Arguments, and Control Flow 문제  (0) 2022.04.22

Check your understanding

 

Is the Anchor set correctly for this Get Text activity that should retrieve the transaction number?

 

Yes

 

No

 

Not quite. 

First, the target is set on "Transaction #:" and this is the text that the robot would retrieve. But it will not, because the Anchor is set on an element that changes with each click of the Accept button.

 

This means that when those number change, the robot will not find "Transaction #:".

 

Second, the target should be set on the number and the anchor on "Transaction#:".

 

 

Check your understanding

You want to automate a task that involves using the rpasamples.com/suppliers website. A series of misfortunate events happen. What is the solution?

Recommendation: Open the website to check the UI elements available and test your solution ideas in Studio.

The automation project contains just these 2 activities: a Use Browser resource - to open the Supplier website, and a Click action - to click on the "New Supplier" button. 

 

The issue is that depending on the user's location, the language in which the website is displayed changes. Therefore, you get error stating the "New Supplier" button cannot be found. 

 

What can you do?

  • Choose one of the options below
 

Add a Check App State action to verify if the website language is set to English.

 

Add multiple anchors for the New Supplier button.

 

Edit the validation methods to use only Selectors.

 

The desired state of the website is in the English language. Adding this extra check and adding to the workflow the logic which achieves language change will solve your problem.

 
 

After solving the language issue and entering the data for a New Supplier, you want to close this window by clicking on the "X" button. 

 

Something doesn't seem right...

  • Choose all the options that apply
 
  •  

    A duplicate was found.

  •  

    The UI element is not clickable.

  •  

    The target needs an anchor

When encoutering duplicate elements, you should add anchors to make the distinction between similar elements.

 

Which of the following factors increase the complexity of a potential automation?

  • Choose all the options that apply
  •  

    Legacy applications

  •  

    Inputs that cannot be standardized

  •  

    Having clear rules for each step

  •  

    The number of decision points in the business logic

 

In which panel can you see the results of the Log Message or Write Line activities?

 

Output

 

Activities

 

Project

 

Properties

 

Outline

 

Which are the steps of RPA implementations?

  • Choose one of the options below
 

Prepare RPA / Design RPA / Develop RPA / Test RPA / Implement RPA

 

Prepare RPA / Opportunity Assessment / Solution Design / Build RPA / Test RPA / Stabilize RPA / Constant improvement

 

 

Prepare RPA / Solution Design / Build RPA / Test RPA / Stabilize RPA / Constant improvement

 

Prepare RPA / Solution Design / Build RPA / Implement RPA / Constant improvement

 

Which of the following are input actions?

  • Choose all the options that apply
  •  

    Type into

  •  

    Get Text

  •  

    Send Hotkey

  •  

    Click

  •  

 

What happens when a Find Element activity does not find the desired element within the set Timeout property?

  • Choose one of the options below
 

 

The activity throws an exception and stops the execution

 

The activity returns a False value in a Boolean variable.

 

The next activity is executed.

 

 

Match the input methods with the correct definitions:

 

Simulate
  •  

 

 

An automation process using UI Interaction activities set to the default input method is running on Michelle's machine. Would you recommend that Michelle works on her machine while the process is running?

  • Choose one of the options below
 

 

Yes

 

No

 

Which of the following output activities extracts the hidden text from a UI element?

  • Choose one of the options below
 

Get Visible Text

 

Get Full Text

 

Get OCR Text

 

Data scraping extracts structured data from…

  • Choose all the options that apply
  •  

    The browser

  •  

    Documents

  •  

    Apps

     

     

     

Which of the following activities has a Boolean variable as the output?

  • Choose one of the options below
 

Element Exists

 

 

On Element Appears

 

Find Element

Which of the following statements are true? 

  • Choose all the options that apply
  •  

    Developers can use modern and classic activities regardless of the automation project's design experience. 

  •  

    In overall UI automation scenarios, more than 90% of classic activities utilize the most reliable targeting method, namely Image. 

  •  

    Modern activities uses a targeting technology called Unified Target that cycles through all of the available targeting methods. 

  •  

    Object repository is only available in the modern design experience. 

 

 

Which of the following options should be considered in case a regular selector becomes unreliable during automation development? 

  • Choose all the options that apply 
  •  

    Using Anchors to pin point the UI element. 

  •  

    Using the Image targeting method. 

  •  

    Chose a different UI element to automate. 

  •  

    Try using Fuzzy Selectors. 

     

     

You are running the classic design experience. What path would you use to enable the modern design experience for all new projects? 

  •  

 

 

You have just created a new project. How would you set the modern design experience as default only for this specific project? 

  • Choose one of the options below
 

Activities Panel > Filter

 

Manage Packages > Install the Modern Activities pack

 

Backstage View > Settings > Design 

 

 

Project Settings > General 

 

 

Before creating a robot path that defines a UI automation project, RPA Developers first need to: 

  • Choose one of the options below
 

Understand the job description of the human that the automation replaces. 

 

Identify the human path that achieves the same goal by breaking down each individual step. 

 

 

Create a sample workflow using as little activities as possible. 

 

You are saving the input from users to a variable of String type in Main.xaml.  The user info is stored in an Excel spreadsheet by a Write Range activity added in WriteData.xaml. WriteData.xaml is invoked in Main.xaml.

 

What direction will your argument have?

  • Choose one of the options below

 

 

In/Out

 

Out

 

In

 

How can you create a new variable in UiPath Studio?

  • Choose all the options that apply 
  • Press Ctrl+K in an activity input field that requires a variable

  • Press Ctrl+Shift+K in an input field that requires a variable in the Properties panel

  • Press Ctrl+K in an input field that requires a variable in the Properties panel

  • Press Ctrl+Shift+K in an activity input field that requires a variable

  • Select the Create new Variable option in the Variables panel

 

 

Which activity can be used to process every item in a collection individually?

  • Choose one of the options below
 

For Each

 

Do While

 

While

 

 

 

 

 

Match the following variable properties with their definitions:

Match the following UiPath Platform components with the descriptions provided:

 
 

What is the correct way to concatenate a string variable (Username) with a string (" is online")?

  • Choose one of the options below
 

"Username" + " is online"

 

Username  + " is online"

 

Username +  is online

 

Fill in the following sentence: " ... are used to pass data from one workflow file to another in UiPath Studio."

  • Choose one of the options below
 

Both Variables and Arguments

 

Only Variables

 

Only Arguments

 

 

 

Which of the characteristics below make a process more suitable for RPA automation?

  • Choose all the options that apply
  • Stable

  • High exception rate

  • Repetitive

  • Rule-based

 

  • Choose all the options that apply
  • Start applications

  • Capture data from text fields

  • Make decisions based on predefined rules

 

 

When running a job, will all the automation ‘.xaml’ files included in the project be executed?

  • Choose one of the options below
 

Yes, because we can test and run any workflow separately.

 

No, only workflows containing arguments will be executed.

 

Yes, because data is passed between workflows using arguments. 

 

No, only files linked to the Main.xaml through the Invoke Workflow File activity will be executed.

 

Consider an Int32 variable (Counter), initially assigned with the value 10. The value decreases by 1 every time a sequence is executed in a Do While activity. 

 

How many times will the sequence be executed if the expression in the Condition field of the Do While activity is V > 0? 

  • Choose one of the options below
 

9

 

11

 

10

'Uipath > Foundation 퀴즈' 카테고리의 다른 글

Selectors in Studio 문제  (0) 2022.04.27
Data Manipulation in Studio 문제  (0) 2022.04.27
DataTables and Excel Automation 문제  (0) 2022.04.27
UI Automation with Studio 문제  (0) 2022.04.26
UI Automation with Studio 문제1  (0) 2022.04.26

+ Recent posts