UiPath UiPath-ADPv1 Exam
UiPath Automation Developer Professional v1 (Page 8 )

Updated On: 1-Feb-2026

A developer extracts a date from an email. The date will always be In the same format and always from the past. Some examples of this format are: "3 Mar 2023". "20 Nov 2021". The name of the variable where the date is saved is DateString What expression should the developer use to check If the extracted date is within the last 7 days?

  1. (DateTime.Now - DateTime.ParseExact(DateString. "dd MMM yyyy".
    Culturelnfo.lnvariantCulture)).Days < 7
  2. (DateTime.Now - DateTime.ParseExact(DateStnng. *dd MMM yyyyH.
    Culturelnfo.lnvariantCulture)).AddDays(-7) > 0
  3. (DateTime.Now - DateTime.ParseExact(DateStrlng, "d MMM yyyy".
    Culturelnfo.lnvariantCulture)).Days < 7
  4. DateTime Parse(DateTime Now - DateString) Days < 7

Answer(s): C

Explanation:

The date is in the format "d MMM yyyy" (e.g., "3 Mar 2023").

The correct expression is: (DateTime.Now - DateTime.ParseExact(DateString, "d MMM yyyy", CultureInfo.InvariantCulture)).Days < 7.

This expression calculates the difference in days between the current date (DateTime.Now) and the parsed date (DateTime.ParseExact(DateString, "d MMM yyyy", CultureInfo.InvariantCulture)).

It then checks if this difference is less than 7 days, which means the date is within the last 7 days.



Given the following conditional breakpoint with count = 0



Conditional breakpoint settings:



How many limes will UiPath be displayed in the Output panel before the process goes into a Paused state in Debug mode?

  1. 4
  2. 3
  3. 2
  4. 5

Answer(s): A



In a UlPath State Machine, what Is the primary function or the Trigger section of a State activity?

  1. To execute the final state actions before terminating the state machine.
  2. To specify the condition or event that initiates a transition from the current state
  3. To define the entry actions when transitioning into a state.
  4. To establish the exit actions when moving out of a state.

Answer(s): B

Explanation:

In a UiPath State Machine, the Trigger section of a State activity is used to specify the condition or event that initiates a transition from the current state to another state.



Which activity Is specific tor Ul synchronization in UlPath Studio?

  1. Get Processes
  2. Use Applicationy/Browser
  3. Check App State
  4. Process Start Trigger

Answer(s): C

Explanation:

The Check App State activity is specifically designed for UI synchronization. It checks the state of a UI element, ensuring that subsequent actions are performed when the UI element is in the desired state.



A developer needs to design a process using the REFramework. but without Orchestrator Queues.
Which Is the correct order of actions the developer needs to do in the Get Transaction Data state in this case?

  1. 1. Remove the Get Transaction Item activity from GetTransactionData workflow.

    2. Add a Read Range activity in GetTransactionData workflow to read the data from a local Excel file.
    3. Add the logic required to read the data source only one time.
    4 Add the logic required to retrieve only one row from read data each time
    5. Add the logic required to check if all rows/transaction items from the read data have been processed.
  2. 1. Remove the Get Transaction Item activity from GetTransactionData workflow
    2. Add a Read Range activity in GetTransactionData workflow to read the data from a local Excel file.
    3. Add the logic required to read the data source only one time.
    4. Add the logic required to retrieve only one row from read data each time.
  3. 1. Remove the Get Transaction Item activity from GetTransactionData workflow.
    2. Add a Read Row activity in GetTransactionData workflow to read the data from a local Excel file.
    3. Add the logic required to read the data source only one time.
    4. Add the logic required to retrieve only one row from read data each time.
    5. Add the logic required to check if all rows/transaction items from the read data have been processed.
  4. 1. Remove the Get Transaction Item activity from GetTransactionData workflow.
    2. Add a Read Row activity in GetTransactionData workflow to read the data from a local Excel file.
    3. Add the logic required to read the data source only one time.
    4. Add the logic required to check if all rows/transaction items from the read data have been processed

Answer(s): A

Explanation:

The correct order of actions in the Get Transaction Data state is:

Remove the Get Transaction Item activity from the GetTransactionData workflow.

Add a Read Range activity in the GetTransactionData workflow to read the data from a local Excel file.

Add the logic required to read the data source only one time.

Add the logic required to retrieve only one row from read data each time.

Add the logic required to check if all rows/transaction items from the read data have been processed.

This sequence ensures that the data is read once, processed row by row, and checks for completion.



Viewing page 8 of 39
Viewing questions 36 - 40 out of 187 questions



Post your Comments and Discuss UiPath UiPath-ADPv1 exam prep with other Community members:

Join the UiPath-ADPv1 Discussion