🔴 29. UiPath Scenario Based Questions for Interview 6+ Year | Mock Interview Questions & Answers

Поделиться
HTML-код
  • Опубликовано: 7 сен 2024

Комментарии • 15

  • @AbhimanSahoo-yd9qg
    @AbhimanSahoo-yd9qg Месяц назад +2

    Hi Mukesh...Interviewers are still asking scenario-based questions for even 8+ years of experience people ...m adding examples qns below..it would be great if you can ask as per below🙂
    1- You uploaded data using add queue item. To get the item you use get transaction item by passing queue name. The status of that particular transaction is in progress. However, in add transaction item the status is already in progress, here you cannot use get transaction. So how you will get the queue item?
    2- If you have to schedule two bots and to execute a particular job; the two bots has to run interchangeably throughout the day. One bot can run 50 invoices in two hrs; while first bot is running; second bot will run another 50 invoices. Assume 500 invoices are there and you have only one application, you cannot have both the bots accessing the application at the same time. Still they have to process one by one invoices. How to achieve this?
    3- you have three sequences (mutually exclusive) in process transaction state. Sequence 1 is processed by bot. Bot failed in sequence two. Bot should process from sequence two. Bot should not process from sequence one. How to do it?
    I am still not clear of the answers for above qns. It would be helpful if you can please answer these for me.

    • @MukeshKala
      @MukeshKala  Месяц назад

      1. When you add items first time , its always new and would move to In progress only by get transaction item, add transaction does not update the status to In Progress.
      2- The whole idea of multi processing it that robots work in different machine and process the item individually y. This means that the application should be available in both the computers to run them parallel - if the application does not have multiple instances then it cannot work parallelly.
      3. Maintain the status of the execution - it can done using assets , logs or simply by updating a flag - During the execution - check the status and depending on that we decide where to start.

    • @AbhimanSahoo-yd9qg
      @AbhimanSahoo-yd9qg Месяц назад

      @@MukeshKala Thank you for your reply but
      1- How you will get the queue item?
      2- Still How to process one by one invoices ? How to achieve this?
      Thank you

    • @vishaltripathi3139
      @vishaltripathi3139 Месяц назад +1

      @@AbhimanSahoo-yd9qg You can't Achieve this parallely . if you want to run parallelly then two separate login should be provided with a condition that muliple login can be attempted .

  • @akhilnaidu4173
    @akhilnaidu4173 Месяц назад +2

    Hey Mukesh, could you please create a playlist on SAP automation?

    • @MukeshKala
      @MukeshKala  Месяц назад

      For SAP we need an Enterprise Licence and Unfortunately I don't have it , Even i struggle to get the community version for SAP.

  • @marutimali8410
    @marutimali8410 Месяц назад +1

    Hello Mukesh, please create a video on End to end project in the studio.

    • @MukeshKala
      @MukeshKala  Месяц назад

      Uploaded here with Code as well : Practice End to End Use Cases
      ruclips.net/p/PLEYSwx3duQ2A6zGKqO5RvSBartYnHx6pG

    • @marutimali8410
      @marutimali8410 Месяц назад

      @@MukeshKala thank you...

  • @sidramh516
    @sidramh516 Месяц назад +1

    Suppose you purchased an Adobe service and received two complementary software applications. When you launch Adobe via the RPA tool, the two complementary applications also start, which causes the bot to fail. How can you handle this issue?

    • @MukeshKala
      @MukeshKala  Месяц назад

      When we open the program programmatically then you might be getting the issue. One thing you can try is : Open the software in a way the human opens - Double clicking on the desktop shortcut

  • @rahulk1716
    @rahulk1716 Месяц назад +1

    Hii Mukesh
    Where do we write a consolidated report in REFramework?

    • @MukeshKala
      @MukeshKala  Месяц назад

      It can be simply written in a Excel and we can have a separate robot called reporter whose job would be to just get the reports from the queue.

    • @rahulk1716
      @rahulk1716 Месяц назад

      Okay
      If I want to code it RE template where should I do it

    • @vishaltripathi3139
      @vishaltripathi3139 Месяц назад

      @@rahulk1716 in the end Process with a condition that if transaction item is there then Report should start generated 7 if not then Close the Application .