SlideShare a Scribd company logo
Which of the following types of variables can be defined in UiPath Studio?
 GenericValue.
 DataTable
 Number.
Which of the following SQL statements can be executed by using the
activity called Execute Non Query?
 Insert
 Update
 Select
 Delete
What type of argument can you define to pass data and retrieve the
modified value from an invoked workflow?
 In
 In/Out.
 Out.
Which statements are true regarding the Write Line and the Log Message
activities?
 By usinga Log Message activity, you can set different levelsof tracing.
 Write Line is just a Log Message set on Trace.
 By usingany of them, you generate tracesin the Output panel and also in the log files.
At the end of the execution of Workflow1, which retrieves some items from
a database, is the database connection closed automatically?
 Yes, the connection is closed after 30 seconds.
 The connection has to be closed usinga Disconnect activity.
 Only the database admin can decide this aspect.
Where can we see the logs generated by running robots?
 In the Output panel.
 In the local Logs folder.
 In the Orchestrator logs.
What is the robot able to do when the Full Text scraping method is used?
 Get font information (size, colour).
 Get hidden information.
 Get editable text.
 Get the entire visible text.
Which of the following technologies can be used for background
automation?
 The Click activity with the Simulate Click flag checked.
 Data Scraping.
 The Full Text method of Screen Scraping.
 Type into activity with SendWindowMessagesflag checked.
How can you provide more details to explain the purpose of the activities in
a workflow?
 By addingactivityAnnotations.
 By usinga Comment Out activity.
 By usingthe Comment activity.
Which activity is used to call another piece of automation?
 Open Application
 Invoke Workflow File
 Flowchart.
Which of the following statements related to Orchestrator are true?
 Robots can be assigned to multiple environments.
 A robot can execute manydifferent jobs at the same time.
 A robot can execute manydifferent jobs one after the other.
What is the best way of restricting the access of a person to a limited
number of pages in Orchestrator?
 That option does not exist. Everyone is able to see everything
 By changingthe rightsof the Administrator tothe desired state.
 By creatinga different account and role for that person. When creatinga new role, restrictionscan
be applied.
What robot state is displayed on the Robots page while a job is being
executed?
 Busy
 Runnning
 Pending
What do the Items in the Orchestrator queues consist of? Select all the
options that apply.
 Input data for the processes executed bythe robots
 Jobs to be executed by the robots
 Processes to be executed by the robots
What is the relation between environments and provisioned robots?
 One robot can be assigned to multiple environments.
 One robot can be assigned to a single environment only.
 An environment can contain multiple robots.
 An environment can contain a single robot only.
What happens if you try to end the execution of a job by clicking the
Stop/Cancel button in UiPath Orchestrator?
 The execution process is killed.
 The execution is not impacted if no Should Stop activity hasbeen included in the workflow in
Studio.
 The job state is changed to Canceled/Stopped, even ifno Should Stop activity was used.
What happens when a new version of a package is published?
 The processes usingthe package are automaticallyupdated to the latest version
 The processes have to be updated in order for the robots to run the latest version of the package
 The old version of the package is overwritten
What types of assets can be stored in Orchestrator?
 Array, Datatable, Bool, String
 Bool, String, Integer, Credential
 Integer, Password, GenericValue, String
When should the “Add Log Fields” activity be used?
 When the standard log message has to be customized by addingnew fieldsto it
 When logs need to be enabled
 When a log message with a maximum number of five visible fields needsto be generated
“Add Assets” in Orchestrator has the following option:
 Value Per Robot
 Value Per Environment
 Value Per Process
 Single Value
Which statement about the UiPath Robotic Enterprise Framework template
is false?
 The framework is meant to be a template that helpsthe user design processes.
 The framework can be used only if you get the input data from the UiPath server queues.
 The framework has a robust exception handling scheme and event logging.
