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

Compare button icon Compare button icon Compare
3.8

based on 24.5k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Axis Bank Java Developer Interview Questions and Answers

Updated 22 Sep 2024

Axis Bank Java Developer Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Mental trauma and frustrated scenarios Even after solving 3 Link list coding problem and 20+ technical questions, and then following up about 20 times, and even after calls and emails, there has been no...
  • Q2. Even after solving 3 coding problem and 20+ technical questions, and then following up about 20 times, and even after calls and emails, there has been no response. Would it be appropriate for me to post ...

Interview Preparation Tips

Interview preparation tips for other job seekers - please don't attend the interview they will take you time only for show the hiring and fill up their database
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Kafka, webflux, Java multithreading

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 1You have been given an integer array/list(ARR) of size N ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious SubsequenceYou are given an array ‘ARR’ of 'N' ... read more
asked in Deloitte
Q4. Convert Bst To The Greater Sum TreeYou have been given a Binary S ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

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

I was interviewed in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between hashmap and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values, while HashTable is synchronized and does not allow null values.

    • HashMap is non-synchronized, meaning it is not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values for both keys and values, while HashTable does not allow null keys or values.

    • HashMap is generally preferred for non-thread-safe applications, while HashTable is used in mul

  • Answered by AI
  • Q2. Significance of equals and hashcode in java
  • Ans. 

    Equals method is used to compare the content of objects while hashcode method is used to generate a unique integer value for an object.

    • Equals method is used to compare the content of objects for equality.

    • Hashcode method is used to generate a unique integer value for an object.

    • Both methods are important for implementing proper object comparison and hashing in Java.

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. What motivates you to come to office
  • Ans. 

    I am motivated to come to the office by the opportunity to work on challenging projects, collaborate with talented colleagues, and contribute to the success of the team.

    • Challenging projects provide a sense of accomplishment and growth

    • Collaborating with talented colleagues allows for learning and innovation

    • Contributing to the success of the team fosters a sense of purpose and fulfillment

  • Answered by AI
  • Q2. Any scenario where you coached and mentored your collegue in previous organisation?
  • Ans. 

    Yes, I coached a junior developer on implementing design patterns in a project.

    • Provided guidance on how to apply design patterns in code

    • Reviewed their code and provided feedback for improvement

    • Encouraged them to ask questions and seek clarification

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - After applying we were sent a test link which consists of mcq's of Java8, spring boot etc. After that we were called for a walkin drive.There are 2 rounds. One technical and one managerial. Interviewers are friendly and asked basic questions on java and spring.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java and sql questions

Round 2 - Technical 

(1 Question)

  • Q1. Basics of java ans core java
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Trapping rain water and median of two sorted array

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and dbms questions?
  • Q2. Code question in Array and string?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

1)Buy and sell stock
2)2 sum
3) system design
4) Elastic search
5) deployment

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain Encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and only exposing necessary functionalities.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation also helps in achieving data abstraction and information hiding.

    • Example: In a class representing a car, th...

  • Answered by AI
  • Q2. How to call rest API
  • Ans. 

    To call a REST API, you can use tools like Postman or code in languages like JavaScript or Python.

    • Use tools like Postman to make HTTP requests to the API endpoints

    • In programming languages like JavaScript, use libraries like Axios or Fetch to make API calls

    • Include necessary headers, parameters, and authentication tokens in the request

    • Handle the response data accordingly, whether it's JSON, XML, or other formats

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Sprig MVC, Spring boot and API

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Approached by Company

Round 1 - Coding Test 

It was spring boot java based online round

Round 2 - One-on-one 

(2 Questions)

  • Q1. Optional in java.
  • Q2. Eager and lazy initialization in simgleton design pattern
  • Ans. 

    Eager initialization creates the instance of Singleton class at the time of class loading, while lazy initialization creates the instance only when it is required.

    • Eager initialization can lead to resource wastage if the instance is never used.

    • Lazy initialization is more efficient as it only creates the instance when needed.

    • Eager initialization is thread-safe by default, while lazy initialization requires synchronizatio...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Why string is immutable
  • Ans. 

    String is immutable in Java to ensure thread safety, security, and optimization.

    • Immutable strings are thread-safe as they cannot be modified concurrently by multiple threads.

    • String pooling is possible due to immutability, saving memory and improving performance.

    • Security is enhanced as sensitive information stored in strings cannot be altered.

    • Examples: String str = "Hello"; str.concat(" World"); // str remains "Hello"

  • Answered by AI
  • Q2. What is spring aop
  • Ans. 

    Spring AOP (Aspect-Oriented Programming) is a framework that provides cross-cutting concerns in a modular way.

    • Spring AOP allows separating cross-cutting concerns from the main application logic.

    • It enables developers to define aspects (cross-cutting concerns) separately and apply them to multiple classes.

    • Examples of cross-cutting concerns include logging, security, and transaction management.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Oct 2024.

Round 1 - Coding Test 

2 questions ...........................................................................................

Round 2 - Technical 

(2 Questions)

  • Q1. Dbms related and computer subjects
  • Q2. Oops related and one coding
Round 3 - HR 

(1 Question)

  • Q1. This was hr and technical both

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared

Axis Bank Interview FAQs

How many rounds are there in Axis Bank Java Developer interview?
Axis Bank interview process usually has 1 rounds. The most common rounds in the Axis Bank interview process are Technical.
How to prepare for Axis Bank Java Developer 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 Axis Bank. The most common topics and skills that interviewers at Axis Bank expect are SQL, GWT, JEE, JSF and Java EE.
What are the top questions asked in Axis Bank Java Developer interview?

Some of the top questions asked at the Axis Bank Java Developer interview -

  1. mental trauma and frustrated scenarios Even after solving 3 Link list coding...read more
  2. Even after solving 3 coding problem and 20+ technical questions, and then fol...read more
  3. Kafka, webflux, Java multithread...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 615 Interviews
IndusInd Bank Interview Questions
3.6
 • 580 Interviews
Bandhan Bank Interview Questions
3.7
 • 515 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
Deutsche Bank Interview Questions
3.9
 • 357 Interviews
View all
Axis Bank Java Developer Salary
based on 10 salaries
₹5 L/yr - ₹11 L/yr
22% more than the average Java Developer Salary in India
View more details

Axis Bank Java Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

2.0

Skill development

1.0

Work-life balance

4.0

Salary

5.0

Job security

1.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
15.1k 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.1k salaries
unlock blur

₹4.9 L/yr - ₹14 L/yr

Senior Manager
5.2k salaries
unlock blur

₹8 L/yr - ₹28 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

State Bank of India

3.8
Compare

Kotak Mahindra Bank

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