Upload Button Icon Add office photos

Automation Anywhere

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Automation Anywhere Senior Automation Engineer Interview Questions, Process, and Tips

Updated 5 Mar 2024

Automation Anywhere Senior Automation Engineer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. What are you current roles , responsibilities?
  • Q2. Experience and projects that you did?
  • Q3. What did you know about Epam Anywhere?
  • Ans. 

    Epam Anywhere is a platform that connects remote tech professionals with global companies for project-based work.

    • Epam Anywhere is a platform created by Epam Systems, a global IT services company.

    • It allows remote tech professionals to work on project-based assignments for global companies.

    • Professionals can choose projects based on their skills and availability.

    • Companies can access a pool of talented professionals from a...

  • Answered by AI
  • Q4. Do you have any other questions?
Round 2 - Technical 

(17 Questions)

  • Q1. Difference between git merge and git rebase?
  • Ans. 

    Git merge combines changes from different branches, while git rebase moves the current branch to the tip of another branch.

    • Git merge creates a new commit with the combined changes of the branches being merged.

    • Git rebase moves the current branch to the tip of another branch by replaying each commit on top of the other branch.

    • Git merge preserves the commit history of both branches, while git rebase rewrites the commit hi

  • Answered by AI
  • Q2. How to set up version control system?
  • Ans. 

    Setting up a version control system involves choosing a system, creating a repository, adding files, committing changes, and collaborating with team members.

    • Choose a version control system like Git, SVN, or Mercurial.

    • Create a repository to store your project files.

    • Add files to the repository using commands like 'git add' or 'svn add'.

    • Commit changes to the repository with a message describing the changes using commands ...

  • Answered by AI
  • Q3. What is difference between Working tree, staging/index and HEAD?
  • Ans. 

    Working tree, staging/index, and HEAD are different states in Git representing different versions of files.

    • Working tree is the current state of files in the project directory

    • Staging/index is the area where changes are prepared to be committed

    • HEAD points to the last commit on the current branch

  • Answered by AI
  • Q4. What are Authentication mechanism that you are aware of?
  • Ans. 

    Various authentication mechanisms include password-based, biometric, multi-factor, and OAuth.

    • Password-based authentication

    • Biometric authentication (e.g. fingerprint, facial recognition)

    • Multi-factor authentication (e.g. SMS code, token generator)

    • OAuth (Open Authorization) for third-party authentication

  • Answered by AI
  • Q5. What is BDD? what difference between BDD and cucumber? Are you aware of specflow?
  • Ans. 

    BDD stands for Behavior Driven Development. Cucumber is a BDD tool that uses Gherkin syntax. SpecFlow is a BDD tool for .NET.

    • BDD (Behavior Driven Development) is a software development approach that focuses on the behavior of the system.

    • Cucumber is a BDD tool that uses Gherkin syntax to write test scenarios in a human-readable format.

    • SpecFlow is a BDD tool specifically designed for .NET projects, allowing developers to...

  • Answered by AI
  • Q6. What is UpCasting? and why we can't use downCasting in OOPS?
  • Ans. 

    Upcasting is casting a subclass object to a superclass reference. Downcasting is the opposite.

    • Upcasting is safe and implicit in OOP, as it involves casting a subclass object to a superclass reference.

    • Downcasting is not safe and requires explicit casting, as it involves casting a superclass reference to a subclass object.

    • Example: Animal animal = new Dog(); // Upcasting

    • Example: Dog dog = (Dog) animal; // Downcasting, req

  • Answered by AI
  • Q7. Which one is recommended between HashTable and HashMap?
  • Ans. 

    HashMap is recommended due to better performance and allows null values, while HashTable is synchronized.

    • HashMap is not synchronized, so it is faster than HashTable for single-threaded applications.

    • HashMap allows null values and null keys, while HashTable does not.

    • HashMap is part of the Java Collections Framework, while HashTable is a legacy class.

    • Example: HashMap map = new HashMap<>();

    • Example: HashTab

  • Answered by AI
  • Q8. Explain about your Automation project architecture?
  • Q9. What are five basic items to jumpstart API Automation?
  • Ans. 

    Five basic items to jumpstart API Automation

    • Understand the API documentation

    • Select a suitable automation tool (e.g. Postman, SoapUI)

    • Set up a testing environment

    • Write test cases for API endpoints

    • Implement continuous integration for automated testing

  • Answered by AI
  • Q10. How to run the TCs in parallel?
  • Ans. 

    Running test cases in parallel can be achieved by using tools like TestNG or JUnit.

    • Use TestNG or JUnit to create test suites that can run test cases in parallel

    • Configure the test suite to run test cases concurrently by setting the parallel attribute in the testng.xml file

    • Ensure that the test cases are independent of each other to avoid any conflicts during parallel execution

  • Answered by AI
  • Q11. Serialization & Deserialization?
  • Q12. What are log levels and what log library do you use in your project?
  • Ans. 

    Log levels are used to categorize log messages based on their severity. Common levels include DEBUG, INFO, WARN, ERROR, and FATAL.

    • Log levels help in filtering and managing log messages based on their importance and severity.

    • Different log levels include DEBUG, INFO, WARN, ERROR, and FATAL, each indicating the severity of the message.

    • Log libraries like Log4j, Logback, and SLF4J are commonly used in projects to handle log...

  • Answered by AI
  • Q13. What are the design patterns that you are aware of?
  • Ans. 

    Some common design patterns include Singleton, Factory, Observer, and Strategy patterns.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified...

  • Answered by AI
  • Q14. Can you explain SOLID principles?
  • Ans. 

    SOLID principles are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects o...

  • Answered by AI
  • Q15. What are types of testing that you are aware of?
  • Ans. 

    Types of testing include functional testing, non-functional testing, manual testing, automated testing, regression testing, and performance testing.

    • Functional testing: Testing the functionality of the software against the requirements.

    • Non-functional testing: Testing aspects like performance, usability, and security.

    • Manual testing: Testing performed manually by testers without the use of automation tools.

    • Automated testi...

  • Answered by AI
  • Q16. Use only LinQ expressions? Given List lst=new List{"adfa","agdasg"}; How do you filter names that start with "a"?
  • Ans. 

    Filter names starting with 'a' using LinQ expressions on a List.

    • Use LinQ Where method with a lambda expression to filter names starting with 'a'.

    • Example: var filteredNames = lst.Where(name => name.StartsWith('a')).ToArray();

  • Answered by AI
  • Q17. What is jenkins? Do you have experience in setting up pipeline in jenkins? Are you aware of how to setup pipeline job in jenkins?
  • Ans. 

    Jenkins is a popular open-source automation server used for continuous integration and continuous delivery of software projects.

    • Jenkins is used to automate the non-human part of the software development process, with continuous integration and facilitating technical aspects of continuous delivery.

    • It allows for easy configuration of pipelines to automate the build, test, and deployment processes.

    • Setting up a pipeline in...

  • Answered by AI
