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 3 Mar 2025

Top Infosys Interview Questions and Answers

View all 4.5k questions

Infosys Interview Experiences

Popular Designations

7.5k interviews found

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

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Project management basics
  • Q2. Scenario based questions on how to handled as a PM
  • Q3. Project Budgeting and pressure situations

Senior IT Project Manager Interview Questions asked at other Companies

Q1. How you handle escalation?
View answer (1)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java and spring boot related questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Manage round and roles and responsibilities
Round 3 - HR 

(1 Question)

  • Q1. Salrary discussion and other benefis

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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain your automation framework
  • Q2. Different types of waits

Top Infosys Selenium Automation Tester Interview Questions and Answers

Q1. How to achieve multiple inheritance in java
View answer (1)

Selenium Automation Tester Interview Questions asked at other Companies

Q1. How to get the count of all text box in a web page?
View answer (6)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts and elaboration on Inheritance and polymorphism.
  • Q2. Difference between abstract and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract f...

  • Answered by AI
  • Q3. MVC architecture and Design patterns

Top Infosys Senior Software Engineer Interview Questions and Answers

Q1. When an int is declare with 0 value and passed as an out parameter to a method what will be the output
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Infosys interview questions for popular designations

 System Engineer

 (1.1k)

 Software Engineer

 (307)

 Technology Analyst

 (277)

 Associate Consultant

 (270)

 Senior Systems Engineer

 (267)

 Software Developer

 (259)

 Business Analyst

 (240)

 Senior Associate Consultant

 (176)

Network Engineer Interview Questions & Answers

user image kailas devkule

posted on 15 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Palo Alto firewall packet flow
  • Q2. Palo Alto related
  • Q3. Template vs template stack
  • Ans. 

    Template is a single document or file, while template stack is a collection of templates organized in a hierarchy.

    • Template is a standalone document or file used as a starting point for creating new documents.

    • Template stack is a collection of templates organized in a hierarchy, where each template can inherit properties from templates above it.

    • Template stack allows for easier management and consistency in document creat...

  • Answered by AI
  • Q4. HA upgradations
  • Q5. Troubleshoot related

Skills evaluated in this interview

Top Infosys Network Engineer Interview Questions and Answers

Q1. If neither the port range in source NAT pools nor the default port range are configured, the default single port range is 1024 through 63,487.
View answer (1)

Network Engineer Interview Questions asked at other Companies

Q1. TCP/IP layers, why is transport needed for communication? What is Subnet mask and how does it help in data communication. Why is Vlan needed? Based on what information does a switch and router send a packet or frame? Types of arp, What is p... read more
View answer (2)

Get interview-ready with Top Infosys Interview Questions

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. How can you pass value to a program
  • Ans. 

    Values can be passed to a program through command line arguments, environment variables, configuration files, and user input.

    • Command line arguments: Values can be passed to a program when it is executed from the command line.

    • Environment variables: Values can be passed to a program through environment variables set in the operating system.

    • Configuration files: Programs can read values from configuration files to customiz...

  • Answered by AI
  • Q2. How to find the 5th highest value of salary of the employee table
  • Ans. 

    To find the 5th highest value of salary in the employee table, you can use SQL query with the ORDER BY and LIMIT clauses.

    • Use SQL query with ORDER BY clause to sort the salaries in descending order

    • Use LIMIT 4,1 to skip the first 4 highest salaries and get the 5th highest salary

  • Answered by AI
  • Q3. Substring in sort
  • Ans. 

    Sort an array of strings based on a substring

    • Use a custom comparator function to sort the array based on a specific substring

    • Implement the comparator function to compare substrings of each string in the array

    • Example: Sort array ['apple', 'banana', 'cherry'] based on substring 'an' -> ['banana', 'cherry', 'apple']

  • Answered by AI
  • Q4. How to accept parm parameter in cobol . Tell the structure of declaration in cobol
  • Ans. 

    In COBOL, parm parameters can be accepted using the ACCEPT statement. The declaration structure includes the PICTURE clause.

    • Use ACCEPT statement to accept parm parameter in COBOL

    • Declare parm parameter using PICTURE clause in COBOL

    • Example: ACCEPT parm-parameter

    • Example: 01 parm-parameter PIC X(10)

  • Answered by AI
  • Q5. What is global and local variable
  • Ans. 

    Global variables are accessible throughout the entire program, while local variables are only accessible within a specific function or block of code.

    • Global variables are declared outside of any function or block.

    • Local variables are declared within a function or block and are only accessible within that function or block.

    • Global variables can be accessed and modified by any part of the program.

    • Local variables have limite...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are not sure on any answer then give it a try if you known the keyword. It might be a right answer

