Upload Button Icon Add office photos
Premium Employer

i

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

Axis Bank 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

Axis Bank Automation Developer Interview Questions and Answers

Updated 8 Jan 2025

Axis Bank Automation Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Given a usecase to test the Coding Methodologies.

Interview questions from similar companies

I appeared for an interview before Mar 2016.

Interview Questionnaire 

2 Questions

  • Q1. Some technical questions were asked
  • Q2. They spring hibernate MVC flow and core java and Oracle connectivity questions

Interview Preparation Tips

Round: Technical + HR Interview
Experience: There was a Team manager and his junior for the interview

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

It had more than 30 aptitude questions and 2 coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. It was totally a tech round all questions were from Data structure, dbms, java, computer networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if you don't know any answer don't take time say it directly with confidence
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple algorithm question about sorting

Round 2 - Technical 

(2 Questions)

  • Q1. Algorith question about quick sort
  • Q2. Nlonn run time of the sort
  • Ans. 

    The time complexity of the quicksort algorithm is O(n log n).

    • Quicksort has an average time complexity of O(n log n).

    • The best case time complexity of quicksort is O(n log n) when the pivot element divides the array into two equal halves.

    • The worst case time complexity of quicksort is O(n^2) when the pivot element is the smallest or largest element in the array.

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The coding round consisted of 3 coding questions. 1st question was of 20 marks, 2nd and 3rd of 50 marks.

  • Q1. 

    Minimum Number of Operations Problem Statement

    Given an array 'ARR' consisting of 'N' positive integers, determine the minimum number of operations needed to make all elements of the array equal. You may ...

  • Ans. 

    Determine minimum operations to make all array elements equal using addition, subtraction, multiplication, or division.

    • Iterate through array to find the minimum and maximum values

    • Calculate the difference between the maximum and minimum values

    • Return the difference as the minimum number of operations needed

  • Answered by AI
  • Q2. 

    Avoiding Traps Problem Statement

    Given an array of obstacles' coordinates, determine the minimal jump length to reach beyond all obstacles starting from coordinate 0 while avoiding landing on any obstacle...

  • Ans. 

    Find the minimal jump length to bypass all obstacles while avoiding landing on any obstacle.

    • Iterate through the obstacle coordinates to find the maximum coordinate.

    • Calculate the minimum jump length needed to bypass all obstacles.

    • Ensure the jump length consistently avoids all obstacle points.

    • The final jump can overshoot the line's end point.

  • Answered by AI
  • Q3. 

    Longest Consecutive Sequence Problem Statement

    You are given an unsorted array/list ‘ARR’ of ‘N’ integers. Your task is to return the length of the longest consecutive sequence.

    The consecutive sequence ...

  • Ans. 

    Find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to make it easier to identify consecutive sequences.

    • Use a set to store unique elements and check for consecutive numbers.

    • Track the length of consecutive sequences and update the maximum length found.

    • Handle duplicates by counting only one occurrence in the consecutive sequence.

  • Answered by AI
Round 2 - Video Call 

Round duration - 45 minutes
Round difficulty - Easy

Timing: 10:15 - 11:00 am.
The interview was online from home.

Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Timing: 2:15 - 3:00 PM
The interview was online from home.
There were a few audio cuts in the video call but we were able to manage regardless.

  • Q1. 

    Reverse a String Problem Statement

    Given a string STR containing characters from [a-z], [A-Z], [0-9], and special characters, determine the reverse of the string.

    Input:

    The input starts with a single i...
  • Ans. 

    Reverse a given string containing characters from [a-z], [A-Z], [0-9], and special characters.

    • Iterate through the characters of the string in reverse order and append them to a new string.

    • Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.

    • Handle special characters and numbers along with alphabets while reversing the string.

    • Ensure to print each reversed string

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. Eligibility criteriaCGPA cutoff 7Deutsche Bank interview preparation:Topics to prepare for the interview - Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 2 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.
Tip 3 : For SQL, I recommend W3Schools and GeeksforGeeks.
Tip 4 : Always maintain your cool during Interviews, and answer the questions calmly. If you get stuck in a problem, do not hesitate to ask for hints.

Application resume tips for other job seekers

Tip 1: Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 2: Mention only those skills/programming languages in your resume that you are comfortable with, that is, you have proper knowledge of as the interviewee can ask questions from those languages specifically.
Tip 3: Keep your data in your resume honest and accurate.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Joins, Jobs, stored procedures,cursors.

Round 2 - HR 

(1 Question)

  • Q1. What is my package
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Sep 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Objects in java 8
  • Ans. 

    Java 8 introduced the concept of functional programming with the addition of lambda expressions and streams.

    • Lambda expressions allow for concise code and easier parallel programming.

    • Streams provide a way to work with collections of objects in a functional style.

    • Functional interfaces like Predicate, Function, and Consumer are commonly used with lambda expressions.

  • Answered by AI
  • Q2. Spring boot basic concepts
Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding challenge in java 8
  • Ans. 

    Implement a coding challenge in Java 8

    • Use lambda expressions and functional interfaces to write concise and readable code

    • Utilize streams to process collections efficiently

    • Leverage method references for cleaner code

  • Answered by AI
  • Q2. Personal project architecture questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jun 2023. There were 3 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 - Coding Test 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

Round 1 - Group Discussion 

Topic wt is ms office

Round 2 - Assignment 

Eassys dscover the basic structure of all essaysand see what a goo d essay introduction and conclusion look like

Round 3 - Technical 

(1 Question)

  • Q1. Ppt presentations and techical skillsare the abilities and knowledge needed to performtastks

Interview Preparation Tips

Interview preparation tips for other job seekers - Straight from the job seekers themselves were sharing the best job search advice people have ever received

Axis Bank Interview FAQs

How many rounds are there in Axis Bank Automation Developer interview?
Axis Bank interview process usually has 1 rounds. The most common rounds in the Axis Bank interview process are Coding Test.

Tell us how to improve this page.

Axis Bank Automation Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.2k Interviews
IDFC FIRST Bank Interview Questions
3.9
 • 656 Interviews
IndusInd Bank Interview Questions
3.5
 • 616 Interviews
Bandhan Bank Interview Questions
3.7
 • 546 Interviews
Yes Bank Interview Questions
3.7
 • 435 Interviews
Deutsche Bank Interview Questions
3.9
 • 366 Interviews
View all
Assistant Manager
14.9k salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Deputy Manager
10.5k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Manager
6.2k salaries
unlock blur

₹4.9 L/yr - ₹14 L/yr

Senior Manager
5.2k salaries
unlock blur

₹8 L/yr - ₹28.6 L/yr

Relationship Officer
3.2k salaries
unlock blur

₹1 L/yr - ₹5.1 L/yr

Explore more salaries
Compare Axis Bank with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Kotak Mahindra Bank

3.7
Compare

AU Small Finance Bank

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