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 for Experienced

Updated 13 Feb 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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic cobol db2 jcl
  • Q2. Stop run

Interview Preparation Tips

Interview preparation tips for other job seekers - Strengthen your fundamentals and excel in technical skills.

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 (2)

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 (172)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is Trigger?
  • Ans. 

    A trigger is a special kind of stored procedure that is automatically executed when certain events occur in a database.

    • Triggers can be used to enforce business rules, maintain referential integrity, and automate repetitive tasks.

    • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

    • Triggers can be defined to execute before or after the triggering event.

    • They are commonly used in database ma...

  • Answered by AI
  • Q2. What is Flows and type?
  • Ans. 

    Flows are sequences of steps that represent a process or workflow. There are different types of flows based on their purpose and structure.

    • Flows are used to represent the sequence of steps in a process or workflow.

    • Types of flows include linear flows, branching flows, and looping flows.

    • Linear flows follow a single path from start to finish.

    • Branching flows have multiple paths based on conditions or decisions.

    • Looping flow...

  • Answered by AI
  • Q3. What is Batch class and example
  • Ans. 

    Batch class is a Salesforce feature used to process large amounts of data in chunks.

    • Batch class implements the Database.Batchable interface in Salesforce

    • It allows you to break down a large data set into smaller batches for processing

    • Batch class is useful for handling large data volumes without hitting governor limits

    • Example: A batch class can be used to update all account records with a specific field value

  • Answered by AI
  • Q4. Write a trigger on account
  • Ans. 

    A trigger on account to perform actions on record insert, update, or delete

    • Triggers are used to perform actions before or after records are inserted, updated, or deleted

    • Triggers can be written in Apex language

    • Example: Trigger to update a related object when an account is inserted

  • Answered by AI
  • Q5. What is future and queable
  • Ans. 

    Future and queable are terms related to asynchronous programming and task scheduling.

    • Future refers to a result that is not immediately available but will be at some point in the future.

    • Queable refers to tasks that can be added to a queue and executed in a specific order or based on certain conditions.

    • Examples: Future in Java's CompletableFuture, Queable tasks in Python's Celery.

  • Answered by AI

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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Cloud based questions based on resume

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is singleton class? Inheritance, Polymorphism, Annotations in spring boot.
  • Ans. 

    A singleton class is a class that allows only one instance of itself to be created and provides a global point of access to that instance.

    • Singleton classes are often used in Spring Boot for managing resources such as database connections or thread pools.

    • In Spring Boot, singleton beans are created by default, meaning that only one instance of a bean is created and shared across the application.

    • To create a singleton bean...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. In this round I have been asked for my current roles and responsibilities in current organization, Questions on Design pattern, CI/CD pipeline.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview experience was good at infosys.

Skills evaluated in this interview

Top Infosys Java Spring Boot Developer Interview Questions and Answers

Q1. explain new feature in java (labda, functional interface, default) , what is stream api , filter value not contain null, what is microservice, explain in real time , what is http vs https, inner join , outer join
View answer (1)

Java Spring Boot Developer Interview Questions asked at other Companies

Q1. What is the difference between Spring and Spring Boot?
View answer (2)

Infosys interview questions for popular designations

 System Engineer

 (1.2k)

 Software Engineer

 (315)

 Technology Analyst

 (274)

 Associate Consultant

 (267)

 Senior Systems Engineer

 (266)

 Software Developer

 (261)

 Business Analyst

 (240)

 Senior Associate Consultant

 (173)

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

(2 Questions)

  • Q1. Automate the Amazon search
  • Ans. 

    Automate Amazon search using Selenium WebDriver and Java

    • Use Selenium WebDriver to automate browser actions

    • Write test scripts in Java to interact with Amazon search functionality

    • Utilize locators like ID, class name, XPath to identify search elements

    • Verify search results using assertions

  • Answered by AI
  • Q2. Output of python programs
  • Ans. 

    The output of Python programs can vary based on the code logic and input provided.

    • Python programs can output text, numbers, lists, dictionaries, or custom objects.

    • Output can be displayed in the console, saved to a file, or used in further computations.

    • Errors or exceptions may also be part of the output.

    • Example: print('Hello, World!') will output 'Hello, World!' to the console.

  • Answered by AI

Skills evaluated in this interview

Senior Test Engineer Lead Interview Questions asked at other Companies

Q1. How to create pipeline in Jenkins
View answer (1)

Get interview-ready with Top Infosys Interview Questions

System Engineer Interview Questions & Answers

user image Sudarshan khade

posted on 13 Sep 2024

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

(1 Question)

  • Q1. It was related c,cpp and oops

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)

Jobs at Infosys

View all

Technology Analyst Interview Questions & Answers

user image Dhrumil Patel

posted on 22 May 2024

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

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. 1. Introduces your self 2. Ask about basic datastage questions
  • Q2. 3 . Explain scd 2 and how can we build in datastage 4. Write sql query which is related to join and sub query.
  • Ans. 

    SCD 2 is a type of slowly changing dimension in data warehousing, and can be implemented in DataStage using various techniques.

    • SCD 2 stands for Slowly Changing Dimension Type 2, which tracks historical changes in data over time.

    • In DataStage, SCD 2 can be implemented using the Change Data Capture stage or custom SQL queries.

    • To implement SCD 2 in DataStage, you need to identify the key columns for tracking changes, defin...

  • Answered by AI
  • Q3. 5. How to improve performance in Datastage
  • Ans. 

    To improve performance in Datastage, optimize job design, use efficient coding practices, utilize parallel processing, and monitor job performance.

    • Optimize job design by reducing unnecessary stages and transformations

    • Use efficient coding practices such as avoiding unnecessary data reads and writes

    • Utilize parallel processing to take advantage of multiple CPU cores

    • Monitor job performance using Datastage Director or other

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. 1. Introduce yourself self
  • Q2. 2. Why are you planing to switch job

Skills evaluated in this interview

Top Infosys Technology Analyst Interview Questions and Answers

Q1. An atomic spark job runs for 15 mins everyday ,one day it is running for more than an hour what might be the issue ?
View answer (4)

Technology Analyst 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 (1)

Java Developer interview

user image JAVA INTERVIEW BUDDY

posted on 16 Nov 2021

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

What are t codes used in sap

Junior SAP Consultant Interview Questions asked at other Companies

Q1. what are the service level agreements
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Apti questions were asked. they were begineer level

Round 2 - Technical 

(1 Question)

  • Q1. Asked about my project and few c++ questions

Top Infosys Senior Systems Engineer Interview Questions and Answers

Q1. 2. Explain COMP, COMP-2, COMP-3 and Display. What are the difference between Continue and Next Sentence? Why does SOC7 occur?
View answer (4)

Senior Systems Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
Add answer

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.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k 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
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Infosys Reviews and Ratings

based on 38.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 38.4k Reviews and Ratings
Lean-Six Sigma Professional

Hyderabad / Secunderabad

7-12 Yrs

Not Disclosed

Mainframe Developer- Pune

Hyderabad / Secunderabad,

Chennai

+1

2-7 Yrs

Not Disclosed

Angular Developer

Hyderabad / Secunderabad,

Chennai

+1

2-7 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.2k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39.4k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.5k salaries
unlock blur

₹6.2 L/yr - ₹17.1 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