Skills evaluated in this interview

Top Infosys Technical Lead Interview Questions and Answers

Q1. Managerial: 1) Explain any one past issue and its mitigation strategy. 2) How we can handle the situation when we found code is not complaint before one day of deployment. 3) why are you looking for Switch?
View answer (1)

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

Jobs at Infosys

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

I applied via Recruitment Consulltant

Round 1 - Technical 

(3 Questions)

  • Q1. SAP SD related --Process and tcodes used in SAP testing
  • Q2. Third party procurement process--Item categories usage
  • Ans. 

    Third party procurement process involves categorizing items for efficient usage and tracking.

    • Item categories help in organizing and tracking purchases from third-party vendors.

    • Usage of item categories ensures proper allocation of resources and budgeting.

    • Examples of item categories include office supplies, IT equipment, and marketing materials.

  • Answered by AI
  • Q3. Gaps in Functional Requirement Gathering and role of SAP SD Consultant in Support Project
  • Ans. 

    Functional requirement gathering gaps can lead to issues in support projects. SAP SD Consultants play a crucial role in bridging these gaps.

    • SAP SD Consultants need to ensure all functional requirements are clearly documented and understood by all stakeholders.

    • They should actively engage with business users to gather detailed requirements and translate them into SAP SD solutions.

    • Regular communication and collaboration w...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Preferred location, willing to relocate
  • Ans. 

    Open to relocation for the right opportunity

    • Willing to relocate for the right job and career advancement

    • Prefer locations with good work-life balance and opportunities for personal growth

    • Flexible with location based on job requirements and company culture

  • Answered by AI
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - State your reason for change and long term goals

Skills evaluated in this interview

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a program to reverse string
  • Q2. Explain TestNG annotations & sequence of the annotation. Also which annotation is used to repeat the test case?

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)

QA Engineer Interview Questions & Answers

user image Gopal Pawar

posted on 24 Aug 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a dedicated QA Engineer with 5 years of experience in testing web and mobile applications.

    • Experienced in manual and automated testing

    • Proficient in using testing tools like Selenium and Jira

    • Strong understanding of software development lifecycle

    • Excellent problem-solving skills

    • Certified in ISTQB Foundation Level

  • Answered by AI
  • Q2. Tell me all over Automation Experience?
  • Ans. 

    I have 5 years of automation experience using tools like Selenium, Appium, and JUnit.

    • Developed automated test scripts for web applications using Selenium WebDriver

    • Implemented mobile automation testing using Appium for iOS and Android apps

    • Utilized JUnit for unit testing and integration testing of Java applications

    • Integrated automation tests into CI/CD pipelines for continuous testing

    • Experience with test automation frame

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a dedicated QA Engineer with 5 years of experience in testing web and mobile applications.

    • Experienced in manual and automated testing

    • Proficient in using testing tools such as Selenium and Jira

    • Strong understanding of software development lifecycle

    • Excellent problem-solving skills

    • Certified in ISTQB Foundation Level

  • Answered by AI
  • Q2. Project regarding and write a program of a java?
Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a dedicated QA Engineer with 5 years of experience in testing web and mobile applications.

    • Experienced in manual and automated testing

    • Proficient in using testing tools like Selenium and Jira

    • Strong understanding of software development lifecycle

    • Excellent problem-solving skills

    • Certified in ISTQB Foundation Level

  • Answered by AI
  • Q2. Java related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared basic concepts