In the UiPath Robotic Enterprise Framework template, where can the
GetAppCredentials workflow retrieve credentials from?
 Orchestrator Asset
 Windows Credential Manager
 User dialog
How can you retrieve the value stored in a Queue Item variable?
 Use the Deserialize Json activity
 Use the Deserialize Xml activity
 Use the SpecificContent property
Where should credentials be stored? Select all the options that apply.
 In Windows Credential Store.
 In Orchestrator, as assets.
 Directly inside the workflows, as variables.
In the UiPath Robotic Enterprise Framework template, what should be the
outcome of the Process Transaction state of the Main workflow when the
application loops back to the Get Transaction Item state?
 Success
 Businessrule exception
 Application exception
What layout should be used for UI navigation and data processing?
 Flowchart
 Sequence
 State Machine
After adding an Invoke Workflow File activity and selecting the workflow to
invoke, you need to:
 Click Import Arguments,and then bind the argumentstothe local variablesor to some default
values
 Click Edit Arguments,and then bind the argumentsto the local variablesor to some default values
In a Try Catch activity, how many times is the Finally section executed if no
error occurs in the Try section?
 Once
 The Finallysection is executed only when the Catch section is executed.
 Zero
Downloading a report from a web application takes a variable amount of
time, but a pop-up window is shown when the download is finished. What
should you do to check whether the file has been fully downloaded before
continuing the process?
 Use the On Element Appear activity and indicate the download pop-up window
 Use the Element Exist activityand indicate the download pop-up window
 Set the WaitForReadypropertyto Complete
In UiPath Robotic Enterprise Framework, what are the transitions of the
Init state?
 In the case of Success,the transition is to the Get Transaction Data state.
 In the case of System Error, the transition is to the Init state.
 In the case of Success,the transition is to the Process Transaction state.
 In the case of System Error, the transition is to the End Process state.
In which workflow in the UiPath Robotic Enterprise Framework template is
the retry mechanism implemented?
 The SetTransactionStatusworkflow
 The Main workflow
 The GetTransactionData workflow
Which of the following are considered best practices? Select all the options
that apply.
 Keepingenvironment settingshard coded inside workflows.
 Breakingthe process into smaller workflows.
 Reusing workflows across different projects.
What are the functions of the Outline panel?
 It shows the structure of the workflow
 It shows the execution result of the workflow
 If the Activitiesare properlynamed, it can be used to search and select specific Activitiesused
inside the workflow
In the UiPath Robotic Enterprise Framework template, what happens if the
processing of a transaction item fails with an Application Exception or a
System Error?
 The process executesthe End Process state.
 All used applicationsare closed and then re-initialized.
 The execution of the transaction item is retried if the MaxRetryNumber configvalue isgreater than
0.
Which Queue Item properties can be used to control the order in which the
items are processed?
 ItemInformation
 Priority
 Deadline
 Postpone
In the UiPath Robotic Enterprise Framework template, if a System Error is
encountered in the Process Transaction state of the Main workflow, which
state is executed next?
 Get Transaction Data
 Init
 End Process
Which is considered to be one of the best practices regarding the process
finalization?
 Leave the used applicationsopen, so that a person can inspect the result
 Leave the application in its initial state, so that we can execute the process again
 Restart the machine, so that anypotential problem can be fixed
Where should you store the environment settings that are prone to
changes?
 In Orchestrator, as assets
 Inside config files(.xml, .json, .xlsx, etc.)
 Directly inside the workflows, as hard coded values
What is the best way to select a row with a certain value from a column in
Excel?
 Use a Read Range activity to retrieve the contents of the Excel file, and then use a For Each activity
loop to iterate through the data and identifythe element.
 Use a Read Range Activity to retrieve the contents of the Excel file, and then use a Select method to
identifythe desired row.
 Use the Find functionality from Excel.
In the UiPath Robotic Enterprise Framework template, in the Main
workflow, the State Machine includes the following states:
 Init state
 Get transaction data state
 Process Transaction State
 Set Transaction State
 End Process State
