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

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Linux Commands for system admin
  • Ans. 

    Linux commands commonly used by system admins for managing servers and systems.

    • ls - list directory contents

    • pwd - print working directory

    • cd - change directory

    • cp - copy files and directories

    • mv - move or rename files and directories

    • rm - remove files or directories

    • chmod - change file permissions

    • grep - search for patterns in files

    • ps - display information about running processes

    • top - display and update sorted information abo...

  • Answered by AI
  • Q2. My sql queries to deal with databases
Round 2 - HR 

(2 Questions)

  • Q1. What do you know about ericsson?
  • Q2. Why do you want to join ericsson

Skills evaluated in this interview

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

I applied via AmbitionBox and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. This key word use in java
  • Ans. 

    Key word use in Java

    • Keywords are reserved words in Java with special meaning

    • Examples include 'public', 'static', 'void', 'class', 'if', 'else', etc.

    • Keywords cannot be used as identifiers (variable names, method names, etc.)

  • Answered by AI
  • Q2. Constructor based questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1. Prepare java string questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Palindrome, factorial using recurrsion

Round 1 - Technical 

(2 Questions)

  • Q1. Which locators you are using?
  • Ans. 

    I use various locators such as ID, name, class, CSS selector, XPath, etc. depending on the element and its attributes.

    • I prefer using ID and name locators as they are unique and stable.

    • If those are not available, I use class and CSS selector locators.

    • If the element is dynamic or the attributes are changing, I use XPath locators.

    • I also use relative locators like parent, child, sibling, etc. to locate elements.

    • I always pr...

  • Answered by AI
  • Q2. What is different between waits in selenium?
  • Ans. 

    Waits in Selenium are used to pause the execution of the test script for a certain period of time.

    • Implicit Wait: Sets a default waiting time for all elements in the script

    • Explicit Wait: Waits for a specific condition to be met before proceeding

    • Fluent Wait: Waits for a specific condition with a defined polling frequency and timeout duration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident,selenium questions >>
what is different between waits
which locators you are using
can we sort a string using java code

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Have to write code snippet for serialization and deserialization in java

Round 2 - Technical 

(3 Questions)

  • Q1. Code to explain Indian number plate system
  • Ans. 

    Indian number plate system consists of a unique combination of letters and numbers to identify vehicles.

    • Indian number plates consist of a combination of letters and numbers

    • The first two letters indicate the state where the vehicle is registered

    • Followed by a unique number assigned to the vehicle

    • Some number plates may also include additional information like the vehicle class or fuel type

  • Answered by AI
  • Q2. To check if a string is palindrome with recusrion
  • Ans. 

    Check if a string is palindrome using recursion

    • Create a recursive function that compares the first and last characters of the string

    • If they match, call the function with the substring excluding the first and last characters

    • Continue this process until the string length is 0 or 1, then return true if all characters matched

    • Example: 'racecar' is a palindrome, 'hello' is not

  • Answered by AI
  • Q3. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of an object to take on many forms.

    • Encapsulation: Bundling of data with the methods that operate on that data.

    • Abstraction: Hiding the implementation details and showing only the necessa

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Separate 1's and 0's in an array with minimal complexity
  • Ans. 

    Use two pointers approach to separate 1's and 0's in an array of strings with minimal complexity.

    • Initialize two pointers, one at the beginning and one at the end of the array.

    • Move the left pointer until it encounters a '0' and the right pointer until it encounters a '1'.

    • Swap the elements at the left and right pointers, then move the pointers towards each other until they meet in the middle.

  • Answered by AI
  • Q2. How to automate filters in web page
  • Ans. 

    Automating filters in a web page involves identifying filter elements, selecting filter criteria, and verifying filtered results.

    • Identify filter elements on the web page such as dropdowns, checkboxes, or input fields

    • Use automation tools like Selenium to interact with filter elements and select desired criteria

    • Trigger filter action (e.g. clicking 'Apply' button) and wait for the page to refresh with filtered results

    • Veri...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Previous projects Some manual testing question such as types of functional testing, difference between sanity and regression testing. Ask about the framework, and write the automation script in the framewo...
Round 2 - Technical 

(1 Question)

  • Q1. Mostly asked about the postman tool, my interaction with JIRA and some scenarios driven through which you have to make test cases basically it was a test to know about the testing technique.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Young Men Christian Association (YMCA) and was interviewed before Jan 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Basic level aptitude was given with some questions on general network

Round 3 - Group Discussion 

The gd round was held virtually in a group of 6-7 students where we were presented a topic and were asked to think about it for 5 mins then GD began.

Round 4 - Technical 

(3 Questions)

  • Q1. Basic level of networking and project related questions were asked as per my resume followed by some general HR questions
  • Q2. What are your strength and weakness
  • Q3. Explain about your projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare python and networking for cracking this internship

I applied via Referral and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic programming questions… sorting
Round 2 - Technical 

(1 Question)

  • Q1. Blue Prism specific and RPA specific

Interview Preparation Tips

Topics to prepare for Ericsson Automation Engineer interview:
  • Process automation
  • Data Structures
  • MySQL
Interview preparation tips for other job seekers - It’s quite difficult but you can do it if you have knowledge of your domain

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.

Jio Automation Anywhere Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k 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.4k salaries
unlock blur

₹1.2 L/yr - ₹10.4 L/yr

Deputy Manager
3.4k salaries
unlock blur

₹4.2 L/yr - ₹13.7 L/yr

Manager
1.8k salaries
unlock blur

₹5.9 L/yr - ₹22.5 L/yr

Senior Executive
1.5k salaries
unlock blur

₹1.7 L/yr - ₹8 L/yr

Senior Manager
1.4k salaries
unlock blur

₹10.3 L/yr - ₹30.5 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

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