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

Updated 26 Feb 2025

Top Infosys Interview Questions and Answers

View all 4.5k questions

Infosys Interview Experiences

Popular Designations

7.6k interviews found

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

3 coding questions in 3 hours.

Round 2 - Technical 

(5 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. Explain about the projects you're working currently
  • Q3. Do you have work experience in backend technologies
  • Ans. 

    Yes, I have 3 years of work experience in backend technologies including Java, Spring Boot, and SQL databases.

    • Worked with Java for backend development

    • Experience with Spring Boot framework

    • Proficient in working with SQL databases like MySQL and PostgreSQL

  • Answered by AI
  • Q4. Asked few questions in mentioned technologies
  • Q5. Explain the logic of longest substring
  • Ans. 

    Longest substring refers to finding the continuous sequence of characters within a string with no repeating characters.

    • Iterate through the string and keep track of the characters seen so far

    • Use a hashmap to store the index of each character

    • Update the start index of the substring when a repeating character is encountered

    • Calculate the length of the current substring and update the longest substring found so far

  • Answered by AI

Skills evaluated in this interview

Top Infosys Software Developer Interview Questions and Answers

Q1. 1. what is the difference between exception and error. How did u solve the errors in the code deployment?
View answer (16)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is a Python program that can be used to determine the best price for selling stocks?
  • Q2. Can you write a Python program to determine whether two given words are anagrams of each other without using built-in functions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Engage in these types of practices before attending the Infosys interview.

Python Software Developer Interview Questions asked at other Companies

Q1. What is the purpose of using the super keyword, Inheritance in Python
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project based Question
Round 2 - Behavioral 

(3 Questions)

  • Q1. Why are you changing job?
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Looking for new challenges and opportunities for growth

    • Interested in working in a more innovative environment

    • Seeking a better work-life balance

  • Answered by AI
  • Q2. How is your usual workday like?
  • Q3. What work you did for project? What was your specific contribution to project?
  • Ans. 

    I worked on developing data pipelines for ingesting and processing large volumes of data in Snowflake.

    • Designed and implemented ETL processes using Snowflake's features like Snowpipe and tasks.

    • Optimized SQL queries for performance and scalability.

    • Collaborated with data engineers and analysts to understand requirements and deliver solutions.

    • Implemented data quality checks and monitoring processes to ensure data integrity...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Location related

Snowflake Developer Interview Questions asked at other Companies

Q1. While creating a custom role which role should have the access to it
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the different phases of the Software Testing Life Cycle (STLC)?
  • Ans. 

    STLC consists of phases like requirement analysis, test planning, test design, test execution, and test closure.

    • Requirement Analysis: Understanding the project requirements and defining the scope of testing.

    • Test Planning: Creating a test plan which includes test strategy, test objectives, and resource planning.

    • Test Design: Developing test cases and test scenarios based on requirements.

    • Test Execution: Running the test c...

  • Answered by AI
  • Q2. Can you write a program that outputs a sentence in reverse?
  • Ans. 

    Yes, I can write a program that outputs a sentence in reverse.

    • Create a function that takes a string as input

    • Split the string into an array of words

    • Reverse the array

    • Join the array back into a string and return

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    I am a dedicated SDET Automation Test Engineer with 5 years of experience in creating and executing automated test scripts.

    • 5 years of experience in automation testing

    • Proficient in creating and executing automated test scripts

    • Strong knowledge of testing tools like Selenium and JUnit

    • Experience in Agile development environment

    • Excellent problem-solving skills

  • Answered by AI
  • Q2. What are your salary expectations?
  • Ans. 

    My salary expectations are based on my experience, skills, and the market rate for the position.

    • Research the average salary range for SDET Automation Test Engineers in the industry

    • Consider your level of experience and skills compared to the job requirements

    • Factor in any additional benefits or perks offered by the company

    • Be prepared to negotiate based on the overall compensation package

  • Answered by AI

Sdet Automation Test Engineer Interview Questions asked at other Companies

Q1. Wait in selenium and how to find all links present in a page xpath
View answer (2)

Infosys interview questions for popular designations

 System Engineer

 (1.2k)

 Software Engineer

 (316)

 Technology Analyst

 (276)

 Associate Consultant

 (269)

 Senior Systems Engineer

 (267)

 Software Developer

 (261)

 Business Analyst

 (240)

 Senior Associate Consultant

 (176)

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

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Write the program -> input -> aabbccc. Output -> a2b2c3
  • Ans. 

    Program to count consecutive characters in a string

    • Iterate through the string and compare each character with the next one

    • Maintain a count for each character and append to the output string when a different character is encountered

    • Example: input 'aabbccc' -> output 'a2b2c3'

  • Answered by AI
  • Q2. Write the dynamic xpath (both relative and absolute)
  • Ans. 

    Dynamic xpath is a way to locate elements on a web page based on changing attributes or positions.

    • Use functions like contains(), starts-with(), or ends-with() to create dynamic xpaths

    • Avoid using indexes in xpaths as they can change with page updates

    • Consider using unique attributes or text within the element to create a reliable xpath

  • Answered by AI
  • Q3. API difference between put and patch
  • Ans. 

    PUT is used to update or replace an entire resource, while PATCH is used to update specific fields of a resource.

    • PUT is idempotent, meaning multiple identical requests will have the same effect as a single request.

    • PATCH is not necessarily idempotent, as multiple identical requests may have different effects.

    • PUT requires the client to send the entire updated resource, while PATCH only requires the client to send the spe

  • Answered by AI
  • Q4. Basic SQL query

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on java collects and do write logic using same. Better to practice without IDE (usually interviewer ask to write in note pad or online complier)
Selenium concepts - Waits, Locators and Mouse Actions

Final,
All depends on interviewer mood.

Skills evaluated in this interview

Senior Quality Engineer Interview Questions asked at other Companies

Q1. what is least count of vernier caliper ,micrometer, height gauge?
View answer (13)

Get interview-ready with Top Infosys Interview Questions

Associate Consultant Interview Questions & Answers

user image Bodke Venkatesh

posted on 28 Oct 2024

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About my self and Azure experience
  • Q2. Technical questions on Azure Integration Services
Round 2 - Behavioral 

(2 Questions)

  • Q1. Not much technical but test your real time experience
  • Q2. About previous projects and roles
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiation
  • Q2. Location and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice experience with Infosys as a immediate joinee the process to only 12 days from first round to offer release.

Top Infosys Associate Consultant Interview Questions and Answers

Q1. What are the services you have used in AWS? What are the types of storage in S3? How will you troubleshoot if a web server is not responding? Have you come across DNS hosting, in AWS how can we achieve it? What is static hosting in AWS? Wha... read more
View answer (1)

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)