Which of the following are required to have efficient execution of
automation projects?
 Proper exception handling
 Recovery abilities
 Effective logging mechanisms
How should a UiPath developer handle frequent changes in the project
files?
 By creating dailybackups of the files
 By usinga source control solution, such as SVN, TFS, etc.
 Old versions of the project files are not relevant
In the UiPath Robotic Enterprise Framework template, if a System Error is
encountered in the Init state of the Main workflow, which state is executed
next?
 Get Transaction Data
 Init
 End Process
When requesting a work item from Orchestrator Queues using the Get
Transaction Item activity, you need to specify the following:
 The name of the Queue which contains that specific work item
 The name of the Queue and the number of itemsto be retrieved
 The name of the Queue, the number of items, and a filteringexpression
When should the Simulate Type/Click property be used?
 Whenever supported by the target application
 Only when background automation is required
 Only for testing purposes

More Related Content

What's hot

Ch5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internetCh5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internetShih-Hsiang Lin
 
View api analytics
View api analyticsView api analytics
View api analytics
Son Nguyen
 
Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)
Clarence Ngoh
 
Extract Software by ExactSolid
Extract Software by ExactSolidExtract Software by ExactSolid
Extract Software by ExactSolid
Alexandre CAPONE
 
Windows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background AgentsWindows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background AgentsOliver Scheer
 
External identity
External identityExternal identity
External identity
Son Nguyen
 

What's hot (6)

Ch5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internetCh5 intent broadcast receivers adapters and internet
Ch5 intent broadcast receivers adapters and internet
 
View api analytics
View api analyticsView api analytics
View api analytics
 
Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)
 
Extract Software by ExactSolid
Extract Software by ExactSolidExtract Software by ExactSolid
Extract Software by ExactSolid
 
Windows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background AgentsWindows Phone 8 - 6 Background Agents
Windows Phone 8 - 6 Background Agents
 
External identity
External identityExternal identity
External identity
 

Similar to Ui path certificate question set 1

Ui path| RPA
Ui path| RPAUi path| RPA
Ui path| RPA
gokul krishna
 
A Brief Introduction to UiPath ReFramework.pptx
A Brief Introduction to UiPath ReFramework.pptxA Brief Introduction to UiPath ReFramework.pptx
A Brief Introduction to UiPath ReFramework.pptx
Adam John
 
Qtp Training
Qtp TrainingQtp Training
Qtp Trainingmehramit
 
Hybrid test automation frameworks implementation using qtp
Hybrid test automation frameworks implementation using qtpHybrid test automation frameworks implementation using qtp
Hybrid test automation frameworks implementation using qtp
abhijob
 
QTP Online Training
QTP Online TrainingQTP Online Training
QTP Online Training
QualityPoint Technologies
 
Spring batch
Spring batchSpring batch
Spring batch
Chandan Kumar Rana
 
Automation Tool QTP
Automation Tool  QTPAutomation Tool  QTP
Automation Tool QTP
BugRaptors
 
UI path Interview Question
UI path Interview Question UI path Interview Question
UI path Interview Question
ganesh kumar
 
What are the features in qtp
What are the features in qtpWhat are the features in qtp
What are the features in qtpRamu Palanki
 
Variables, Arguments & Imports.pptx
Variables, Arguments & Imports.pptxVariables, Arguments & Imports.pptx
Variables, Arguments & Imports.pptx
ApurbaSamanta9
 
How to ace your .NET technical interview :: .Net Technical Check Tuneup
How to ace your .NET technical interview :: .Net Technical Check TuneupHow to ace your .NET technical interview :: .Net Technical Check Tuneup
How to ace your .NET technical interview :: .Net Technical Check Tuneup
Bala Subra
 