Round 3 - One-on-one 

(7 Questions)

  • Q1. Write piece of code? How to create interface, Abstract class? Create a new class which implements interface and Abstract class? If there is common method exist in interface & Abstract class
  • Ans. 

    Creating interface, abstract class, and implementing them in a new class with a common method

    • To create an interface in Java, use the 'interface' keyword and define the methods without implementation

    • To create an abstract class in Java, use the 'abstract' keyword before the class definition and can have both abstract and concrete methods

    • To implement an interface in a class, use the 'implements' keyword and provide implem...

  • Answered by AI
  • Q2. How to override any method in child class?
  • Ans. 

    To override a method in a child class, use the 'override' keyword in the child class method definition.

    • Use the 'override' keyword before the method signature in the child class.

    • The method in the child class must have the same name, return type, and parameters as the method in the parent class.

    • The overridden method in the child class can call the parent class method using 'base.MethodName()'.

  • Answered by AI
  • Q3. String str="My name is xyz and i am from abc organization"; Create a dictionary as output which stores the words as key and frequency as values?
  • Ans. 

    Create a dictionary to store word frequency from a given string.

    • Split the string into words using space as delimiter

    • Iterate through the words and update the frequency in the dictionary

    • Handle case sensitivity and punctuation marks appropriately

  • Answered by AI
  • Q4. Difference between .Select and .SelectMany
  • Ans. 

    Select projects a sequence of values into a new form, while SelectMany projects each element of a sequence to a sequence and flattens the resulting sequences into one sequence.

    • Select is used to transform each element of a sequence into a new form.

    • SelectMany is used to transform each element of a sequence into a sequence of values and then flattens those sequences into one sequence.

    • SelectMany is often used when working ...

  • Answered by AI
  • Q5. List lst={"name1","name2","name3"}; Use only Linq expression and create dictionary which stores element in the above list as key and length of the element as value
  • Ans. 

    Use Linq to create a dictionary with elements from a list as keys and their lengths as values.

    • Use ToDictionary method with element as key and element length as value

    • Use Select method to project each element to a KeyValuePair

  • Answered by AI
  • Q6. Attributes used in Nunit and for Parallel execution?
  • Ans. 

    Attributes used in Nunit for parallel execution include Parallelizable and MaxDegreeOfParallelism.

    • Parallelizable attribute is used to specify that a test fixture can be run in parallel with others

    • MaxDegreeOfParallelism attribute is used to specify the maximum number of threads to use for parallel execution

  • Answered by AI
  • Q7. How to handle stale element exception?
  • Ans. 

    Stale element exception occurs when an element is no longer attached to the DOM.

    • Refresh the page and try to locate the element again

    • Use explicit wait to ensure the element is present and interactable before performing actions

    • Handle the exception using try-catch block to retry the operation

    • Avoid storing web elements in variables for a long time as they may become stale

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve your concepts in OOPS and programming language [string, array,list,Hashmap], Dont go for DSA without understanding basics of programming langauge

