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

Test Engineer Interview Questions & Answers

user image Prarthana G

posted on 24 Jan 2025

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. What are the different types of waits in Selenium?
  • Q2. What is a Java program for identifying vowels?
  • Q3. What is the difference between smoke testing and sanity testing?
  • Q4. What is the purpose of a sprint retrospective meeting?
  • Q5. What are the uses of Selenium 4?
  • Q6. How do you manage dropdown menus?
  • Q7. What is the difference between a scenario and a scenario outline?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration was 1.5 hrs. Questions were asked on topics like aptitude, reasoning , puzzle solving and verbal ability. Also a topic was given on which candidates were expected to write an essay. Overall the difficulty level was easy to medium.

Round 2 - One-on-one 

(8 Questions)

  • Q1. Introduce Yourself
  • Q2. Explain about your projects (mentioned in resume)
  • Q3. Have you got any certifications on cloud technologies?
  • Ans. 

    Yes, I have certifications in AWS and Azure cloud technologies.

    • Certified AWS Solutions Architect

    • Microsoft Certified: Azure Administrator Associate

    • Completed training courses on Google Cloud Platform

  • Answered by AI
  • Q4. What do you do in your free time?
  • Q5. Explain about Encapsulation (OOPS concept)
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for data hiding, which prevents outside code from directly accessing an object's internal state.

    • Access to the data is typically controlled through public methods (getters and setters) defined in the cl...

  • Answered by AI
  • Q6. Tell about your previous intern/work experience if any
  • Q7. What is the one thing that you can say about you for which haven't been noticed by others and credited?
  • Q8. Questions about schooling, CGPA in college

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for round 1 test from various youtube videos. It helped me to clear the 1st round. For interview, don't mention things you aren't confident enough in your resume. Prepare well on OOPS concepts, SQL concepts, SDLC concepts and do general research about the company like who is the current ceo, what products are they offering right now, company values, etc.

Skills evaluated in 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)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Can you explain the Maven build lifecycle?
  • Ans. 

    Maven build lifecycle consists of phases like compile, test, package, install, deploy.

    • Maven build lifecycle consists of three main phases: clean, default, and site.

    • Each phase consists of a series of goals that are executed in a specific order.

    • Some common goals in Maven build lifecycle include compile, test, package, install, and deploy.

    • The clean phase removes all files generated by the previous build.

    • The default phase ...

  • Answered by AI
  • Q2. What is the code to reverse a sentence?
  • Ans. 

    Code to reverse a sentence using array of strings.

    • Split the sentence into an array of words

    • Reverse the array

    • Join the array back into a sentence

  • Answered by AI
  • Q3. What is static block in java?
  • Ans. 

    Static block in Java is a block of code that is executed only once when the class is loaded.

    • Static block is used to initialize static variables of a class.

    • It is executed before the main method.

    • Syntax: static { // code to be executed }

    • Example: static { System.out.println("Static block executed"); }

  • Answered by AI
  • Q4. What is exclude and include in TestNG?
  • Ans. 

    Exclude and include in TestNG are used to specify which test methods to run or skip during test execution.

    • Exclude attribute is used to specify which test methods to skip during test execution

    • Include attribute is used to specify which test methods to run during test execution

    • Both attributes can be used in the testng.xml file or in the @Test annotation

    • Example: @Test(groups = {"smoke"}, excludeGroups = {"regression"})

  • Answered by AI
  • Q5. What is code for reverse a digit?
  • Ans. 

    To reverse a digit, convert it to a string and then reverse the string.

    • Convert the digit to a string

    • Use built-in functions to reverse the string

    • Convert the reversed string back to a digit if needed

  • Answered by AI

Top Infosys Automation Test Engineer Interview Questions and Answers

Q1. Introduce yourself 1.What is STLC 2. difference between Test plan,test case,test scanario 3.Positive and negative scanarion on pen. 4.selenium framework. 5.how to write selenium test cases.
View answer (2)

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Why did you choose the flask over the django and fastapi?
  • Ans. 

    I chose Flask over Django and FastAPI due to its simplicity, flexibility, and ease of use for smaller projects.

    • Flask is lightweight and minimalistic, making it easier to set up and use for smaller projects.

    • Flask allows for more flexibility in terms of project structure and customization compared to Django.

    • Flask is well-suited for rapid prototyping and smaller applications where simplicity is key.

    • Django, on the other ha...

  • Answered by AI
  • Q2. Write the code for flask request and response block?
  • Ans. 

    Flask request and response block code snippet

    • Use Flask's request object to access incoming request data

    • Use Flask's jsonify function to create a JSON response

    • Handle different HTTP methods like GET, POST, etc. in the route function

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is ORM? which ORM tool, have you used?
  • Ans. 

    ORM stands for Object-Relational Mapping, a programming technique for converting data between incompatible type systems in object-oriented programming languages.

    • ORM is used to map objects from an application to tables in a relational database.

    • It simplifies data manipulation by allowing developers to work with objects instead of SQL queries.

    • Popular ORM tools include Hibernate for Java, Entity Framework for .NET, and Seq

  • Answered by AI
  • Q2. Write ORM code for select item from table?
  • Ans. 

    Use ORM code to select item from a table in database.

    • Use ORM query methods like find(), findOne(), or where() to select items from a table.

    • Specify the table name and any conditions for the selection.

    • Example: User.find({ where: { id: 1 } }) will select a user with id 1 from the User table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just conduct the interviews

Backend Developer Interview Questions asked at other Companies

Q1. Print a Binary Tree in Vertical OrderGiven a binary tree, return the vertical order traversal of the values of the nodes of the given tree. For each node at position (X, Y), (X-1, Y-1) will be its left child position while (X+1, Y-1) will b... read more
View answer (3)

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)