Orchestrator - Practical Approach to host UiPath Orchestrator
Orchestrator - Practical Approach to host UiPath OrchestratorOrchestrator - Practical Approach to host UiPath Orchestrator
Orchestrator - Practical Approach to host UiPath Orchestrator
Vibhor Shrivastava
 
HP Quick Test Professional
HP Quick Test ProfessionalHP Quick Test Professional
HP Quick Test ProfessionalVitaliy Ganzha
 
IBM Business Automation Workflow
IBM Business Automation WorkflowIBM Business Automation Workflow
IBM Business Automation Workflow
Mohammed El Rafie Tarabay
 
Step types
Step typesStep types
Step types
vamshimahi
 

Similar to Ui path certificate question set 1 (20)

Ui path| RPA
Ui path| RPAUi path| RPA
Ui path| RPA
 
A Brief Introduction to UiPath ReFramework.pptx
A Brief Introduction to UiPath ReFramework.pptxA Brief Introduction to UiPath ReFramework.pptx
A Brief Introduction to UiPath ReFramework.pptx
 
Qtp Training
Qtp TrainingQtp Training
Qtp Training
 
Hybrid test automation frameworks implementation using qtp
Hybrid test automation frameworks implementation using qtpHybrid test automation frameworks implementation using qtp
Hybrid test automation frameworks implementation using qtp
 
About Qtp_1 92
About Qtp_1 92About Qtp_1 92
About Qtp_1 92
 
About QTP 9.2
About QTP 9.2About QTP 9.2
About QTP 9.2
 
About Qtp 92
About Qtp 92About Qtp 92
About Qtp 92
 
QTP Online Training
QTP Online TrainingQTP Online Training
QTP Online Training
 
Spring batch
Spring batchSpring batch
Spring batch
 
Automation Tool QTP
Automation Tool  QTPAutomation Tool  QTP
Automation Tool QTP
 
UI path Interview Question
UI path Interview Question UI path Interview Question
UI path Interview Question
 
What are the features in qtp
What are the features in qtpWhat are the features in qtp
What are the features in qtp
 
Qtp Training
Qtp TrainingQtp Training
Qtp Training
 
Variables, Arguments & Imports.pptx
Variables, Arguments & Imports.pptxVariables, Arguments & Imports.pptx
Variables, Arguments & Imports.pptx
 
How to ace your .NET technical interview :: .Net Technical Check Tuneup
How to ace your .NET technical interview :: .Net Technical Check TuneupHow to ace your .NET technical interview :: .Net Technical Check Tuneup
How to ace your .NET technical interview :: .Net Technical Check Tuneup
 
Orchestrator - Practical Approach to host UiPath Orchestrator
Orchestrator - Practical Approach to host UiPath OrchestratorOrchestrator - Practical Approach to host UiPath Orchestrator
Orchestrator - Practical Approach to host UiPath Orchestrator
 
HP Quick Test Professional
HP Quick Test ProfessionalHP Quick Test Professional
HP Quick Test Professional
 
IBM Business Automation Workflow
IBM Business Automation WorkflowIBM Business Automation Workflow
IBM Business Automation Workflow
 
Hybrid framework
Hybrid frameworkHybrid framework
Hybrid framework
 
Step types
Step typesStep types
Step types
 

Recently uploaded

Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
Mohammed Sikander
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
DhatriParmar
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 

Recently uploaded (20)

Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
The Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptxThe Diamond Necklace by Guy De Maupassant.pptx
The Diamond Necklace by Guy De Maupassant.pptx
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 