Jobs at Infosys

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Question on past experiences of your project
  • Q2. Memory management in Android Apps

Interview Preparation Tips

Topics to prepare for Infosys Senior Consultant interview:
  • Kotlin
  • Data Structures

Top Infosys Senior Consultant Interview Questions and Answers

Q1. What do understand by umask value and what are the by default values of umask if I create a file or a directory as a user and root?
View answer (1)

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Project Engineer interview

user image CodeEra

posted on 12 Mar 2022

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Diff between state and props
  • Q2. Lifecycle method in functional component
  • Q3. Find unique element
  • Q4. Remove duplicate element
  • Q5. Explain clousure

Top Infosys Reactjs Developer Interview Questions and Answers

Q1. What are higher-order functions in JS
View answer (3)

Reactjs Developer Interview Questions asked at other Companies

Q1. Implement counter such that it has 2 buttons to increment and decrement the values and also add a input field such that, whatever input is given, the value should be to that and value should should be decreased and increased from the input ... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic verbal abilitic and logical reasoning question ,pseudocode and essay writing

Round 2 - Technical 

(5 Questions)

  • Q1. About my internship and projects
  • Q2. Area of intrest
  • Ans. 

    My area of interest is in network security and data encryption.

    • I have experience in implementing firewalls and intrusion detection systems.

    • I am familiar with encryption algorithms such as AES and RSA.

    • I enjoy staying up-to-date on the latest security threats and technologies.

    • I have worked on securing networks for financial institutions and government agencies.

  • Answered by AI
  • Q3. Osi models and basic networking
  • Q4. Why do u want to join infosys
  • Q5. Favourite sport

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and good communication skill is enough to crack this interview

Top Infosys System Engineer Interview Questions and Answers

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (9)

System Engineer Interview Questions asked at other Companies

Q1. Who Won the Election???Elections are going on, and there are two candidates A and B, contesting with each other. There is a queue of voters and in this queue, some of them are supporters of A and some of them are supporters of B. Many of th... read more
View answer (12)

Infosys Interview FAQs

How many rounds are there in Infosys interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Technical, HR and Aptitude Test.
How to prepare for Infosys 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 SDLC, Java, Agile, Project Management and Performance Engineering.
What are the top questions asked in Infosys interview?

Some of the top questions asked at the Infosys interview -

  1. What is your strong point in terms of technical knowledge? Like JAVA, C, C++. ...read more
  2. 1. what is the difference between exception and error. How did u solve the erro...read more
  3. 1. Journal entry for Purchase with GST 2. Explain any one Ind AS 3. What is SAP...read more
How long is the Infosys interview process?

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

Tell us how to improve this page.

Infosys Interview Process

based on 4.8k interviews

Interview experience

4.1
  
Good
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 Reviews and Ratings

based on 39k reviews

3.6/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

2.7

Salary

4.1

Job security

3.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 39k Reviews and Ratings
Sap Isu Consultant

Kolkata,

Pune

+1

5-9 Yrs

₹ 5-10 LPA

Spark Developer

Hyderabad / Secunderabad,

Pune

+1

3-5 Yrs

₹ 5-15 LPA

Explore more jobs
Technology Analyst
55.9k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.5k salaries
unlock blur

₹2.8 L/yr - ₹8 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.6 L/yr

Senior Associate Consultant
27.7k 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.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview