Can anyone help find the correct answer for this and give me a brief explanation on the answer please!

A developer needs a robot that can interact with the screen and work alongside a user during automation execution. Which deployment option is most suitable?

A. Cloud Robot - Serverless
B. Cloud Robot - VM
C. Unattended Robot in a locked session
D. Background Process

The requirement says the robot must:

  • Interact with the screen (UI automation)
  • Work alongside a user during execution

This clearly describes an Attended Robot, which:

  • Runs on the user’s machine
  • Operates in the same session
  • Requires the user to be present and logged in
  • Can interact directly with the UI in real time

Evaluate the options:

  • A. Cloud Robot - Serverless → Unattended, runs in the cloud without user interaction :cross_mark:
  • B. Cloud Robot - VM → Also unattended, executes independently of the user :cross_mark:
  • C. Unattended Robot in a locked session → Cannot interact with a user; session is locked :cross_mark:
  • D. Background Process → Does not interact with the UI :cross_mark:

Correct conclusion:

None of the provided options match the requirement.

The correct deployment option should be: Attended Robot (not listed).


If you must choose from the given options:

:backhand_index_pointing_right: None are suitable - this is likely a trick question to test understanding of robot types.