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
3.7

based on 37.1k Reviews

Filter interviews by

Infosys SDE Interview Questions, Process, and Tips

Updated 14 Dec 2024

Top Infosys SDE Interview Questions and Answers

  • Q1. Longest Increasing Subsequence For a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the ...read more
  • Q2. Return Subsets Sum to K Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Subset of an array 'ARR' is a tuple ...read more
  • Q3. Count Inversions For a given integer array/list 'ARR' of size 'N' containing all distinct values, find the total number of 'Inversions' that may exist. An inversion is de ...read more
View all 6 questions

Infosys SDE Interview Experiences

3 interviews found

SDE Interview Questions & Answers

user image Kartik Saroha

posted on 14 Dec 2024

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

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

July online coding test consists of 3 question pretty medium level

Round 2 - Group Discussion 

July -economics ,good commumication skill checks

SDE Interview Questions & Answers

user image Piyush Bhati

posted on 5 Aug 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. What is annotation in spring boot
  • Ans. 

    Annotations in Spring Boot are used to provide metadata about the application's components, helping Spring to understand how to manage them.

    • Annotations are used to configure Spring Boot components such as controllers, services, repositories, etc.

    • Annotations help Spring Boot to automatically detect and configure beans based on the annotations used.

    • Examples of annotations in Spring Boot include @RestController, @Service,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Skills evaluated in this interview

SDE Interview Questions Asked at Other Companies

asked in Infosys
Q1. Longest Increasing SubsequenceFor a given array with N elements, ... read more
asked in Infosys
Q2. Return Subsets Sum to KGiven an integer array 'ARR' of size 'N' a ... read more
asked in Nagarro
Q3. Puzzle QuestionHow do we measure forty-five minutes using two ide ... read more
asked in Nagarro
Q4. Partition to K equal sum subsetsYou are given an array of 'N' int ... read more
asked in Nagarro
Q5. Sort A “K” Sorted Doubly Linked List You’re given a doubly-linked ... read more

SDE Interview Questions & Answers

user image CodingNinjas

posted on 17 May 2022

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 180 minutes
Round difficulty - Hard

