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 Software Developer Interview Questions, Process, and Tips for Experienced

Updated 5 Mar 2025

Top Infosys Software Developer Interview Questions and Answers for Experienced

  • Q1. 1. what is the difference between exception and error. How did u solve the errors in the code deployment?
  • Q2. 2. What is the difference between checked and unchecked exceptions and state their examples?
  • Q3. What is oops explain all the oops concepts with real life example and porramaticaly
View all 26 questions

Infosys Software Developer Interview Experiences for Experienced

41 interviews found

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

Oops concept projct to create as per requirement

Round 2 - HR 

(2 Questions)

  • Q1. Experiance in previous company
  • Ans. 

    I have 3 years of experience as a Software Developer in my previous company.

    • Developed web applications using Java, Spring, and Angular

    • Worked on database design and optimization using MySQL

    • Collaborated with cross-functional teams to deliver projects on time

  • Answered by AI
  • Q2. Previo0us company deails
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How are you able to handle a difficult client
  • Ans. 

    I handle difficult clients by remaining calm, listening actively, and finding solutions to their concerns.

    • Remain calm and composed during interactions

    • Listen actively to understand their concerns and frustrations

    • Empathize with their perspective and show understanding

    • Find solutions to address their issues and communicate effectively

  • Answered by AI
  • Q2. Few JAVA coding questions

Software Developer Interview Questions Asked at Other Companies for undefined

asked in Amazon
Q1. Fenwick Tree Problem Statement You are provided with an array/lis ... read more
asked in Infosys
Q2. 1. what is the difference between exception and error. How did u ... read more
asked in Amazon
Q3. Fire in the Cells Problem Statement Given a matrix MAT of size N ... read more
asked in Amazon
Q4. Find All Pairs Adding Up to Target Given an array of integers ARR ... read more
Q5. Is the Sentence a Pangram? Ninja is relocating to a place called ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between stream and collection
  • Ans. 

    Streams are used for processing elements from a data source sequentially, while collections are used for storing and managing groups of objects.

    • Streams are lazy and can be processed in parallel, while collections are eager and store all elements in memory.

    • Streams support functional-style operations like map, filter, and reduce, while collections provide methods like add, remove, and contains.

    • Example: List names = Array...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were 3 question. 2 medium and 1 hard.

Round 2 - Technical 

(2 Questions)

  • Q1. What is binary search?
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide the array in half and compare the target value with the middle element

    • If the target value is smaller, search the left half. If larger, search the right half

    • Repeat the process until the target value is found or the subarray is empty

  • Answered by AI
  • Q2. What is rest api?
  • Ans. 

    REST API is a type of web service that allows communication between different systems over HTTP using standard methods like GET, POST, PUT, DELETE.

    • REST stands for Representational State Transfer

    • Uses standard HTTP methods like GET, POST, PUT, DELETE for communication

    • Data is transferred in JSON or XML format

    • Stateless communication between client and server

    • Example: GET request to retrieve user data from a server

  • Answered by AI

Skills evaluated in this interview

Infosys interview questions for designations

 Senior Software Developer

 (19)

 Junior Software Developer

 (14)

 Software Developer fresher

 (6)

 Associate Software Developer

 (3)

 Java Software Developer

 (3)

 Embedded Software Developer

 (1)

 Software Developer Trainee

 (1)

 Assistant Software Developer

 (1)

Software Developer Interview Questions & Answers

user image Deepali Chavhan

posted on 11 Sep 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. CRUD app in angular with in 15min
  • Ans. 

    Create a CRUD app in Angular within 15 minutes

    • Set up Angular project with CLI

    • Create components for Create, Read, Update, and Delete operations

    • Implement services to interact with backend API

    • Use Angular Material for UI components

    • Test the app functionality

  • Answered by AI
  • Q2. Golang question

Skills evaluated in this interview

Get interview-ready with Top Infosys Interview Questions

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

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

Round 1 - Aptitude Test 

Asked general ability questions and quant and reasoning questions

Round 2 - Coding Test 

Asked questions related to data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes, good company

Software Developer Jobs at Infosys

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are the different app states in an iOS application?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked about Pegination

Software Developer Interview Questions & Answers

user image Ayush Pandey

posted on 22 Mar 2024

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

Moderate and coding was based array problem using brute force algorithm

Round 2 - One-on-one 

(4 Questions)

  • Q1. Java and oops and dsa question
  • Q2. Diff between abstraction and interface
  • Ans. 

    Abstraction is hiding the implementation details while interface is a contract that defines the methods that a class must implement.

    • Abstraction is achieved through abstract classes or interfaces in object-oriented programming.

    • Abstraction allows us to hide complex implementation details and only show the necessary features to the outside world.

    • Interfaces in Java are used to define a contract that a class must follow by ...

  • Answered by AI
  • Q3. What is hashtable
  • Ans. 

    A hashtable is a data structure that stores key-value pairs and allows for quick retrieval of values based on their keys.

    • Uses a hash function to map keys to indexes in an array

    • Provides constant time complexity for insertion, deletion, and retrieval operations

    • Commonly used in programming languages like Java and Python for implementing dictionaries or maps

  • Answered by AI
  • Q4. What is stack and queue
  • Ans. 

    Stack is a data structure that follows Last In First Out (LIFO) principle. Queue is a data structure that follows First In First Out (FIFO) principle.

    • Stack: Last In First Out (LIFO) data structure. Example: stack of plates.

    • Queue: First In First Out (FIFO) data structure. Example: waiting line at a ticket counter.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. About degree and company

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is exception handling?
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in a program to prevent it from crashing.

    • It allows the program to gracefully handle unexpected situations.

    • Exceptions can be caught and handled using try-catch blocks.

    • Common exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and IOException.

    • Handling exceptions properly can improve the reliability and robustness of a software application.

  • Answered by AI
  • Q2. What different types of interfaces? features of java 8? current version they are using?
  • Ans. 

    There are different types of interfaces in Java, features of Java 8 include lambda expressions and streams, and the current version is Java 15.

    • Types of interfaces in Java include normal interfaces, functional interfaces, and marker interfaces.

    • Features of Java 8 include lambda expressions for functional programming, streams for processing sequences of elements, and default methods in interfaces.

    • Current version of Java i

  • Answered by AI

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Software Developer interview for experienced candidates?
Infosys interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Infosys interview process for experienced candidates are Technical, Aptitude Test and Coding Test.
How to prepare for Infosys Software Developer interview for experienced candidates?
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 Open Source, Technology Solutions, Problem Solving, Java and Consulting.
What are the top questions asked in Infosys Software Developer interview for experienced candidates?

Some of the top questions asked at the Infosys Software Developer interview for experienced candidates -

  1. 1. what is the difference between exception and error. How did u solve the erro...read more
  2. 2. What is the difference between checked and unchecked exceptions and state th...read more
  3. What is oops explain all the oops concepts with real life example and porramati...read more
How long is the Infosys Software Developer interview process?

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

Tell us how to improve this page.

Infosys Software Developer Interview Process for Experienced

based on 20 interviews

2 Interview rounds

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

Infosys Software Developer Reviews and Ratings

based on 358 reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.4

Salary

3.9

Job security

3.8

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 358 Reviews and Ratings
Java Software Develope

Pune,

Chennai

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
28k salaries
unlock blur

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