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
3.6

based on 37.9k Reviews

Filter interviews by

Infosys Interview Questions, Process, and Tips for Experienced

Updated 31 Jan 2025

Top Infosys Interview Questions and Answers for Experienced

View all 1.4k questions

Infosys Interview Experiences for Experienced

Popular Designations

2.2k interviews found

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

(6 Questions)

  • Q1. Write any Get API
  • Ans. 

    A simple example of a Get API

    • Use a HTTP GET request to retrieve data from a server

    • Include the endpoint URL in the request

    • Handle the response data accordingly

  • Answered by AI
  • Q2. What is final class
  • Ans. 

    A final class is a class that cannot be subclassed or extended.

    • Final classes are declared using the 'final' keyword in Java.

    • Final classes cannot have any subclasses.

    • Final classes are often used for utility classes or classes that should not be modified or extended.

  • Answered by AI
  • Q3. What is static class
  • Ans. 

    A static class is a class that cannot be instantiated and can only contain static members.

    • Static classes are used to group related methods and properties that do not require an instance of the class to be created.

    • Static classes are declared using the 'static' keyword in C#.

    • Static classes cannot be instantiated and cannot contain instance members.

    • Example: 'Math' class in C# is a static class that contains static methods

  • Answered by AI
  • Q4. Explain OOPS concepts
  • Ans. 

    OOPS concepts are the foundation of object-oriented programming, including principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the compl...

  • Answered by AI
  • Q5. Abstract Class vs Interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that a class must implement.

    • Abstract class can have constructors, fields, and non-abstract methods.

    • Interface can only have abstract methods and constants.

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

    • Abstract class is used to provide a common base fo...

  • Answered by AI
  • Q6. Java 8 features
Round 2 - Technical 

(3 Questions)

  • Q1. What is public, Private protected
  • Ans. 

    Public, private, and protected are access modifiers in object-oriented programming languages.

    • Public: accessible from anywhere, both within and outside the class

    • Private: only accessible within the class where it is declared

    • Protected: accessible within the class and its subclasses

  • Answered by AI
  • Q2. Tell us about your day to day working
  • Q3. Difference between RestController and Controller
  • Ans. 

    RestController is a specialized version of Controller in Spring framework for RESTful web services.

    • RestController is used for creating RESTful web services in Spring framework.

    • Controller is used for handling general web requests.

    • RestController automatically serializes and deserializes request and response bodies as JSON.

    • Controller can return any type of response, not just JSON.

    • Example: @RestController vs @Controller in

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Legal Obligations if any ?
  • Ans. 

    Legal obligations refer to the responsibilities and duties that individuals or organizations are required to fulfill under the law.

    • Compliance with relevant laws and regulations

    • Protection of confidential information

    • Adherence to contractual agreements

    • Respect for intellectual property rights

    • Ensuring workplace safety and health standards

    • Proper handling of customer data and privacy

  • Answered by AI
  • Q2. Salary discussion

Skills evaluated in this interview

Top Infosys Senior Associate Consultant Interview Questions and Answers

Q1. Suppose there are two tables: A Customer table and an Order table. The Order table has a column OrderID CustomerID, OrderStatus, and TotalAmount. The Customer table has the columns CustomerID, CustomerName, PhoneNumber, and Email. Write dow... read more
View answer (2)

Senior Associate Consultant Interview Questions asked at other Companies

Q1. What is journal entries? What is cash allotment? What is differance between PO and Non-PO Invoice? What is accural expanses? What is prepaid expanses? What is vendor ageing? What is MIS? What is trend report?
View answer (4)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Asked about my project & roles on which im working
  • Q2. Asked about Okta SSO Protocols like SAMl, OIDC
  • Q3. API Integration & Attribute Mapping
Round 2 - Technical 

(3 Questions)

  • Q1. Manager asked me some moderate questions about IAM
  • Q2. Asked me about Provisioning, JML Process
  • Q3. Asked about SCIM & OOTB connectors
Round 3 - HR 

(2 Questions)

  • Q1. Salary & Location discussion
  • Q2. Explained about company policies

Top Infosys Senior Associate Consultant Interview Questions and Answers

