Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Jio Team. If you also belong to the team, you can get access from here

Jio Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 22k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Jio Automation Anywhere Developer Interview Questions, Process, and Tips

Updated 25 Jul 2024

Jio Automation Anywhere Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Walk-in and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

Answer the questions

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is installation process
  • Ans. 

    The installation process involves setting up the necessary software and configurations to run Automation Anywhere on a system.

    • Download the Automation Anywhere installation file from the official website

    • Run the installation file and follow the on-screen instructions

    • Choose the installation directory and configure any additional settings

    • Complete the installation process and launch Automation Anywhere to start using it

  • Answered by AI
  • Q2. What are the different layer of osi model
  • Ans. 

    The OSI model consists of seven layers that define the functions of a network communication system.

    • Physical layer: Deals with physical connections and transmission of raw data.

    • Data link layer: Manages data frames and error detection.

    • Network layer: Handles routing and logical addressing.

    • Transport layer: Ensures end-to-end communication and error recovery.

    • Session layer: Manages sessions between applications.

    • Presentation ...

  • Answered by AI
  • Q3. How many sim one man active in daily basis
  • Ans. 

    The question is unclear and does not make sense.

    • The question seems to be asking about the number of SIM cards one person uses on a daily basis, but it is not clear.

    • It is important to clarify the question before providing an answer.

    • Examples of clarification questions could be: Are you asking about the number of SIM cards used for personal or work purposes? Are you asking about the number of SIM cards used in different d...

  • Answered by AI
  • Q4. How many sim one man active in daily basis this
  • Ans. 

    The question is unclear and seems to be asking about the number of SIM cards one person uses on a daily basis.

    • The question may be asking about the number of SIM cards a person uses daily.

    • It could also be asking about the number of devices a person uses with SIM cards daily.

    • Without further clarification, it is difficult to provide a specific answer.

  • Answered by AI
  • Q5. What is redux? How can we joint react with redux
  • Ans. 

    Redux is a predictable state container for JavaScript apps. It helps manage the state of an application in a single immutable state tree.

    • Redux is commonly used with React to manage the state of a React application.

    • To integrate React with Redux, you need to use the 'react-redux' library which provides bindings between React and Redux.

    • You can create a Redux store and use the 'Provider' component from 'react-redux' to pas...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. Write code to implement and explicit wait in Selenium
  • Q2. Write code to implement Robot class in java
  • Q3. How would you locate the Xpath for the "Today's Deal" menu item on Amazon
  • Q4. What will be the memory allocation for the code String str1 = "Automation"; String str2 = new String("Automation");
  • Q5. What is the difference between str1==str2 and str1.equals(str2)
  • Q6. Meaning of status code 401 and 502
  • Q7. Print first 4 letter and last 4 letter of String str="www.amazon.com"
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Can you explain the Maven build lifecycle?
  • Ans. 

    Maven build lifecycle consists of phases like compile, test, package, install, deploy.

    • Maven build lifecycle consists of three main phases: clean, default, and site.

    • Each phase consists of a series of goals that are executed in a specific order.

    • Some common goals in Maven build lifecycle include compile, test, package, install, and deploy.

    • The clean phase removes all files generated by the previous build.

    • The default phase ...

  • Answered by AI
  • Q2. What is the code to reverse a sentence?
  • Ans. 

    Code to reverse a sentence using array of strings.

    • Split the sentence into an array of words

    • Reverse the array

    • Join the array back into a sentence

  • Answered by AI
  • Q3. What is static block in java?
  • Ans. 

    Static block in Java is a block of code that is executed only once when the class is loaded.

    • Static block is used to initialize static variables of a class.

    • It is executed before the main method.

    • Syntax: static { // code to be executed }

    • Example: static { System.out.println("Static block executed"); }

  • Answered by AI
  • Q4. What is exclude and include in TestNG?
  • Ans. 

    Exclude and include in TestNG are used to specify which test methods to run or skip during test execution.

    • Exclude attribute is used to specify which test methods to skip during test execution

    • Include attribute is used to specify which test methods to run during test execution

    • Both attributes can be used in the testng.xml file or in the @Test annotation

    • Example: @Test(groups = {"smoke"}, excludeGroups = {"regression"})

  • Answered by AI
  • Q5. What is code for reverse a digit?
  • Ans. 

    To reverse a digit, convert it to a string and then reverse the string.

    • Convert the digit to a string

    • Use built-in functions to reverse the string

    • Convert the reversed string back to a digit if needed

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Fair and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1.30 hours, Java, selenium

Round 2 - One-on-one 

(1 Question)

  • Q1. Java program to compare 2 strings and check if both matching Selenium Code for Drag and Drop images Selenium code for selecting all the elements from the dropdown Java concepts: OOPs, Inheritance(Multiple ...
Round 3 - Technical 

(1 Question)

  • Q1. AI Generated interview which is same a face-to-face interview. Questions asked on Java concepts, Selenium concepts
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. What is the output of below code class Animal{ Animal(){ System.out.println("animal is created") } class Dog extends Animal{ Dog(){ System.out.println("Dog is created")} class TestSuper4{ pub...
  • Ans. 

    The output of the code will be 'animal is created' followed by 'Dog is created'.

    • The code defines a class Animal with a constructor that prints 'animal is created'.

    • It also defines a class Dog that extends Animal, with a constructor that prints 'Dog is created'.

    • In the main method, an instance of Dog is created, which will trigger the constructors of both Animal and Dog classes.

  • Answered by AI
  • Q2. Output of this : System.out.println(10+20+"Hello"+30+40) - Explain
  • Q3. Output of this : String name="Hello"; name=name+"There"; system.out.println(name)
  • Ans. 

    The output will be 'HelloThere'

    • Concatenation of 'Hello' and 'There' results in 'HelloThere'

    • The final string is printed using System.out.println()

  • Answered by AI
  • Q4. StringBuffer buffer=new StringBuffer("Hello") buffer.append("There"); System.out.println(buffer);
  • Ans. 

    The code creates a StringBuffer object with 'Hello' and appends 'There' to it before printing the final string.

    • StringBuffer is mutable, so the original 'Hello' string can be modified

    • The append() method adds the specified string to the end of the buffer

    • The final output will be 'HelloThere'

  • Answered by AI
  • Q5. Which is valid or invalid a. ChromeDriver driver=new ChromeDriver(); b. WebDriver driver=new ChromeDriver(); c. WebDriver driver2=new WebDriver(); driver2=new ChromeDriver();
  • Ans. 

    Option a is valid, option b is valid, option c is invalid.

    • Option a is valid because ChromeDriver is a subclass of WebDriver, so it can be assigned to a WebDriver reference.

    • Option b is valid because ChromeDriver is a subclass of WebDriver, so it can be instantiated using a WebDriver reference.

    • Option c is invalid because WebDriver is an interface and cannot be instantiated directly. It can only be used as a reference typ

  • Answered by AI
  • Q6. Program to sort the input in descending order without using inbuild method/functions
  • Ans. 

    Sort input array of strings in descending order without using inbuilt functions

    • Iterate through the array and compare each element with the rest to find the largest element

    • Swap the largest element with the first element, then repeat the process for the remaining elements

    • Continue this process until the array is sorted in descending order

  • Answered by AI
  • Q7. Difference between findElement and findElements
  • Ans. 

    findElement returns the first matching element on the page, while findElements returns a list of all matching elements.

    • findElement returns a single WebElement matching the locator provided

    • findElements returns a list of WebElements matching the locator provided

    • findElement will throw NoSuchElementException if no element is found, while findElements will return an empty list

  • Answered by AI
  • Q8. Difference between getwindowhandle and getwindowhandles() and what is output type
  • Ans. 

    getwindowhandle returns the handle of the current window, getwindowhandles() returns handles of all open windows

    • getwindowhandle returns a single window handle, while getwindowhandles() returns a set of window handles

    • getwindowhandle is used to switch between windows in Selenium WebDriver

    • Output type of getwindowhandle is String, while output type of getwindowhandles() is Set

Answered by AI
  • Q9. Question on finding the xpaths on website
  • Q10. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder is mutable, allowing for modifications to the string without creating a new object.

    • StringBuilder is more efficient for concatenating multiple strings as it does not create new objects each time.

    • Example: String str = "Hello"; StringBuil

  • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (4 Questions)

    • Q1. Write java program to print sum of digits from a given string eg: "abcd23"
    • Ans. 

      Java program to print sum of digits from a given string

      • Iterate through each character in the string

      • Check if the character is a digit using Character.isDigit() method

      • Convert the digit character to integer using Character.getNumericValue() method

      • Sum up all the digits found in the string

    • Answered by AI
    • Q2. Explain oops concepts used in your framework with example?
    • Ans. 

      OOPs concepts used in the framework include inheritance, polymorphism, encapsulation, and abstraction.

      • Inheritance is used to create a parent-child relationship between classes. For example, a base class 'Page' can be inherited by 'HomePage' and 'LoginPage' classes.

      • Polymorphism allows objects of different classes to be treated as objects of a common superclass. For instance, a 'click' method can be implemented different...

    • Answered by AI
    • Q3. Explain polymorphism
    • Ans. 

      Polymorphism is the ability of a single function or method to operate on different types of data.

      • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

      • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

      • Example of compile-time polymorphism: function overloading in Java.

      • Example of runtime polymorphism: method overriding in Java

    • Answered by AI
    • Q4. Java program to print the sum of elements in string array eg: String[] arr = {"1","2","3"}
    • Ans. 

      Java program to print the sum of elements in a string array.

      • Convert each element in the string array to an integer using Integer.parseInt()

      • Sum up all the integers to get the total sum

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    2-4 weeks
    Result
    Selected Selected

    I was interviewed in May 2024.

    Round 1 - Technical 

    (10 Questions)

    • Q1. Basics of Selenium(Windowhandles,Screenshot,Actions class,Selector Class,) with syntax
    • Q2. Asked to write Automation Framework architecture
    • Q3. What are the different gherkin words
    • Ans. 

      Gherkin words are keywords used in Gherkin syntax for writing test scenarios in Behavior Driven Development (BDD).

      • Feature

      • Scenario

      • Given

      • When

      • Then

      • And

      • But

    • Answered by AI
    • Q4. What we will use in plugin
    • Ans. 

      Plugins are used to extend the functionality of a software application.

      • Plugins are additional software components that can be added to an existing application to provide new features or functionalities.

      • They can be used to customize the behavior of the application without modifying its core code.

      • Examples of plugins include browser extensions, WordPress plugins, and Adobe Photoshop filters.

    • Answered by AI
    • Q5. How to run runner class
    • Ans. 

      To run a runner class, you can use a test runner tool like JUnit or TestNG in your automation testing framework.

      • Use a test runner tool like JUnit or TestNG to execute the runner class

      • Add the @RunWith annotation in JUnit or specify the runner class in TestNG XML file

      • Make sure the runner class includes the necessary setup and teardown methods for test execution

    • Answered by AI
    • Q6. Java oops, strings , exception handling
    • Q7. How to run parallel mode in testng,groups,priority
    • Ans. 

      TestNG allows running tests in parallel mode using groups and priorities.

      • Use 'parallel' attribute in testng.xml file to specify parallel mode (e.g. )

      • Use 'groups' attribute in testng.xml file to group tests that should run in parallel (e.g. )

      • Use 'priority' attribute in testng.xml file to specify the order in which tests should run (e.g.

    • Answered by AI
    • Q8. Write Merge Sort Programme
    • Ans. 

      Merge Sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges them back together.

      • Divide the array into two halves recursively

      • Sort each half using Merge Sort recursively

      • Merge the sorted halves back together

    • Answered by AI
    • Q9. Write Reverse a string programme
    • Ans. 

      Program to reverse a string using array of characters

      • Create an array of characters from the input string

      • Iterate through the array in reverse order and append each character to a new string

      • Return the reversed string

    • Answered by AI
    • Q10. Write syntax of data driven testing (XSSF Workbook) Syntax
    • Ans. 

      Data driven testing syntax using XSSF Workbook

      • Create XSSFWorkbook object

      • Get the sheet from the workbook

      • Iterate through rows and columns to fetch test data

      • Use test data in your test cases

    • Answered by AI
    Round 2 - Technical 

    (1 Question)

    • Q1. Selenium basics ( window handles , screenshot,reports, file upload and download, Add extension, Headless mode)

    Interview Preparation Tips

    Interview preparation tips for other job seekers - I would say it is easy to crack Service based Companies. Just prepare all the concepts of Selenium, Java,TestNG,Maven,GitHub and basic 20 Programmes.

    For Selenium and BDD(Cucumber)Learn Rahul Shetty Udemy course
    For Java search and learn top 200 interview questions.
    Basic programmes like ( Duplicate characters,reverse string,unique characters, string anagram, Bubble sort , merge sort, quick sort and some more) .

    How I switched from my current company.
    Do’s
    Uninstall social media apps.
    Stop watching movies.
    Stop eating Junk food.
    Study at least 1-2 hours daily.
    Listen motivational songs.
    Make connections on LinkedIn.
    Make single page resume by creating on overleaf website.

    How to apply to companies.
    Don’t apply directly on company website(Big mistake)
    Send resumes to hr directly(u will get their mails on some posts on LinkedIn)
    Ask referral on LinkedIn.
    Update Naukri daily 9am and put notice period to 30 or 15days.

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Reverse String without Java In built Function
    • Ans. 

      Reverse a string without using Java built-in functions

      • Create a character array from the input string

      • Use two pointers to swap characters at the beginning and end of the array until they meet

      • Convert the character array back to a string

    • Answered by AI
    • Q2. Difference Between Relative Xpath & Absolute Xpath
    • Ans. 

      Relative Xpath is based on the current node while Absolute Xpath starts from the root node of the XML document.

      • Relative Xpath does not start with a forward slash (/) while Absolute Xpath starts with a forward slash (/).

      • Relative Xpath is more flexible and less prone to changes in the structure of the XML document.

      • Absolute Xpath is more specific and provides the full path to the element in the XML document.

      • Relative Xpath...

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Wap for reverse string in java
    • Ans. 

      Reverse a string in Java using StringBuilder's reverse method.

      • Create a StringBuilder object with the input string

      • Use the reverse() method of StringBuilder to reverse the string

      • Convert the reversed StringBuilder object back to a string using toString()

    • Answered by AI
    • Q2. What is interface
    • Ans. 

      An interface in software development is a contract that defines the methods that a class must implement.

      • Interfaces in programming languages like Java, C#, and TypeScript provide a way to achieve abstraction and multiple inheritance.

      • Classes implementing an interface must provide concrete implementations for all the methods defined in the interface.

      • Interfaces allow for loose coupling between components, making code more

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    1
    Bad
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

    Round 1 - Assignment 

    First was round based on Quality engineering concepts and aptitude combob

    Round 2 - Technical 

    (2 Questions)

    • Q1. Question on How proxy configured for device
    • Q2. What is test scenario,test case.
    • Ans. 

      Test scenario is a high-level description of the functionality to be tested, while test case is a detailed step-by-step procedure to validate the functionality.

      • Test scenario is a broad description of what needs to be tested, while test case is a detailed set of steps to verify a specific aspect of the scenario.

      • Test scenario is usually written in a more general and abstract way, while test case is more specific and conc...

    • Answered by AI

    Skills evaluated in this interview

    Jio Interview FAQs

    How many rounds are there in Jio Automation Anywhere Developer interview?
    Jio interview process usually has 2 rounds. The most common rounds in the Jio interview process are Assignment and One-on-one Round.
    What are the top questions asked in Jio Automation Anywhere Developer interview?

    Some of the top questions asked at the Jio Automation Anywhere Developer interview -

    1. What is redux? How can we joint react with red...read more
    2. What are the different layer of osi mo...read more
    3. How many sim one man active in daily ba...read more

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Accenture Interview Questions
    3.9
     • 8.1k Interviews
    Infosys Interview Questions
    3.7
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Amazon Interview Questions
    4.1
     • 5k Interviews
    Capgemini Interview Questions
    3.8
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    Genpact Interview Questions
    3.9
     • 3k Interviews
    ICICI Bank Interview Questions
    4.0
     • 2.4k Interviews
    View all

    Jio Automation Anywhere Developer Reviews and Ratings

    based on 1 review

    5.0/5

    Rating in categories

    5.0

    Skill development

    5.0

    Work-life balance

    5.0

    Salary

    5.0

    Job security

    5.0

    Company culture

    5.0

    Promotions

    5.0

    Work satisfaction

    Explore 1 Review and Rating
    Assistant Manager
    5.5k salaries
    unlock blur

    ₹1 L/yr - ₹10.5 L/yr

    Deputy Manager
    3.5k salaries
    unlock blur

    ₹4.2 L/yr - ₹13.6 L/yr

    Manager
    1.8k salaries
    unlock blur

    ₹6 L/yr - ₹25 L/yr

    Senior Executive
    1.6k salaries
    unlock blur

    ₹1.7 L/yr - ₹8 L/yr

    Senior Manager
    1.4k salaries
    unlock blur

    ₹10.4 L/yr - ₹32 L/yr

    Explore more salaries
    Compare Jio with

    Jio Platforms

    3.5
    Compare

    Bharti Airtel

    4.0
    Compare

    Vodafone Idea

    4.1
    Compare

    Bharat Sanchar Nigam

    4.0
    Compare
    Did you find this page helpful?
    Yes No
    write
    Share an Interview