Premium Employer

i

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

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Java Developer Interview Questions, Process, and Tips

Updated 30 Mar 2025

Top Infosys Java Developer Interview Questions and Answers

  • Q1. Which should be preferred between String and StringBuffer when there are many updates required to the data?
  • Q2. 1.What is Singleton in java and create your own singleton class countering all breakable conditions? 2. What is Auto Configuration? 3. @Primary vs @Qualifier 4. What is i ...read more
  • Q3. write a code to filter out loans with incomplete status using java 8 features.
View all 187 questions

Infosys Java Developer Interview Experiences

145 interviews found

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

I applied via Naukri.com and was interviewed in Nov 2023. There were 2 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 - One-on-one 

(11 Questions)

  • Q1. Interviewer was asking my details, skills and background!
  • Q2. What are the features of Java8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow writing concise and functional code.

    • Functional interfaces provide a way to define and use lambda expressions.

    • Streams enable processing collections of data in a functional and parallel way.

    • Default methods allow adding new methods to existing interfaces without breaking compati...

  • Answered by AI
  • Q3. Write a functional interface. Refer it to a Lamda Expression. Show it practically while explaining each step
  • Ans. 

    A functional interface is a single abstract method interface. It can be referred to using a lambda expression.

    • Functional interfaces have only one abstract method

    • Lambda expressions can be used to implement functional interfaces

    • Lambda expressions provide a concise way to write anonymous functions

    • Functional interfaces can be used as method parameters or return types

  • Answered by AI
  • Q4. What is HashMap? While Interating through it is it mutable?
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs. It is mutable while iterating through it.

    • HashMap is part of the Java Collections Framework.

    • It allows null values and at most one null key.

    • It provides constant-time performance for basic operations like get and put.

    • While iterating through a HashMap, it is mutable and can throw ConcurrentModificationException if modified.

    • To avoid this, use an Iterator or Co

  • Answered by AI
  • Q5. What is transient keyword in Java?
  • Ans. 

    The transient keyword in Java is used to indicate that a variable should not be serialized.

    • Variables marked as transient are not included in the serialization process

    • Transient variables are not saved when an object is serialized and are set to their default values when the object is deserialized

    • Useful for excluding sensitive or unnecessary data from being serialized

  • Answered by AI
  • Q6. Given is two arrays! Merge and sort them
  • Ans. 

    Merge and sort two arrays

    • Use the merge sort algorithm to merge and sort the arrays

    • Convert the arrays to a list of strings before merging and sorting

    • Handle null or empty arrays as special cases

  • Answered by AI
  • Q7. Find the duplicate element in a given array using Java 8 features.
  • Ans. 

    Find duplicate element in array using Java 8 features.

    • Convert array to stream using Arrays.stream()

    • Use Collectors.groupingBy() to group elements by their occurrence

    • Filter the grouped elements to find duplicates

  • Answered by AI
  • Q8. Interviewer again asked me about what I has been working on recently! Like the tech stack I used.
  • Q9. What are the various annotations used in SpringBoot (explain)
  • Ans. 

    Various annotations used in SpringBoot

    • 1. @SpringBootApplication: Marks the main class of a Spring Boot application

    • 2. @RestController: Marks a class as a RESTful controller

    • 3. @RequestMapping: Maps HTTP requests to handler methods

    • 4. @Autowired: Injects dependencies automatically

    • 5. @Component: Marks a class as a Spring component

    • 6. @Service: Marks a class as a service component

    • 7. @Repository: Marks a class as a repository ...

  • Answered by AI
  • Q10. What are the different bean scopes in Spring
  • Ans. 

    The different bean scopes in Spring are singleton, prototype, request, session, and application.

    • Singleton scope creates a single instance of a bean per Spring IoC container.

    • Prototype scope creates a new instance of a bean every time it is requested.

    • Request scope creates a new instance of a bean for each HTTP request.

    • Session scope creates a new instance of a bean for each HTTP session.

    • Application scope creates a single

  • Answered by AI
  • Q11. Find the third highest salary in sql
  • Ans. 

    To find the third highest salary in SQL, you can use the 'ORDER BY' clause and 'LIMIT' keyword.

    • Write a SQL query to select distinct salaries from the table

    • Order the salaries in descending order using the 'ORDER BY' clause

    • Use the 'LIMIT' keyword to limit the result to the third row

    • Retrieve the third highest salary from the result

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions & Answers

user image UJWAL SUVARNA

posted on 14 Jul 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. String questions
  • Q2. Collections questions

Interview Preparation Tips

Topics to prepare for Infosys Java Developer interview:
  • Java
  • Springboot

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
Q4. How to sort a list of students on the basis of their First name?
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Just asked about framework

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

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to Java Basics, Java 8
Round 2 - Behavioral 

(1 Question)

  • Q1. Situational questioning