Q1. Suppose there are two tables: A Customer table and an Order table. The Order table has a column OrderID CustomerID, OrderStatus, and TotalAmount. The Customer table has the columns CustomerID, CustomerName, PhoneNumber, and Email. Write dow... read more
View answer (2)

Senior Associate Consultant Interview Questions asked at other Companies

Q1. What is journal entries? What is cash allotment? What is differance between PO and Non-PO Invoice? What is accural expanses? What is prepaid expanses? What is vendor ageing? What is MIS? What is trend report?
View answer (4)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Spring boot questions
  • Q2. Collections and threading
Round 2 - Behavioral 

(2 Questions)

  • Q1. Project explain
  • Ans. 

    I led a team in developing a Java project for a financial institution.

    • Developed a secure online banking platform using Java EE

    • Implemented features such as account management, transaction history, and fund transfers

    • Utilized Spring framework for dependency injection and Hibernate for database interaction

  • Answered by AI
  • Q2. Scenario based question

Lead Java Developer Interview Questions asked at other Companies

Q1. Can you create an application without the help of google
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. List vs Tuple, difference, what is ordered and indexing in them, how you iterate
  • Ans. 

    List and Tuple differences, ordering, indexing, and iteration

    • List is mutable, Tuple is immutable

    • Lists are ordered and indexed starting from 0, Tuples are also ordered but indexed starting from 0

    • Iterating through a List: for item in my_list: print(item)

    • Iterating through a Tuple: for item in my_tuple: print(item)

  • Answered by AI
  • Q2. Decorator with example code
  • Ans. 

    Decorator pattern allows adding new functionality to an object dynamically.

    • Decorator pattern involves adding new behaviors to objects by wrapping them in another object.

    • It allows for adding functionality without altering the original object.

    • Example: Adding logging functionality to a method by decorating it with a logging decorator.

  • Answered by AI
  • Q3. Generate prime numbers from 1 to n
  • Ans. 

    Generate prime numbers from 1 to n

    • Iterate from 2 to n and check if each number is prime

    • Use a boolean array to mark non-prime numbers

    • Optimize by only checking up to square root of n

  • Answered by AI
  • Q4. Aws services, more on lambda processing, events , context
Round 2 - Behavioral 

(2 Questions)

  • Q1. General team handling skills
  • Q2. In case of absentees in the team and end date is nearing means how you would communicate with stakeholders and completion strategy

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing tough, very easy questions even with 2-3 years experienced can clear it.

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)

Infosys interview questions for popular designations

 System Engineer

 (1.2k)

 Software Engineer

 (315)

 Technology Analyst

 (273)

 Associate Consultant

 (266)

 Senior Systems Engineer

 (263)

 Software Developer

 (261)

 Business Analyst

 (240)

 Senior Associate Consultant

 (173)

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

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

Round 1 - Coding Test 

Coding questions from leetcode. 15 minutes to solve

Round 2 - Technical 

(2 Questions)

  • Q1. What are life cycle hooks in angular?
  • Ans. 

    Life cycle hooks in Angular are functions that allow you to tap into specific points in a component's life cycle.

    • Angular components have several life cycle hooks such as ngOnInit, ngOnDestroy, ngOnChanges, etc.

    • These hooks allow you to perform actions at specific points in the component's life cycle, such as initialization, change detection, and destruction.

    • For example, ngOnInit is called after the component has been in...

  • Answered by AI
  • Q2. Pure and impure pipes in Angular
  • Ans. 

    Pure pipes do not change the input data, while impure pipes can change the input data.

    • Pure pipes are used for data transformation without side effects.

    • Impure pipes can have side effects and are used for operations like logging or API calls.

    • Pure pipes are faster as they are only executed when a pure change to the input is detected.

    • Impure pipes are executed on every change detection cycle.

    • Example: currency pipe is pure,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to work

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)

Get interview-ready with Top Infosys Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is daemon thread?
  • Ans. 

    A daemon thread is a low priority thread that runs in the background and does not prevent the JVM from exiting when all user threads have finished.

    • Daemon threads are used for tasks that need to run continuously in the background, such as garbage collection.

    • They are automatically terminated by the JVM when all user threads have finished execution.

    • To create a daemon thread in Java, you can call the setDaemon(true) method

  • Answered by AI
  • Q2. Profile in springboot

Skills evaluated in this interview