Skills evaluated in this interview

Interview questions from similar companies

I applied via Approached by Company and was interviewed in Aug 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic Java questions. Coding based on technical topics in Java. Approach and knowledge of other technology apart from core strength like ui ,design .
  • Q2. Scenario based questions. Deeper into Java and related technologies
  • Q3. Again based on Java and project but kind of client interview
  • Q4. Basic hr questions and salary discussion

Interview Preparation Tips

Round: Managerial
Experience: More of past projects and team handling

General Tips: Be prepared for basics in related technology and good through understanding in one core area.
Skills: Communication, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-3 Months
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Math, resizing, English

Round 2 - Technical 

(1 Question)

  • Q1. What is java, string, thread, exception handling
  • Ans. 

    Java is a programming language, String is a data type for text, Thread is a unit of a process, Exception handling is managing errors.

    • Java is a popular programming language used for developing various applications.

    • String is a data type in Java used to store text.

    • Thread in Java is a unit of a process that can run concurrently with other threads.

    • Exception handling in Java is the process of managing errors that occur durin

  • Answered by AI
Round 3 - Coding Test 

Java program exception handling

Skills evaluated in this interview

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

I was interviewed before Oct 2022.

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 Resume tips
Round 2 - Coding Test 

1h, HackRank, 3 algo problem

Round 3 - HR 

(1 Question)

  • Q1. It was in English. He ask me about company, my experience and my wishes.
Round 4 - Technical 

(1 Question)

  • Q1. Logical and algo question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium leetcode question related to dp.

Round 2 - Coding Test 

LLD round to create a cache library

Round 3 - HLD 

(2 Questions)

  • Q1. Design Paytm like system
  • Ans. 

    Design a system similar to Paytm for online payments and transactions.

    • Implement user authentication and authorization for secure transactions

    • Develop a user-friendly interface for easy navigation and transactions

    • Integrate various payment options like credit/debit cards, net banking, UPI, and wallets

    • Implement a robust backend system to handle transactions and store user data securely

  • Answered by AI
  • Q2. Design Url Shortner
  • Ans. 

    Design a URL shortener service to generate short URLs for long URLs.

    • Use a unique identifier for each long URL to generate a short URL.

    • Implement a mapping system to map short URLs to long URLs.

    • Consider implementing features like custom short URLs, expiration dates, and analytics.

    • Ensure the short URLs are unique and not easily guessable.

    • Optimize the service for performance and scalability.

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Basic beaviour question.
  • Q2. Design Notification Service.
  • Ans. 

    Design a Notification Service for sending alerts to users.

    • Define types of notifications (email, SMS, push notifications)

    • Implement a system for users to subscribe/unsubscribe from notifications

    • Include a scheduling system for sending notifications at specific times

    • Consider implementing a notification history for users to view past alerts

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Nov 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 Resume tips
Round 2 - Aptitude Test 

Reasoning, java, java script basics

Round 3 - Technical 

(1 Question)

  • Q1. Previous experience, scenario type, java
Round 4 - HR 

(1 Question)

  • Q1. Hr round, package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Java, java script, rpa knowledge.

Interview Preparation Tips

Round: Test
Experience: There were 4 coding questions. All of them were simple. We wrote code on our laptop and submited code to volunteer in their pendrive. I soved three of them correctly and one partially correct. Still got shortlisted.
Tips: Skip
Duration: 90 minutes
Total Questions: 4

Round: Technical Interview
Experience: They asked me everything from my resume. So one should know everything about their projects and every point in resume. Also they asked few other technical questions.

Skill Tips: Do maximum questions from the site mentioned below. Also particaipate in quizzes and hackathons from hackerrank.com/ and -----/
Skills: Algorithms, Data structures
College Name: IIT BOMBAY
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

SQL Questions based on subqueries.

Round 2 - Technical 

