Infosys private limited interview experience Real time questions & tips from candidates to crack your interview

Programmer Analyst

Infosys private limited
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: DS, OOPS , Programming language , Operating system , Computer network
Tip
Tip

Tip 1 : Have great knowledge of Technical Skills
Tip 2 : Should have knowledge of your academic projects

Application process
Where: Campus
Eligibility: 6.5 CGPA
Resume Tip
Resume tip

Tip 1 : Resume should be one page
Tip 2 : Mention all technical skills.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date1 Jul 2021
Coding problem1

This Round consists of Both technical and Non-technical round

1. Next Greater Element

Easy
10m average time
90% success
0/40
Asked in companies
DunzoCiscoIBM

Given an integer array Arr of size N the task is to find the count of elements whose value is greater than all of its prior elements.

Problem approach

Tip 1 : 1st element of the array should be considered in the count of the result.
Tip 2 : For example :
Arr[]={7,4,8,2,9}
As 7 is the first element, it will consider in the result.
Tip 3 : 8 and 9 are also the elements that are greater than all of its previous elements.
Since total of 3 elements is present in the array that meets the condition. Hence the output = 3.

Try solving now
02
Round
Medium
Video Call
Duration40 minutes
Interview date6 Jul 2021
Coding problem2

This is pure technical Round, asked questions from Academic projects and programming language concepts

1. Reverse Linked List

Easy
15m average time
85% success
0/40
Asked in companies
PayPalOracleVisa

Given a pointer to the head node of a linked list, the task is to reverse the linked list. We need to reverse the list by changing the links between nodes.

Problem approach

Tip 1 : Initialize three pointers prev as NULL, curr as head and next as NULL.
Tip 2 : Iterate through the linked list. In loop, do following. 
// Before changing next of current, 
// store next node 
next = curr->next
// Now change next of current 
// This is where actual reversing happens 
curr->next = prev 
// Move prev and curr one step forward 
prev = curr 
curr = next

Try solving now

2. Merge Sort

Easy
15m average time
85% success
0/40
Asked in companies
Wells FargoThought WorksAccenture

Given an integer array, sort it using the merge sort algorithm.

Problem approach

Tip 1 : Divide the unsorted array into n subarrays, each of size 1 (an array of size 1 is considered sorted).
Tip 2 : Repeatedly merge subarrays to produce new sorted subarrays until only 1 subarray is left, which would be our sorted array.

Try solving now
03
Round
Easy
HR Round
Duration20
Interview date10 Jul 2021
Coding problem1

This is an HR round consists questions on Personality development

1. Basic HR Questions

  • What do you know about the work ethics here in the organization?
  • Where do you see yourself in 3 years?

Here's your problem of the day

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

Skill covered: Programming

To make an AI less repetitive in a long paragraph, you should increase:

Choose another skill to practice
Similar interview experiences
System Engineer Specialist
2 rounds | 4 problems
Interviewed by Infosys private limited
1453 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Infosys private limited
1224 views
0 comments
0 upvotes
Software Engineer
3 rounds | 3 problems
Interviewed by Infosys private limited
1174 views
0 comments
0 upvotes
Digital Specialist Engineer
3 rounds | 4 problems
Interviewed by Infosys private limited
875 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Programmer Analyst
3 rounds | 3 problems
Interviewed by Cognizant
1061 views
0 comments
0 upvotes
company logo
Programmer Analyst
3 rounds | 4 problems
Interviewed by Cognizant
947 views
0 comments
0 upvotes
company logo
Programmer Analyst
2 rounds | 3 problems
Interviewed by Cognizant
859 views
0 comments
0 upvotes