Top Infosys Java Developer Interview Questions and Answers

Q1. OOPS QuestionWhich among String or String Buffer should be preferred when there are lot of updates required to be done in the data?
View answer (2)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Jobs at Infosys

View all

Devops Engineer Interview Questions & Answers

user image Kyatham Keshavi

posted on 16 Oct 2024

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

What are the types of version control systems

Round 2 - Technical 

(1 Question)

  • Q1. Explain about your project
  • Ans. 

    Developed a CI/CD pipeline for a web application using Jenkins and Docker

    • Implemented automated testing using Selenium for regression testing

    • Utilized Ansible for configuration management of servers

    • Integrated Slack notifications for build status updates

  • Answered by AI

Top Infosys Devops Engineer Interview Questions and Answers

Q1. Which programming languages do you use regularly in your work?
View answer (4)

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the StringYou are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If the given string is: STR = "abcde". You have to print the string "edcba... read more
View answer (3)

Operations Executive interview

user image OnlineStudy4u

posted on 12 Mar 2022

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. APP configuration
  • Q2. Scenerio based questions
  • Q3. Fi AA , AP , GL ,AR, coupa , special gl indicator
  • Q4. Fi mm & fi sd integration
Round 2 - Technical 

(1 Question)

  • Q1. App run , controlling

Interview Preparation Tips

Topics to prepare for Infosys SAP Fico Consultant interview:
  • Prepare as per resume

Top Infosys SAP Fico Consultant Interview Questions and Answers

Q1. 1. Journal entry for Purchase with GST 2. Explain any one Ind AS 3. What is SAP? 4. What is ERP? 5. Why IT industry? 6. What is the use of Flash-Fill in Excel? 7. Any 5 excel features. (Pivot table, macros, flashfill, vlookup, charts)
View answer (3)

SAP Fico Consultant Interview Questions asked at other Companies

Q1. 1. Journal entry for Purchase with GST 2. Explain any one Ind AS 3. What is SAP? 4. What is ERP? 5. Why IT industry? 6. What is the use of Flash-Fill in Excel? 7. Any 5 excel features. (Pivot table, macros, flashfill, vlookup, charts)
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is difference beween sre and devops
  • Ans. 

    SRE focuses on reliability and stability of systems, while DevOps focuses on collaboration and automation.

    • SRE (Site Reliability Engineering) focuses on ensuring the reliability, availability, and stability of systems and services.

    • DevOps focuses on collaboration between development and operations teams, as well as automating processes for faster and more reliable software delivery.

    • SRE typically involves monitoring, inci...

  • Answered by AI
  • Q2. What is diffemrce between kubernetes and docker
  • Ans. 

    Kubernetes is a container orchestration tool, while Docker is a containerization platform.

    • Kubernetes is used for automating deployment, scaling, and management of containerized applications.

    • Docker is a platform for developing, shipping, and running applications in containers.

    • Kubernetes can manage multiple containers across multiple hosts, while Docker is used to create and run containers.

    • Kubernetes provides features li...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Senior Team Leader Interview Questions asked at other Companies

Q1. How will u manage with low bandwidth and excessive target to achieve EOD.
View answer (1)

Infosys Interview FAQs

How many rounds are there in Infosys interview for experienced candidates?
Infosys interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Infosys interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for Infosys interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Infosys interview for experienced candidates -

  1. 1. what is the difference between exception and error. How did u solve the erro...read more
  2. write a code to filter out loans with incomplete status using java 8 featur...read more
  3. Managerial: 1) Explain any one past issue and its mitigation strategy. 2) Ho...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 for Experienced

based on 1.2k 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.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Infosys Reviews and Ratings

based on 37.9k 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.4

Work satisfaction

Explore 37.9k Reviews and Ratings
Electrical Engineer

Mysuru / Mysore,

Chennai

+1

4-9 Yrs

₹ 3.6-5 LPA

I&C Engineer - Electrical

Noida,

Chennai

+1

4-9 Yrs

₹ 3.6-5 LPA

I&C engineer

Noida,

Mysuru / Mysore

+1

4-9 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.1k salaries
unlock blur

₹2.8 L/yr - ₹6.4 L/yr

System Engineer
39.2k salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Technical Lead
30.6k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

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