Ui path certificate question set 1

  • 1. Which of the following types of variables can be defined in UiPath Studio?  GenericValue.  DataTable  Number. Which of the following SQL statements can be executed by using the activity called Execute Non Query?  Insert  Update  Select  Delete What type of argument can you define to pass data and retrieve the modified value from an invoked workflow?  In  In/Out.  Out. Which statements are true regarding the Write Line and the Log Message activities?  By usinga Log Message activity, you can set different levelsof tracing.  Write Line is just a Log Message set on Trace.  By usingany of them, you generate tracesin the Output panel and also in the log files. At the end of the execution of Workflow1, which retrieves some items from a database, is the database connection closed automatically?  Yes, the connection is closed after 30 seconds.  The connection has to be closed usinga Disconnect activity.
  • 2.  Only the database admin can decide this aspect. Where can we see the logs generated by running robots?  In the Output panel.  In the local Logs folder.  In the Orchestrator logs. What is the robot able to do when the Full Text scraping method is used?  Get font information (size, colour).  Get hidden information.  Get editable text.  Get the entire visible text. Which of the following technologies can be used for background automation?  The Click activity with the Simulate Click flag checked.  Data Scraping.  The Full Text method of Screen Scraping.  Type into activity with SendWindowMessagesflag checked. How can you provide more details to explain the purpose of the activities in a workflow?  By addingactivityAnnotations.  By usinga Comment Out activity.  By usingthe Comment activity. Which activity is used to call another piece of automation?  Open Application
  • 3.  Invoke Workflow File  Flowchart. Which of the following statements related to Orchestrator are true?  Robots can be assigned to multiple environments.  A robot can execute manydifferent jobs at the same time.  A robot can execute manydifferent jobs one after the other. What is the best way of restricting the access of a person to a limited number of pages in Orchestrator?  That option does not exist. Everyone is able to see everything  By changingthe rightsof the Administrator tothe desired state.  By creatinga different account and role for that person. When creatinga new role, restrictionscan be applied. What robot state is displayed on the Robots page while a job is being executed?  Busy  Runnning  Pending What do the Items in the Orchestrator queues consist of? Select all the options that apply.  Input data for the processes executed bythe robots  Jobs to be executed by the robots  Processes to be executed by the robots What is the relation between environments and provisioned robots?
  • 4.  One robot can be assigned to multiple environments.  One robot can be assigned to a single environment only.  An environment can contain multiple robots.  An environment can contain a single robot only. What happens if you try to end the execution of a job by clicking the Stop/Cancel button in UiPath Orchestrator?  The execution process is killed.  The execution is not impacted if no Should Stop activity hasbeen included in the workflow in Studio.  The job state is changed to Canceled/Stopped, even ifno Should Stop activity was used. What happens when a new version of a package is published?  The processes usingthe package are automaticallyupdated to the latest version  The processes have to be updated in order for the robots to run the latest version of the package  The old version of the package is overwritten What types of assets can be stored in Orchestrator?  Array, Datatable, Bool, String  Bool, String, Integer, Credential  Integer, Password, GenericValue, String When should the “Add Log Fields” activity be used?  When the standard log message has to be customized by addingnew fieldsto it  When logs need to be enabled  When a log message with a maximum number of five visible fields needsto be generated “Add Assets” in Orchestrator has the following option:
  • 5.  Value Per Robot  Value Per Environment  Value Per Process  Single Value Which statement about the UiPath Robotic Enterprise Framework template is false?  The framework is meant to be a template that helpsthe user design processes.  The framework can be used only if you get the input data from the UiPath server queues.  The framework has a robust exception handling scheme and event logging. In the UiPath Robotic Enterprise Framework template, where can the GetAppCredentials workflow retrieve credentials from?  Orchestrator Asset  Windows Credential Manager  User dialog How can you retrieve the value stored in a Queue Item variable?  Use the Deserialize Json activity  Use the Deserialize Xml activity  Use the SpecificContent property Where should credentials be stored? Select all the options that apply.  In Windows Credential Store.  In Orchestrator, as assets.  Directly inside the workflows, as variables.
  • 6. In the UiPath Robotic Enterprise Framework template, what should be the outcome of the Process Transaction state of the Main workflow when the application loops back to the Get Transaction Item state?  Success  Businessrule exception  Application exception What layout should be used for UI navigation and data processing?  Flowchart  Sequence  State Machine After adding an Invoke Workflow File activity and selecting the workflow to invoke, you need to:  Click Import Arguments,and then bind the argumentstothe local variablesor to some default values  Click Edit Arguments,and then bind the argumentsto the local variablesor to some default values In a Try Catch activity, how many times is the Finally section executed if no error occurs in the Try section?  Once  The Finallysection is executed only when the Catch section is executed.  Zero Downloading a report from a web application takes a variable amount of time, but a pop-up window is shown when the download is finished. What should you do to check whether the file has been fully downloaded before continuing the process?  Use the On Element Appear activity and indicate the download pop-up window  Use the Element Exist activityand indicate the download pop-up window
  • 7.  Set the WaitForReadypropertyto Complete In UiPath Robotic Enterprise Framework, what are the transitions of the Init state?  In the case of Success,the transition is to the Get Transaction Data state.  In the case of System Error, the transition is to the Init state.  In the case of Success,the transition is to the Process Transaction state.  In the case of System Error, the transition is to the End Process state. In which workflow in the UiPath Robotic Enterprise Framework template is the retry mechanism implemented?  The SetTransactionStatusworkflow  The Main workflow  The GetTransactionData workflow Which of the following are considered best practices? Select all the options that apply.  Keepingenvironment settingshard coded inside workflows.  Breakingthe process into smaller workflows.  Reusing workflows across different projects. What are the functions of the Outline panel?  It shows the structure of the workflow  It shows the execution result of the workflow  If the Activitiesare properlynamed, it can be used to search and select specific Activitiesused inside the workflow
  • 8. In the UiPath Robotic Enterprise Framework template, what happens if the processing of a transaction item fails with an Application Exception or a System Error?  The process executesthe End Process state.  All used applicationsare closed and then re-initialized.  The execution of the transaction item is retried if the MaxRetryNumber configvalue isgreater than 0. Which Queue Item properties can be used to control the order in which the items are processed?  ItemInformation  Priority  Deadline  Postpone In the UiPath Robotic Enterprise Framework template, if a System Error is encountered in the Process Transaction state of the Main workflow, which state is executed next?  Get Transaction Data  Init  End Process Which is considered to be one of the best practices regarding the process finalization?  Leave the used applicationsopen, so that a person can inspect the result  Leave the application in its initial state, so that we can execute the process again  Restart the machine, so that anypotential problem can be fixed Where should you store the environment settings that are prone to changes?
  • 9.  In Orchestrator, as assets  Inside config files(.xml, .json, .xlsx, etc.)  Directly inside the workflows, as hard coded values What is the best way to select a row with a certain value from a column in Excel?  Use a Read Range activity to retrieve the contents of the Excel file, and then use a For Each activity loop to iterate through the data and identifythe element.  Use a Read Range Activity to retrieve the contents of the Excel file, and then use a Select method to identifythe desired row.  Use the Find functionality from Excel. In the UiPath Robotic Enterprise Framework template, in the Main workflow, the State Machine includes the following states:  Init state  Get transaction data state  Process Transaction State  Set Transaction State  End Process State Which of the following are required to have efficient execution of automation projects?  Proper exception handling  Recovery abilities  Effective logging mechanisms How should a UiPath developer handle frequent changes in the project files?  By creating dailybackups of the files  By usinga source control solution, such as SVN, TFS, etc.
  • 10.  Old versions of the project files are not relevant In the UiPath Robotic Enterprise Framework template, if a System Error is encountered in the Init state of the Main workflow, which state is executed next?  Get Transaction Data  Init  End Process When requesting a work item from Orchestrator Queues using the Get Transaction Item activity, you need to specify the following:  The name of the Queue which contains that specific work item  The name of the Queue and the number of itemsto be retrieved  The name of the Queue, the number of items, and a filteringexpression When should the Simulate Type/Click property be used?  Whenever supported by the target application  Only when background automation is required  Only for testing purposes