UiPath Automation Developer Quiz

UiPath Automation Developer Quiz

Professional Development

68 Qs

quiz-placeholder

Similar activities

DSAC-8 ANNEX D

DSAC-8 ANNEX D

Professional Development

67 Qs

App Support Review

App Support Review

Professional Development

72 Qs

Object oriented Programming

Object oriented Programming

Professional Development

70 Qs

CompTia A+ Core 2 220-1102

CompTia A+ Core 2 220-1102

Professional Development

67 Qs

Udemy1

Udemy1

Professional Development

70 Qs

COMPUTERS

COMPUTERS

4th Grade - Professional Development

71 Qs

CompTIA Security + : Architecture and Design

CompTIA Security + : Architecture and Design

Professional Development

64 Qs

Azure Fundamentals (AZ-900)

Azure Fundamentals (AZ-900)

Professional Development

67 Qs

UiPath Automation Developer Quiz

UiPath Automation Developer Quiz

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Ismael Parada Mateo

FREE Resource

68 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How can the value be configured for each of the three arguments (one "In", one "Out", and one "In/Out") in the Arguments window of the Invoked Workflow?

In: Variable or Hard-coded value Out: Variable or Hard-coded value In/Out: Hard-coded value only

In: Variable or Hard-coded value Out: Variable only In/Out: Variable only

In: Variable or Hard-coded value Out: Hard-coded value only In/Out: Variable only

In: Variable only Out: Variable only In/Out: Variable only

Answer explanation

The correct choice specifies that 'In' can be a variable or hard-coded value, 'Out' must be a variable only, and 'In/Out' must also be a variable only. This ensures proper data handling in the workflow.

2.

OPEN ENDED QUESTION

1 min • 1 pt

Media Image

A developer has opened a pre-existing workflow that utilizes UI Automation within Google Chrome, but the Google Chrome extension has not been installed on their computer. What steps should the developer take to install the Google Chrome extension from UiPath Studio?

Evaluate responses using AI:

OFF

Answer explanation

To install the UiPath Chrome extension, the developer should open UiPath Studio, navigate to the 'Tools' menu, select 'Extensions', and then click 'Install' next to the Google Chrome extension.

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What are the three source control plug ins found in the backstage view of UiPath Studio in Home - Tools - Plugins?

GIT, SVN, Mercurial.

GIT, SVN, TFS.

GIT, CVS, TFS

GIT, CVS, Bitbucket.

Answer explanation

The correct answer is GIT, SVN, TFS, as these are the three source control plugins available in UiPath Studio's backstage view under Home - Tools - Plugins. Other options include incorrect combinations of source control systems.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A developer utilized the Add Data Row activity to insert a row into a data table called "dt_Reports". However, during runtime, UiPath Studio encounters an exception, "Add Data Row: Object reference not set to an instance of an object." because the data table has not been initialized. To rectify this issue, what should the developer include in an Assign before the Add Data Row activity?

Assign New System.Data.DataTable = dt_Reports.

Assign dt_Reports = New System.Data.DataRow.

Assign dt_Reports = New System.Data.DataTable.

Assign dt_Reports = New List(Of DataRow).

Answer explanation

The correct choice is 'Assign dt_Reports = New System.Data.DataTable.' This initializes the data table before adding a row, preventing the 'Object reference not set to an instance of an object' exception.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the best method for passing data across activities within workflows?

Arguments

Namespaces

Properties

Variables

Answer explanation

Variables are the best method for passing data across activities in workflows because they allow for dynamic data storage and retrieval, enabling seamless data transfer between different parts of the workflow.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is a correct description of a dictionary?

Dictionaries are collections of key, value pairs, in which the keys are unique.

Dictionaries are collections of item, values, in which no constraints are present over the values of the items.

Dictionaries are collections of unique values.

Dictionaries are collections of item, values, in which the items and values are unique.

Answer explanation

The correct description of a dictionary is that it consists of key-value pairs where each key is unique. This ensures that each key maps to a single value, distinguishing it from other data structures.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

Based on the graphic, what is the output at runtime?

0 0

0 3

20 23

2023

Answer explanation

Media Image

La cadena "2023" se divide usando el carácter "2" como separador.
El método .Split("2"c) corta la cadena en cada lugar donde encuentra un "2".

Resultado:

  • Antes del primer "2" → ""

  • Entre los dos "2" → ""

  • Después del último "2" → "3"

Por eso, el array final es: {"", "", "3"}
Y al recorrerlo con un bucle For Each, se imprimen estos tres valores en el log.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?