Book Image

UiPath Associate Certification Guide

By : Niyaz Ahmed, Lahiru Fernando, Rajaneesh Balakrishnan
Book Image

UiPath Associate Certification Guide

By: Niyaz Ahmed, Lahiru Fernando, Rajaneesh Balakrishnan

Overview of this book

UiPath is the most popular vendor in the Robotic Process Automation (RPA) industry. If you're an RPA enthusiast or citizen developer who wants to succeed in the industry, achieving this certification can help you get accredited and ready for real-world challenges using UiPath. UiPath Associate Certification Guide offers complete, up-to-date coverage of the UiPath RPA Associate certification exam to help you pass on the first attempt and get certified. The book is written in a clear, succinct way with self-assessment questions, quizzes with answers at the end of each chapter, exam tips, and mock exams with detailed answers and explanations. You'll start by getting to grips with the basic concepts of UiPath RPA, and then progress to an in-depth discussion of all the concepts required for Associate certification. Finally, you'll develop UiPath skills by gaining the required knowledge and implement these skills using sample business cases. By the end of this UiPath book, you'll have covered everything you need to pass the exam, gained the knowledge you need to work on real-world case studies, and learned how to apply the various concepts to build enterprise-level use cases.
Table of Contents (24 chapters)
1
Part 1: Importance of RPA
6
Part 2: UiPath Studio
15
Part 3: Use Case and Exam Preparation
20
Chapter 17: Mock Exam 1
21
Chapter 18: Mock Exam 2

Exploring arguments

In UiPath, the goal of a variable is to store data within the specified scope and pass it on to other variables or activities as required. A real-world automation project includes more than one workflow, hence the use of variables is not enough to connect the workflows. Arguments in UiPath come into play to fill this gap by acting as a container that allows the transfer of data between multiple workflows. Arguments are very similar to workflows as they store data dynamically based on their defined data types. However, the difference is that arguments have a Direction property that describes how the data is transferred between workflows. Further, the use of arguments enables users to reuse automation workflows in multiple projects.

Let's take a look at the properties of arguments.

Properties of an argument

Let's take a look at the properties of an argument, as follows:

  • Name: Similar to variables, this property indicates the name of the...