Infosys Technologies Limited interview experience Real time questions & tips from candidates to crack your interview

Software Developer

Infosys Technologies Limited
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 1 Month
Topics: Strings, Collections, Lifecycle of Beans, Spring Boot basics, Database queries, Java 8 concepts
Tip
Tip

Tip 1 : Practice basic programming questions
Tip 2 : Make sure to prepare according to the skills mentioned in your resume

Application process
Where: Other
Eligibility: Above 7 CGPA, required years of experience will also be mentioned along with the role
Resume Tip
Resume tip

Tip 1 : Mention only those skills that you have really worked on
Tip 2 : Keep it short, don't put anything in paragraphs
Tip 3 : Do not mention unnecessary details

Interview rounds

01
Round
Medium
Video Call
Duration45 minutes
Interview date2 Jul 2022
Coding problem2

questions of java language and one dsa question was asked...

1. Technical Questions

Usage of forEach, map, streams etc.

Problem approach

Tip 1 : Java language basics
Tip 2 : collection framework

2. BFS in Graph

Easy
10m average time
90% success
0/40
Asked in companies
Morgan StanleySamsung R&D InstituteRubrik, Inc.

Given an adjacency list representation of a directed graph with ‘n’ vertices and ‘m’ edges. Your task is to return a list consisting of Breadth-First Traversal (BFS) starting from vertex 0.


In this traversal, one can move from vertex 'u' to vertex 'v' only if there is an edge from 'u' to 'v'. The BFS traversal should include all nodes directly or indirectly connected to vertex 0.


Note:
The traversal should proceed from left to right according to the input adjacency list.


Example:
Adjacency list: { {1,2,3},{4}, {5}, {},{},{}}

The interpretation of this adjacency list is as follows:
Vertex 0 has directed edges towards vertices 1, 2, and 3.
Vertex 1 has a directed edge towards vertex 4.
Vertex 2 has a directed edge towards vertex 5.
Vertices 3, 4, and 5 have no outgoing edges.

We can also see this in the diagram below.

BFS traversal: 0 1 2 3 4 5

example

Problem approach

Follow the below method to implement BFS traversal.

Declare a queue and insert the starting vertex.
Initialize a visited array and mark the starting vertex as visited.
Follow the below process till the queue becomes empty:
Remove the first vertex of the queue.
Mark that vertex as visited.
Insert all the unvisited neighbours of the vertex into the queue.

Try solving now
02
Round
Easy
HR Round
Duration10 minutes
Interview date4 Jul 2022
Coding problem1

1. Basic HR Questions

Why you want to switch and other baisc questions were asked

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
Java Developer
3 rounds | 16 problems
Interviewed by Infosys Technologies Limited
47006 views
2 comments
0 upvotes
System Engineer
2 rounds | 4 problems
Interviewed by Infosys Technologies Limited
1617 views
0 comments
0 upvotes
System Engineer
2 rounds | 3 problems
Interviewed by Infosys Technologies Limited
0 views
1 comments
0 upvotes
Specialist Programmer
2 rounds | 4 problems
Interviewed by Infosys Technologies Limited
1233 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Developer
5 rounds | 14 problems
Interviewed by Microsoft
3931 views
1 comments
0 upvotes
company logo
Software Developer
6 rounds | 12 problems
Interviewed by SAP Labs
2806 views
0 comments
0 upvotes
company logo
Software Developer
3 rounds | 3 problems
Interviewed by Amazon
1133 views
0 comments
0 upvotes