Top Infosys QA Engineer Interview Questions and Answers

Q1. Difference between different types of application. How they had been build and examples. Hybrid Web Application Native application
View answer (1)

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(7 Questions)

  • Q1. How to delete duplicates from same table
  • Ans. 

    Use a self-join query to delete duplicates from the same table.

    • Use a self-join query to identify the duplicate records based on a unique identifier column.

    • Delete the duplicate records using the DELETE statement with the self-join condition.

  • Answered by AI
  • Q2. Write a query to display 5th max salary
  • Ans. 

    Query to display 5th max salary in a table

    • Use the RANK() function to assign a rank to each salary

    • Filter the results to only show the row with rank 5

    • Order the salaries in descending order to get the 5th max salary

  • Answered by AI
  • Q3. What is cursor and its attributes
  • Ans. 

    A cursor is a pointer to a result set for a SQL query. It allows you to iterate through the rows of the result set.

    • Cursors are used in PL/SQL to process individual rows returned by a query.

    • Attributes of a cursor include %NOTFOUND, %FOUND, %ROWCOUNT, and %ISOPEN.

    • Example: OPEN cursor_name; FETCH cursor_name INTO variable; CLOSE cursor_name;

  • Answered by AI
  • Q4. What is exception handling and write its syntax
  • Ans. 

    Exception handling is a mechanism to handle errors or unexpected events in a program.

    • Syntax: BEGIN -- code block EXCEPTION -- exception handling block END;

    • Exceptions can be predefined or user-defined

    • Common predefined exceptions include NO_DATA_FOUND, TOO_MANY_ROWS, etc.

    • User-defined exceptions can be declared using the EXCEPTION keyword

  • Answered by AI
  • Q5. What is performance tuning
  • Ans. 

    Performance tuning is the process of optimizing the speed and efficiency of a system or application.

    • Identifying and resolving bottlenecks in the system

    • Optimizing SQL queries and database design

    • Improving code efficiency and reducing resource usage

    • Monitoring system performance and making adjustments as needed

  • Answered by AI
  • Q6. Write merge statement in plsql
  • Ans. 

    Merge statement in PL/SQL combines insert and update operations based on a condition.

    • Use MERGE INTO statement followed by target table name

    • Specify USING clause with source table or subquery

    • Define ON condition to match rows for update or insert

    • Use WHEN MATCHED THEN UPDATE SET for update operation

    • Use WHEN NOT MATCHED THEN INSERT VALUES for insert operation

  • Answered by AI
  • Q7. What are triggers and write its syntax
  • Ans. 

    Triggers are PL/SQL blocks that are automatically executed when certain events occur on a table.

    • Triggers can be used to enforce business rules, audit changes, or maintain data integrity.

    • Syntax: CREATE OR REPLACE TRIGGER trigger_name BEFORE/AFTER INSERT/UPDATE/DELETE ON table_name FOR EACH ROW BEGIN -- trigger logic here END;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for coding also

Skills evaluated in this interview

Top Infosys Plsql Developer Interview Questions and Answers

Q1. How can distinct values be obtained without using the DISTINCT keyword?
View answer (1)

Plsql Developer Interview Questions asked at other Companies

Q1. What is procedure in plsql and it's syntax and difference between procedure and function?
View answer (7)

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.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Infosys Reviews and Ratings

based on 39.4k 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 39.4k Reviews and Ratings
Python Developer

Hyderabad / Secunderabad,

Pune

+1

3-6 Yrs

Not Disclosed

Java Developer

Hyderabad / Secunderabad,

Chennai

+1

3-6 Yrs

Not Disclosed

Python Developer

Hyderabad / Secunderabad,

Chennai

+1

3-6 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.6k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹7.8 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.1 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.9k salaries
unlock blur

₹4.5 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