Infosys interview questions for designations

 Senior Java Developer

 (21)

 Junior Java Developer

 (6)

 Java Software Developer

 (3)

 Associate Java Developer

 (2)

 Java Developer Trainee

 (1)

 Lead Java Developer

 (2)

 Backend Java Developer

 (2)

 Fullstack Java Developer

 (1)

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

(1 Question)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • HashMap uses the hashCode() method of keys to calc...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Infosys Interview Questions

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Collection framework
Round 2 - HR 

(2 Questions)

  • Q1. Reason for job switch
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Looking for opportunities to expand my skill set and knowledge

    • Seeking a more challenging role to further develop my expertise

    • Interested in working with new technologies and projects

  • Answered by AI
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep you basic fundamentals clear

Java Developer Jobs at Infosys

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is jre explain
  • Ans. 

    JRE stands for Java Runtime Environment, it is a software package that provides the necessary tools to run Java applications.

    • JRE includes Java Virtual Machine (JVM), class libraries, and other necessary files to run Java applications.

    • It does not contain development tools like compiler or debugger, which are included in JDK (Java Development Kit).

    • JRE is required to run Java applications on a computer, as it provides the...

  • Answered by AI
  • Q2. What is jdk explain
  • Ans. 

    JDK stands for Java Development Kit, it is a software development kit used for developing Java applications.

    • JDK includes tools for developing, debugging, and monitoring Java applications.

    • It contains JRE (Java Runtime Environment) which is necessary for running Java programs.

    • JDK also includes a compiler, debugger, and other tools needed for Java development.

    • Examples of JDK versions include JDK 8, JDK 11, and JDK 15.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basics of java

Skills evaluated in this interview

Java Developer Interview Questions & Answers

user image Manisha Jadhav

posted on 24 Apr 2024

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. First round was all about our comunication skills. They asked me questions like
  • Q2. 1)Tell me about yourself. 2)Tell me about your yesterday's day.
Round 2 - Technical 

(3 Questions)

  • Q1. In second round they asked me all questions about core and advance java .Also asked about my projects and what problems i faced during project.
  • Q2. 1.tell me about class loader in java and how it works? 2.Types of operators in java. etc
  • Ans. 

    Class loader in Java is responsible for loading classes into memory at runtime. It follows a delegation hierarchy to find and load classes.

    • Class loader loads classes into memory dynamically at runtime

    • It follows a delegation hierarchy to find and load classes

    • Types of operators in Java include arithmetic, bitwise, logical, assignment, etc.

  • Answered by AI
  • Q3. 1.expalin your project. 2.What problems did you face while working on the project? 3.If a client comes suddendly and none of your seniors are there then how will you handle him?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Basics of Java and Springboot
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap vs hashtable
  • Ans. 

    Hashtable is synchronized and does not allow null keys or values, while HashMap is not synchronized and allows null keys and values.

    • Hashtable is synchronized, while HashMap is not.

    • Hashtable does not allow null keys or values, while HashMap allows them.

    • Hashtable is thread-safe, while HashMap is not.

  • Answered by AI
  • Q2. Spring boot relationships

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was late by 1 and half hour. Interviewer was friendly. Mostly asked questions on previous projects, core java and spring boot

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Java Developer interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, One-on-one Round and HR.
How to prepare for Infosys 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 Infosys. The most common topics and skills that interviewers at Infosys expect are Java, Microservices, Spring Boot, Hibernate and SDLC.
What are the top questions asked in Infosys Java Developer interview?

Some of the top questions asked at the Infosys Java Developer interview -

  1. write a code to filter out loans with incomplete status using java 8 featur...read more
  2. 1.What is Singleton in java and create your own singleton class countering all ...read more
  3. Difference Between Comparator and Comparable. What is fully qualified domain na...read more
How long is the Infosys Java Developer interview process?

The duration of Infosys Java Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infosys Java Developer Interview Process

based on 116 interviews

4 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Java Developer Salary
based on 1.4k salaries
₹2 L/yr - ₹10.7 L/yr
At par with the average Java Developer Salary in India
View more details

Infosys Java Developer Reviews and Ratings

based on 123 reviews

3.7/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.1

Salary

3.7

Job security

3.7

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 123 Reviews and Ratings
Java Developer -(Hyderabad).

Hyderabad / Secunderabad,

Chennai

+1

3-8 Yrs

Not Disclosed

Java Developer (Thiruvananthapuram)

Kolkata,

Pune

+1

3-6 Yrs

Not Disclosed

Java Developer (Kolkatta)

Kolkata,

Pune

+1

3-6 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.4k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
51.2k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

System Engineer
31.7k salaries
unlock blur

₹2.5 L/yr - ₹5.6 L/yr

Technical Lead
31k salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Senior Associate Consultant
28.8k salaries
unlock blur

₹6.2 L/yr - ₹16.9 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

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