Angular Developer Interview Questions & Answers

user image SandhiyaMani

posted on 10 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(6 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate Angular Developer with 5 years of experience in building responsive web applications.

    • 5 years of experience in Angular development

    • Strong knowledge of HTML, CSS, and JavaScript

    • Experience in building responsive web applications

    • Familiarity with RESTful APIs and version control systems like Git

  • Answered by AI
  • Q2. Can you explain attributes in Html
  • Ans. 

    Attributes in HTML provide additional information about an element and are defined within the element's start tag.

    • Attributes are used to modify the behavior or appearance of an HTML element.

    • They are specified within the opening tag of an element using name-value pairs.

    • Examples include 'href' in an anchor tag (<a href='https://www.example.com'>) and 'src' in an image tag (<img src='image.jpg'>).

  • Answered by AI
  • Q3. Explain about Flexbox model
  • Ans. 

    Flexbox is a layout model in CSS that allows for dynamic and responsive design of web pages.

    • Flexbox is used to create flexible layouts that can adapt to different screen sizes and orientations.

    • It allows for easy alignment and distribution of elements within a container.

    • Flexbox properties include display: flex, flex-direction, justify-content, align-items, and flex-grow.

    • Example: display: flex; justify-content: center; a

  • Answered by AI
  • Q4. Explain about your project
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store.

    • Used Angular framework for front-end development

    • Implemented CRUD operations for managing products and sales

    • Integrated with backend APIs for data retrieval and storage

  • Answered by AI
  • Q5. How to transfer data between components
  • Ans. 

    Methods to transfer data between components in Angular include Input and Output properties, ViewChild, Services, and Event Emitters.

    • Using Input and Output properties to pass data from parent to child components and emit events from child to parent components.

    • Using ViewChild to access child components and their properties directly from the parent component.

    • Using Services to create a shared service that can be injected i...

  • Answered by AI
  • Q6. Mostly they asked about my project work
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate Angular Developer with 5 years of experience in building responsive web applications.

    • 5 years of experience in Angular development

    • Strong knowledge of HTML, CSS, and JavaScript

    • Experience in building responsive web applications

    • Familiarity with RESTful APIs and version control systems like Git

  • Answered by AI
  • Q2. Explain your current project and your contribution

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in what you are saying.

Skills evaluated in this interview

Top Infosys Angular Developer Interview Questions and Answers

Q1. Software development life cycle
View answer (3)

Angular Developer Interview Questions asked at other Companies

Q1. How can you pass data between parent and child components?, what is component interaction
View answer (5)

Get interview-ready with Top Infosys Interview Questions

Software Engineer Interview Questions & Answers

user image Nilima Patole

posted on 16 Jan 2025

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

It was good . 3 question

Round 2 - Coding Test 

It was hard, 5 questions

Round 3 - Technical 

(4 Questions)

  • Q1. Face to Face interview .
  • Q2. Java basic question
  • Q3. Java question directly start with hard coding question
  • Q4. Not asking self introduction or anything related past company
Round 4 - HR 

(1 Question)

  • Q1. NA i am not selected

Top Infosys Software Engineer Interview Questions and Answers

Q1. Split the StringYou are given a string ‘str’ of ‘N’ lowercase alphabets. Your task is to check whether it is possible to split the given string into three non-empty substrings such that one of them is a substring of another two. For example... read more
View answer (4)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (171)

Jobs at Infosys

View all
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 Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About current project
  • Q2. Type of issues that I have worked on.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions about Oracle payables
  • Q2. About plsql
Round 3 - HR 

(2 Questions)

  • Q1. Current salary and told me about their offer.
  • Q2. Gave me 75% hike also.

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more are try to do certificates related to your technology.

Oracle Financial Functional Consultant Interview Questions asked at other Companies

Q1. oracle bill in advance accounting entries
View answer (1)

System Engineer interview

user image OnlineStudy4u

posted on 5 Dec 2021

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Basics of JS and Node JS
  • Q2. Questions Related to my current project.
  • Q3. Object deep cloning, HTTP methods, Array questions, db indexing, load balancing
  • Q4. The interviewer asked me to write some code syntaxes
Round 2 - One-on-one 

(2 Questions)

  • Q1. Related to my project, day-to-day activities, team handling questions, difficulties faced, achievements
  • Q2. Some technical related to node js, single or multi-thread, why single thread, how single thread.
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion, DOJ
  • Q2. All the rounds mentioned above started with self-intro.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basics, Use the opportunity, and Give your best.

Top Infosys Node JS Developer Interview Questions and Answers

Q1. How do you deploy your Nodejs application?
View answer (1)

Node JS Developer Interview Questions asked at other Companies

Q1. 2. What are the main modules of Node.js? Explain in detail.
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test will be pretty hard. 2 questions will be giv

Round 2 - Coding Test 

Coding test will be pretty hard. Have to choose any one of 2 questions given and solve it in 45 mins.
Atleast 70-80% test case needs to be cleared to pass

Round 3 - Technical 

(4 Questions)

  • Q1. Drill down on the tech stack mentioned in CV
  • Q2. Basic concepts of Java
  • Q3. Advanced java like stream, sealed classes, webflux etc
  • Q4. Concepts on cloud, docker, kubernetes etc

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)
View answer (3)

Specialist Programmer Interview Questions asked at other Companies

Q1. 1. Find the first occurrence of the target value in a sorted array. (Duplicates are allowed)
View answer (3)

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