(1 Question)

  • Q1. Java basics and coding question.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. They asked Core java concepts like Exception, Thread, Collections etc
  • Q2. One coding question: when the program runs, both the thread concurrently with t1 printing "Helloworld" once and t2 printing "helloWorld" twice.

Interview Preparation Tips

Interview preparation tips for other job seekers - They are more focused on core java topics and threads so prepared well on this.

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Find common ancestor of 2 nodes in a binary tree ?
  • Ans. 

    Find common ancestor of 2 nodes in a binary tree

    • Traverse the tree from root to both nodes and store the paths

    • Compare the paths to find the last common node

    • Use recursion to traverse the tree and find the common ancestor

  • Answered by AI
  • Q2. Find min element of stack in O(1) time ?
  • Ans. 

    To find the minimum element of a stack in O(1) time, maintain a separate stack for minimum values.

    • Create a separate stack to store minimum values

    • Push the minimum value onto the minimum stack every time a new value is pushed onto the main stack

    • Pop the minimum stack every time the main stack pops a value

    • The top of the minimum stack will always contain the minimum value

  • Answered by AI
  • Q3. Sort a binary array of 0 1 0 0 1 0 1 1 1 0 1 0 0 1 0 0 0 1 0 ? Optimise the code ?
  • Ans. 

    Sort a binary array of 0s and 1s and optimize the code.

    • Use two pointers approach to swap 0s and 1s

    • Avoid using sorting algorithms like bubble sort or selection sort

    • Use a single loop to traverse the array and swap elements

    • Use XOR operation to swap elements

  • Answered by AI
  • Q4. Java HashMap internals ? what happend when hashcode returns always 1 ?
  • Ans. 

    Explaining Java HashMap internals and behavior when hashcode always returns 1.

    • HashMap uses hashcode to calculate the index of the bucket where the key-value pair will be stored.

    • If hashcode always returns 1, all key-value pairs will be stored in the same bucket resulting in poor performance.

    • In this case, HashMap will use a linked list to store multiple key-value pairs in the same bucket.

    • Retrieving a value from a HashMap...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice imp DS also questions mostly from Strings and Arrays. HashMap in Java. Core java be clear about concepts.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Automation Anywhere Interview FAQs

How many rounds are there in Automation Anywhere Senior Automation Engineer interview?
Automation Anywhere interview process usually has 3 rounds. The most common rounds in the Automation Anywhere interview process are HR, Technical and One-on-one Round.
How to prepare for Automation Anywhere Senior Automation Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Automation Anywhere. The most common topics and skills that interviewers at Automation Anywhere expect are Ajax, HTML, JQuery, MySQL and Oracle.
What are the top questions asked in Automation Anywhere Senior Automation Engineer interview?

Some of the top questions asked at the Automation Anywhere Senior Automation Engineer interview -

  1. What is jenkins? Do you have experience in setting up pipeline in jenkins? Are ...read more
  2. What is BDD? what difference between BDD and cucumber? Are you aware of specflo...read more
  3. What is UpCasting? and why we can't use downCasting in OO...read more

Recently Viewed

INTERVIEWS

Waaree Energies

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

CAMPUS PLACEMENT

Tata Institute of Social Sciences (TISS)

INTERVIEWS

American Megatrends

No Interviews

INTERVIEWS

Apmosys Technologies

No Interviews

INTERVIEWS

Honeywell Automation

No Interviews

INTERVIEWS

Reliance Industries

No Interviews

INTERVIEWS

Reliance Industries

No Interviews

INTERVIEWS

Reliance Industries

No Interviews

LIST OF COMPANIES

Nuclear Power Corporation of India

Overview

Tell us how to improve this page.

Automation Anywhere Senior Automation Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 416 Interviews
Johnson Controls Interview Questions
3.5
 • 261 Interviews
ABB Interview Questions
4.1
 • 233 Interviews
NICE Interview Questions
3.6
 • 79 Interviews
Falcon Autotech Interview Questions
3.9
 • 44 Interviews
Wipro PARI Interview Questions
3.4
 • 43 Interviews
View all
Automation Anywhere Senior Automation Engineer Salary
based on 23 salaries
₹11 L/yr - ₹23 L/yr
31% more than the average Senior Automation Engineer Salary in India
View more details

Automation Anywhere Senior Automation Engineer Reviews and Ratings

based on 2 reviews

3.1/5

Rating in categories

1.3

Skill development

4.1

Work-life balance

3.1

Salary

1.1

Job security

3.1

Company culture

1.3

Promotions

2.2

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
67 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Manager
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Support Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Automation Anywhere with

Uipath

3.8
Compare

Blue Prism

5.0
Compare

WorkFusion

2.5
Compare

Pegasystems

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent