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 Specialist Programmer Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Infosys Specialist Programmer Interview Questions and Answers

  • Q1. 1. Find the first occurrence of the target value in a sorted array. (Duplicates are allowed)
  • Q2. 2. Find the maximum subarray sum given an array with positive and negative integers.
  • Q3. Which are the process scheduling algorithms and explain each algorithm.
View all 51 questions

Infosys Specialist Programmer Interview Experiences

85 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse the sentence
  • Q2. Top view of binary tree
  • Ans. 

    Top view of binary tree is the nodes visible when viewed from the topmost node.

    • Top view is the set of nodes visible when viewed from the topmost node

    • Nodes are ordered from left to right

    • Nodes at the same horizontal distance from the root are at the same level

    • Example: For tree with root node A and left child B and right child C, top view is B-A-C

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Leetcode medium questions this is very helpful.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the largest subarray with equal character frequency
  • Ans. 

    Find the largest subarray with equal character frequency in an array of strings.

    • Iterate through each string in the array and calculate the frequency of each character.

    • Store the frequency of characters in a hashmap.

    • Keep track of the starting and ending indices of the subarray with equal character frequency.

    • Return the largest subarray with equal character frequency.

  • Answered by AI
  • Q2. Explain Precision and Recall with real world examples
  • Ans. 

    Precision measures the accuracy of positive predictions, while recall measures the ability to find all positive instances.

    • Precision = TP / (TP + FP)

    • Recall = TP / (TP + FN)

    • Example: In spam email detection, precision is the ratio of correctly classified spam emails to all emails classified as spam.

    • Example: In disease diagnosis, recall is the ratio of correctly identified positive cases to all actual positive cases.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare leetcode medium level questions for interviews

Skills evaluated in this interview

Specialist Programmer Interview Questions Asked at Other Companies

asked in Infosys
Q1. 1. Find the first occurrence of the target value in a sorted arra ... read more
asked in Infosys
Q2. 2. Find the maximum subarray sum given an array with positive and ... read more
asked in Infosys
Q3. Which are the process scheduling algorithms and explain each algo ... read more
asked in Infosys
Q4. What is deadlock in OS & how it overcome?
asked in Infosys
Q5. Write a SQL query to print n'th highest salary with full details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before May 2023.

Round 1 - Coding Test 

The coding round had 3 questions. One easy and 2 medium-hard level questions. The questions were based on array, strings and DP.

Round 2 - Technical 

(1 Question)

  • Q1. The technical round was a video interview where they asked questions related to MEAN stack and the project solutions that I have worked on.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Maharaja Agrasen Institute of Technology, Delhi and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Good DSA questions medium to hard level

Round 2 - Technical 

(1 Question)

  • Q1. Face to Face interview with DSA and Database questions

Infosys interview questions for designations

 Programmer

 (8)

 Programmer Analyst

 (3)

 Software Programmer

 (3)

 SAS Programmer

 (1)

 Java Programmer

 (1)

 Senior Programmer

 (1)

 Programmer Analyst Trainee

 (2)

 DOT NET Programmer

 (1)

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Two questions. I think the selection was based on being able to solve one question completely.

Round 2 - One-on-one 

(1 Question)

  • Q1. It was on the standard data structures and on projects.

Get interview-ready with Top Infosys Interview Questions

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

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Solve medium to hard level leetcode questions

Round 2 - Technical 

(1 Question)

  • Q1. Java 8 and Spring boot
Round 3 - HR 

(1 Question)

  • Q1. Basic behavioural questions

Specialist Programmer Jobs at Infosys

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

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

3 Medium leet code questions

Round 2 - Technical 

(1 Question)

  • Q1. Based on resume multiple questions on Java, spring boot and angular

I applied via Campus Placement and was interviewed in Nov 2021. There were 2 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Q1. Tell me about yourself. Q2. Asked a coding question write a code to produce next palindrome string. Q3. Asked a coding question regarding LCS (longest common sub string) DP? Q4. Asked about basic data ...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Verbal, quants and reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions on C, python and dbms.
Interview experience
3
Average
Difficulty level
-
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed before Oct 2022.

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 - Coding Test 

3 questions in 3 hours
1 easy level
2 medium level
3 hard level

Round 3 - One-on-one 

(2 Questions)

  • Q1. About java Oops concepts Data structures Your current projects
  • Q2. Compare time complexityand space complexity of array list and linked list
  • Ans. 

    Array list has O(1) time complexity for accessing elements but O(n) for insertion/deletion, while linked list has O(n) time complexity for accessing elements but O(1) for insertion/deletion.

    • Array list has constant time complexity O(1) for accessing elements by index, but linear time complexity O(n) for insertion/deletion operations due to shifting elements.

    • Linked list has linear time complexity O(n) for accessing eleme...

  • Answered by AI

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Specialist Programmer interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Infosys Specialist Programmer 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 Microservices, Java, HTML, Open Source and Agile.
What are the top questions asked in Infosys Specialist Programmer interview?

Some of the top questions asked at the Infosys Specialist Programmer interview -

  1. 1. Find the first occurrence of the target value in a sorted array. (Duplicates...read more
  2. 2. Find the maximum subarray sum given an array with positive and negative inte...read more
  3. Which are the process scheduling algorithms and explain each algorit...read more
How long is the Infosys Specialist Programmer interview process?

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

Tell us how to improve this page.

Infosys Specialist Programmer Interview Process

based on 85 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round - 1
  • Technical Round - 2
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Infosys Specialist Programmer Salary
based on 3.7k salaries
₹6.5 L/yr - ₹18.1 L/yr
At par with the average Specialist Programmer Salary in India
View more details

Infosys Specialist Programmer Reviews and Ratings

based on 392 reviews

3.6/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

2.9

Salary

4.5

Job security

3.6

Company culture

2.4

Promotions

3.3

Work satisfaction

Explore 392 Reviews and Ratings
Technology Analyst
55.8k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.8k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.8k salaries
unlock blur

₹4.5 L/yr - ₹17 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

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