There was 1 round of 180 minutes which contains of 3 questions from DSA. the two question was of medium level but one question is of neither difficult nor medium level question based on tree

  • Q1. Longest Increasing Subsequence

    For a given array with N elements, you need to find the length of the longest subsequence from the array such that all the elements of the subsequence are sorted in strictly ...

  • Ans. 

    As there are many subproblems in the recursive solution which are solved again and again. So this problem has Overlapping Substructure property and re-computation of same subproblems can be avoided by either using Memoization or Tabulation.

    The simulation of approach will make things clear: 

    Input : arr[] = {3, 10, 2, 11}
    LIS[] = {1, 1, 1, 1} (initially)

    Iteration-wise simulation : 

    arr[2] > arr[1] {LIS[2] = ma...

  • Answered by CodingNinjas
  • Q2. Bipartite Graph

    Given a graph, check whether the graph is bipartite or not. Your function should return true if the given graph's vertices can be divided into two independent sets, ‘U’ and ‘V’ such tha...

  • Ans. 

    Following is a simple algorithm to find out whether a given graph is Bipartite or not using Breadth First Search (BFS). 
    1. Assign RED colour to the source vertex (putting into set U). 
    2. Colour all the neighbours with BLUE colour (putting into set V). 
    3. Colour all neighbour’s neighbour with RED colour (putting into set U). 
    4. This way, assign colour to all vertices such that it satisfies all the co...

  • Answered by CodingNinjas
  • Q3. Count Inversions

    For a given integer array/list 'ARR' of size 'N' containing all distinct values, find the total number of 'Inversions' that may exist.

    An inversion is defined fo...

  • Ans. 

    The idea is to use a method similar to the merge sort algorithm. Like merge sort, divide the given array into two parts. For each left and right half, count the inversions, and at the end, sum up the inversions from both halves to get the resultant inversions.

    Approach ; -

    Suppose the number of inversions in the left half and right half of the array (let be inv1 and inv2); what kinds of inversions are not accounted for i...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

In interview I was asked about some question related to Data structures , DBMS . Some output based question was asked and 2 coding problems was given to solve.

  • Q1. Return Subsets Sum to K

    Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'.

    Subset of an array 'ARR&...

  • Ans. 

    Recursively generate all the subsets and keep track of the sum of the elements in the current subset.

    Subsets can be generated in the following way. For every element of the array, there are 2 options: 

    Include the element in the current subset : If we include the element in the current subset, then we decrease the value of ‘K’ by the value of the element.
    Do not include the element in the current subset : There is n...

  • Answered by CodingNinjas
  • Q2. Boundary Traversal

    You have been given a binary tree of integers. Your task is to print the boundary nodes of this binary tree in Anti-Clockwise direction starting from the root node.

    NOTE:
    The boundary...
  • Ans. 

    I was not able to solve this question but the approach is given below.

    The boundary traversal of a binary tree can be broken down into 4 parts. These parts are given in the same order as they are present in the traversal-



    The root node - The root node will always be our first node in the whole boundary traversal.

    The left boundary - The left most nodes of the left subtree are also included in the boundary traversal, so we...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE in PuneEligibility criteria60% in 12th & above 65% in B.techInfosys interview preparation:Topics to prepare for the interview - Data Structures, DBMS ,OOPS ,System Design, Algorithms, Dynamic Programming.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 - Practice At least 250 Questions of DS algo
Tip 2 - Do at least 2 application based projects
Tip 3 - Practice questions with optimized approaches

Application resume tips for other job seekers

Tip 1 : Have some application based projects on resume.
Tip 2 : Do not put false things on resume.
Tip 3 : Project should clear and crisp

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview questions from similar companies

SDE Interview Questions & Answers

Accenture user image ARCHANA S

posted on 23 Dec 2024

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

It is easy for me . they asked questions related to logical reasoning, verbal, abstract reasoning and networking. all the questions are mcq based questions.

Round 2 - Coding Test 

Coding round was soo easy they asked one string related and another question is related to array

Round 3 - communication 

(2 Questions)

  • Q1. Read the given sentence in the scence
  • Q2. Heared and retell the heared sentences
Round 4 - One-on-one 

(2 Questions)

  • Q1. Self-introduction
  • Q2. About my hobbies

SDE Interview Questions & Answers

TCS user image Anonymous

posted on 19 Dec 2024

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

Common aptitude, Speed, distance, time , river man problems

Round 2 - Coding Test 

Coding questions average level

Round 3 - Technical 

(1 Question)

  • Q1. Introduction followed by basic coding questions like array sorting
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 3 EMERGING TECHNOLOGIES

SDE Interview Questions & Answers

Genpact user image Anonymous

posted on 7 Oct 2024

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

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

Round 1 - Aptitude Test 

It was easy to crack so easy

SDE Interview Questions & Answers

HCLTech user image Anonymous

posted on 29 Jun 2024

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

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

Round 1 - Aptitude Test 

Lit bit tougher as a beginner for quants like aptitude, verbal, and reasoning.

Round 2 - Coding Test 

They given 40 min for coding and , topics are below linked list , stacks

Round 3 - Coding Test 

They given 30 min for coding in topics of linked list , stacks

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn , learn , learn

SDE Interview Questions & Answers

Wipro user image Anonymous

posted on 28 May 2024

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

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

Round 1 - Coding Test 

Learn about techstack

SDE Interview Questions & Answers

Cognizant user image SOURAV RAWAT

posted on 11 May 2024

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

(1 Question)

  • Q1. What is oops and its applications and types of oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs allows for the organization of code into reusable components called objects.

    • Encapsulation, inheritance, and polymorphism are key principles of OOPs.

    • Examples of OOPs languages include Java, C++, and Python.

  • Answered by AI

Infosys Interview FAQs

How many rounds are there in Infosys SDE interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, Coding Test and Group Discussion.

Tell us how to improve this page.

People are getting interviews through

based on 2 Infosys interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Join Infosys Creating the next opportunity for people, businesses & communities

SDE Interview Questions from Similar Companies

TCS SDE Interview Questions
3.7
 • 12 Interviews
Accenture SDE Interview Questions
3.9
 • 10 Interviews
HCLTech SDE Interview Questions
3.5
 • 3 Interviews
IBM SDE Interview Questions
4.1
 • 2 Interviews
Genpact SDE Interview Questions
3.9
 • 2 Interviews
Wipro SDE Interview Questions
3.7
 • 1 Interview
View all
Infosys SDE Salary
based on 4 salaries
₹3.3 L/yr - ₹6.7 L/yr
72% less than the average SDE Salary in India
View more details

Infosys SDE Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.3k salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

System Engineer
38.8k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.6k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27k salaries
unlock blur

₹6.2 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview