<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Venkatasurya on Medium]]></title>
        <description><![CDATA[Stories by Venkatasurya on Medium]]></description>
        <link>https://medium.com/@venkatasurya340?source=rss-ce177293996d------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/0*TkAJJAVjGAh0NHdg</url>
            <title>Stories by Venkatasurya on Medium</title>
            <link>https://medium.com/@venkatasurya340?source=rss-ce177293996d------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Sun, 24 May 2026 02:25:09 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@venkatasurya340/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[UIPath Interviews]]></title>
            <link>https://medium.com/@venkatasurya340/uipath-interviews-40fbf1be8b88?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/40fbf1be8b88</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Sat, 24 Jun 2023 06:22:02 GMT</pubDate>
            <atom:updated>2023-06-24T06:22:02.862Z</atom:updated>
            <content:encoded><![CDATA[<ol><li>Your main Workflow should ask user to Provide 2 numbers. However, you can not sum those numbers in the main workflow. Show how you can use argument in this scenario?</li></ol><figure><img alt="" src="https://cdn-images-1.medium.com/max/587/1*zJ8HWoE9FllHdxtt4BOkig.png" /></figure><p>2. Let’s say there is an array which contains names of various objects. let’s</p><p>Consider an array variable.arrayofobjects={Pen,Mobile,Pencile,Charger,Key</p><p>You will ask user to type any one object name using an input dialog box</p><p>Design a workflow which will show the index number of the entered object in the array.</p><p>For Example: If user enters Pencil-The Output should show the Pencil is located in the index number 2</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/697/1*1tVvM6Z5jb_h_AiV-pYvmQ.png" /></figure><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=40fbf1be8b88" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[ExpoHub-RE Framework Chapter 1]]></title>
            <link>https://medium.com/@venkatasurya340/expohub-re-framework-chapter-1-f8a253be086b?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/f8a253be086b</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Thu, 22 Jun 2023 11:45:24 GMT</pubDate>
            <atom:updated>2023-06-22T11:45:24.990Z</atom:updated>
            <content:encoded><![CDATA[<ol><li>Linear Process:</li></ol><p>-Run Once</p><p>-This is not very suitable for repetitive process one email-Process</p><ol><li>Iterative Process</li></ol><p>Get Data Once and Processing data multiple times</p><p>Drawback-If once of the email has some Problem then your entire workflow will fail</p><ol><li>Transactional Process</li></ol><p>Robotic Enterprise Framework</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=f8a253be086b" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[LINQ QUERY]]></title>
            <link>https://medium.com/@venkatasurya340/linq-query-1afe1055146f?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/1afe1055146f</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Wed, 21 Jun 2023 13:42:30 GMT</pubDate>
            <atom:updated>2023-06-21T14:21:14.230Z</atom:updated>
            <content:encoded><![CDATA[<p>(</p><p>From Variable DataRow in Array DataTable</p><p>Group/Join/Order …</p><p>Where/Let Condition</p><p>Select Variable DataRow</p><p>).To</p><p>NumbersArray={1,2,3,4,5,6,7,8,9,10}</p><p>(</p><p>From num in NumbersArray</p><p>)</p><p>(</p><p>From num In NumbersArray</p><p>Where num Mod 2 = 0</p><p>Select num</p><p>).ToArray</p><p>Only print the Even Numbers</p><p>Find the Number values counts</p><p>(</p><p>From num In NumberArray</p><p>Where num Mod 2 =0</p><p>Select num</p><p>).Count</p><p>Find the Count=2 values</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/260/1*9NWc3LbpSFbnM1Kei7fvAw.png" /></figure><p>(</p><p>From row in Ex_table</p><p>Where cint(row(“Count”)=2</p><p>Select row</p><p>).CopyToDataTable</p><p>Group Variable By a=.. Intogrp=Group</p><p>Find the Unique Values of the String</p><p>(</p><p>From row In DT2</p><p>Group row By a=row(“City”) Into grp=Group</p><p>Select grp.First</p><p>).CopyToDataTable</p><p>Uniqu colums and add row both</p><p>(</p><p>From row In DT1</p><p>Group row By a = row(“Category”) Into grp=Group</p><p>Let xSum=grp.Sum(Function(x) CDbl(x(“Price”).ToString.Trim))</p><p>Select Out.Rows.Add({a,xSum})</p><p>).CopyToDataTable</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=1afe1055146f" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Action Center]]></title>
            <link>https://medium.com/@venkatasurya340/action-center-357ae00ce577?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/357ae00ce577</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Mon, 19 Jun 2023 06:25:54 GMT</pubDate>
            <atom:updated>2023-06-19T06:25:54.695Z</atom:updated>
            <content:encoded><![CDATA[<p>Concept Behind Action Center Let’s Start with an Example</p><p>Hai surya today 100 PDF Task to Process</p><ol><li>Partial Automation</li><li>Unattended Robot</li><li>Concept Behind action Center</li></ol><p>1 Read Data</p><p>Agenda:</p><p>How to Use UiPath Action Center</p><ol><li>Enable Action Center in Cloud.uipath.com</li><li>UiPath.FormActivityLibrary</li><li>Uipath.Persistence.Activities</li></ol><p>4.Packages</p><p>enable Project Setting support Persistence</p><p>Building Bot:</p><p>Approve</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=357ae00ce577" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[What Is API]]></title>
            <link>https://medium.com/@venkatasurya340/what-is-api-d63836e7b48f?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/d63836e7b48f</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Mon, 19 Jun 2023 04:43:48 GMT</pubDate>
            <atom:updated>2023-06-19T04:43:48.627Z</atom:updated>
            <content:encoded><![CDATA[<ol><li>Browser Converts the URL to HTTP Request</li><li>HTTP Request Contains Headers and Body</li><li>HTTP Request</li><li>Api Application Programming Integration</li><li>UiPath.web.api</li></ol><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=d63836e7b48f" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[GitHub]]></title>
            <link>https://medium.com/@venkatasurya340/github-fd8e7d788d0b?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/fd8e7d788d0b</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Fri, 16 Jun 2023 07:04:55 GMT</pubDate>
            <atom:updated>2023-06-16T07:04:55.172Z</atom:updated>
            <content:encoded><![CDATA[<ol><li>first Create Git repositor</li><li>open UiPath Studio</li><li>Add to source control</li><li>Git Init</li><li>Go to Team and select Git Init create git folder</li><li>How to delete repositor go to GitHub select setting go down some delete option is there enter the repositor name delete</li><li>Local Repository-Commit-Save the activity after the commit and Push</li><li>Remote Repository-Push</li></ol><p>9. first Pull the GitHub</p><p>10. any activity delete or add or Modified all Change show go to UiPath Studio right click the project folder show changes</p><p>11. Solve Conflicts During GitHub</p><p>Developer1 work on main.xmal</p><p>Developer2 work on Same main.xmal file</p><p>The current branch is out of date means developer 2 already push code GitHub</p><p>some developer1 pull (rebase) check the what kind of change then after developer 1 push the code</p><p>Choose left Developer2 code correct</p><p>Choose right Developer1 code correct</p><p>Data Processing Branch Created and required Xaml file has create, dev1 and dev2 need to work on this module</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=fd8e7d788d0b" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Artificial Intelligence]]></title>
            <link>https://medium.com/@venkatasurya340/artificial-intelligence-b895e5689dab?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/b895e5689dab</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Thu, 15 Jun 2023 09:09:38 GMT</pubDate>
            <atom:updated>2023-06-15T09:13:48.733Z</atom:updated>
            <content:encoded><![CDATA[<p><strong>What is AI?</strong></p><p>●Intelligence demonstrated by the Machines in contrast to Natural Intelligence delivered by Humans</p><p>●Intelligence is given by feeding the experience of human to machines in the form of data</p><p><strong>Why AI?</strong></p><p>●AI automates repetitive learning and discovery through data</p><p>●AI adds intelligence</p><p>●AI analyzes more and deeper data</p><p>●AI achieves incredible accuracy</p><p>●24x7</p><p>●Reduces Man power</p><p><strong>How AI?.</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/866/1*j1cV5PMJ9_0X838K8lbozA.png" /></figure><p><strong>Applications of AI</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/295/1*dVwhn591Fre_L3wYdMCtaQ.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*Cl3RuhWDXnNzyX_XBKmGMg.png" /></figure><p><strong>AI in Agriculture.</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/331/1*_TlcK3HhFlCXfYUW_PFnJg.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*6SIuFOCVmorNJlNVAY2iZg.png" /></figure><p><strong>AI in Voice Assistance</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*7x_lu_rGXbZQbDhNzgK98A.png" /></figure><p><strong>AI in Autonomous Vehicle</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/380/1*t1MAQ5k_apXb_oAqLhG0PQ.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*rbfN40395ytBd3TfEufzoA.png" /></figure><p><strong>AI in Search Engine</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*q578dkryoWbg31mDlkp4vg.png" /></figure><p><strong>AI in Social Media &amp; Other.</strong></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*a2KlyJr6KaNLc7N3toY26Q.png" /></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/225/1*M4IaSgBn9V_6QOwVxh4HWw.png" /></figure><p><strong>Dialogflow</strong></p><p>Dialog flow is a natural language understanding platform used to design and integrate a conversational user interface into mobile apps, web applications, devices, bots, interactive voice response systems, and so on.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/694/1*U0WbAIaTt8wcXFAxkSclUw.png" /></figure><p>●Small Talk</p><p>●Intents</p><p>●Entity</p><p>●Integration</p><p>●Pre built Agents</p><p><strong>Applications of Chatbot.</strong></p><p>1.Voice Assistance</p><p>2.Social Media</p><p>3.Customer Support</p><p>4.Helpdesk</p><p>5.Medical Assistance</p><p>6.Restaurant</p><p>7.Transportation</p><p>8.E-Commerce</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/840/1*lBhDZKvFiJNrA8VBU3559Q.png" /></figure><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=b895e5689dab" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Document Understanding]]></title>
            <link>https://medium.com/@venkatasurya340/document-understanding-c07471787baa?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/c07471787baa</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Wed, 14 Jun 2023 12:32:48 GMT</pubDate>
            <atom:updated>2023-06-14T12:32:48.683Z</atom:updated>
            <content:encoded><![CDATA[<ol><li>Structured</li><li>Unstructured</li><li>Semi Structure document Processing</li></ol><p><strong>Document Understanding is ability</strong></p><ol><li>Extract Data</li><li>Interpret information</li><li>Interpret Meaning</li></ol><p>Data Extraction Methodologies</p><p>Data Positions</p><p>Data Variables</p><p>Regex</p><p>Selectors</p><p>1.Rule Base</p><p>2.Model Based</p><p>Semi or Unstructured Data</p><p>Machine learning Pretrained ML models/Retraining</p><p>3.Hybrid</p><p>Document Understanding Framework Steps</p><ol><li>Taxonomy</li><li>Digitization</li><li>Classification</li><li>Extraction</li><li>Validation</li><li>Export</li><li>Train</li></ol><p>Enterprise Name</p><p>1.Acc.</p><p>Invoices Receipts</p><p>2.HR</p><p>Resume Passport Pan Card</p><p>3.IT</p><p>Forms Catalogs Requests SOP</p><p>4.Marketing</p><p>Presales add Campaigns Agreements</p><p>Taxonomy means: the scientific Process of arranging things into group</p><p>Uipath.intelligentOCR.Activities</p><ol><li>How many steps do you have in Uipath Document understanding framework</li></ol><p>7</p><p>2.What is taxonomy in uipath Du?</p><p>Arranging</p><p>3. Can you name one Package you need to install for document understanding</p><p>Uipath.intel.ocr</p><p>Digitization means: Converting the document into readable Digital Format</p><ol><li>Non Digital Documents</li></ol><p>Scanned Documents</p><p>Receipts/images</p><ol><li>Digital Documents</li><li>What is Digitization in Uipath Du</li><li>Is OCR Engine is used every time in the Digitize Process</li></ol><p>Only required Non Digitization OCR</p><ol><li>What are the O/P of Digitization step in Document understanding</li></ol><p>Document Text</p><p>Document Object Model</p><ol><li>What is the Purpose of Classify Document Scope activity in Du</li></ol><p>Keyword Based Classifier</p><p>2. What is Keyword Base Classifier</p><p>Every document each and classifier</p><p>3.What is the output of Classify document scope activity</p><ol><li>Name 3 Major Categories of Extractor availables on Uipath</li></ol><p>Form Based Extract</p><p>Machine learning Extract</p><p>Regex Extract</p><p>2.Where exaxctly you create templates for the document types from taxonomy</p><p>Form Based Extract</p><p>3.How will you validate the extracted results of Data Extraction Scope</p><p>Present Validation Station</p><p>4.How will you export the validated result</p><p>Export Extraction result</p><p>5. what will you train in Document Understanding and when you should do it</p><p>Classifier</p><p>Extract data</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=c07471787baa" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Reframe Works]]></title>
            <link>https://medium.com/@venkatasurya340/reframe-works-873c3ff601f1?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/873c3ff601f1</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Wed, 14 Jun 2023 05:15:32 GMT</pubDate>
            <atom:updated>2023-06-14T05:15:32.952Z</atom:updated>
            <content:encoded><![CDATA[<p>Intialization</p><ul><li>Config</li><li>Kill open application</li><li>Intiliaze all application</li></ul><p>Get Transaction Data:</p><p>Getting transaction items from the queue</p><p>Process Transaction Data</p><ol><li>Process-successfully</li><li>Incorrect data-Business Rule Exception</li><li>Application Freeze or System Freeze or failure</li></ol><p>2.InitAllSettings</p><p>1.Explain all the .xaml files of ReFramework</p><p>Total 9 files</p><p>2.How many times config file run</p><p>only one time</p><p>3. Explain the different between init all setting and init all Application.xaml</p><p>Reading the config file and Setting and Constants</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=873c3ff601f1" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[RPA Interview Question]]></title>
            <link>https://medium.com/@venkatasurya340/rpa-interview-question-52c14bdd3fcf?source=rss-ce177293996d------2</link>
            <guid isPermaLink="false">https://medium.com/p/52c14bdd3fcf</guid>
            <dc:creator><![CDATA[Venkatasurya]]></dc:creator>
            <pubDate>Tue, 13 Jun 2023 06:52:48 GMT</pubDate>
            <atom:updated>2023-06-13T06:52:48.207Z</atom:updated>
            <content:encoded><![CDATA[<ol><li>Explain me about RPA</li></ol><p>Robotic Process Automation is a type of automation where a computer based Robot mimics human action to complete the rule based task. It is used to automate Business Process. Automating a Business Process by a Robot is called RPA</p><p>Example</p><p>RPA is used for Payroll Processing</p><p>For Customer Order Processing</p><p>Automatic Ticket/Incident Processing</p><p>2. Tell Me something about RPA Life Cycle</p><p>RPA Life Cycle is nothing but the phases using which the bot is developed from scratch</p><p>Broadly categorized into 4 phases</p><p><strong>Analysis Phase</strong>: Bot development starts with Analysis of the current business process this is done by the Business Team, Business Analyst and Solution Architect</p><p><strong>Bot Development</strong></p><p><strong>Testing</strong></p><p><strong>Deployment and Maintenance</strong></p><p>3. What are the components of UiPath</p><p><strong>UiPath Studio</strong>: platform for development of bots</p><p>UiPath Assistant/UiPath Robot/UiPath Agent: platform to execute the automation workflows designed in studio</p><p><strong>UiPath Orchestrator:</strong> Platform to add machines, robots, manage robots, packages, monitoring of bots</p><p>4. Why should you use RPA, Can you describe it’s benefits</p><p>1.Save Money: you can automate different kinds of manual and repetitive tasks</p><p>reduce workforce and save money</p><p>2.Less Error and More Accuracy</p><p>3.Less coding Requirement</p><p>4.Less Processing time</p><p>5.Less time to develop and implement Project</p><p><strong>5. What is the difference between Full Selectors and Partial Selectors</strong></p><p>Full Selectors</p><p>This type of Selectors contains all the UI(user interface) Elements including the tope level window</p><p>Generated by Basic Recorder</p><p>Recommended while working on Multiple windows</p><p>Partial selectors:</p><p>Do not contain information about the top level window</p><p>Generated by desktop recorder</p><p>Enclosed with in an container Attach window or Attach Browser activity</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=52c14bdd3fcf" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>