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 14 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
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. General SAP SD Process question
Round 2 - Technical 

(1 Question)

  • Q1. Z enhancement and configurations
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Top Infosys SAP SD Consultant Interview Questions and Answers

Q1. Explain about pricing procedure
View answer (2)

SAP SD Consultant Interview Questions asked at other Companies

Q1. How to achieve to different pricing procedure for sales order and billing document , which controls will enable thia
View answer (6)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is map and how it i useful
  • Ans. 

    A map is a built-in data structure in Golang that allows you to store key-value pairs.

    • Maps are unordered collections of key-value pairs.

    • Keys in a map must be unique.

    • Maps are useful for efficient lookup and retrieval of values based on their keys.

    • You can add, update, and delete key-value pairs in a map.

    • Example: map[string]int{"apple": 5, "banana": 3}

  • Answered by AI
  • Q2. Explain about slice
  • Ans. 

    A slice is a dynamically-sized, flexible view of an underlying array in Go.

    • Slices are similar to arrays but with a variable length.

    • They are reference types and can be resized.

    • Slices can be created using the make() function or by slicing an existing array.

    • They provide a convenient way to work with collections of data.

  • Answered by AI
  • Q3. Difference between slice and array
  • Ans. 

    Arrays have fixed length, while slices are dynamic. Slices are references to arrays.

    • Arrays have a fixed length, while slices can grow or shrink dynamically.

    • Slices are references to arrays, allowing for efficient memory usage.

    • Arrays are value types, while slices are reference types.

    • Arrays are initialized with a specific size, while slices can be created from existing arrays or other slices.

    • Slices provide additional func

  • Answered by AI
  • Q4. What are go routines
  • Ans. 

    Go routines are lightweight threads of execution that allow concurrent programming in Go.

    • Go routines are created using the 'go' keyword followed by a function call.

    • They are executed concurrently and independently of the main program.

    • Go routines communicate with each other using channels.

    • They are used to achieve concurrency and parallelism in Go programs.

  • Answered by AI
  • Q5. How channels are used
  • Ans. 

    Channels are used in Go to enable communication and synchronization between goroutines.

    • Channels are typed and can only send or receive values of that type.

    • They can be created using the built-in make() function.

    • The <- operator is used to send and receive values from channels.

    • Channels can be used to implement various synchronization patterns like blocking and non-blocking operations.

    • They are commonly used for concurrent

  • Answered by AI

Skills evaluated in this interview

Golang Developer Interview Questions asked at other Companies

Q1. can we return difference data type and how ,what architeture you worked in your project,does go have oops concepts
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Jul 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing by providing mock dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • 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
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is tf State file in terraform
  • Ans. 

    Terraform state file is a file that keeps track of the resources managed by Terraform in a specific infrastructure.

    • Terraform state file stores metadata about the resources being managed.

    • It helps Terraform understand the current state of the infrastructure and track changes over time.

    • State file is usually stored locally or remotely in a backend like AWS S3 or Terraform Cloud.

    • It should be stored securely to prevent unaut

  • Answered by AI
  • Q2. What is load balancer
  • Ans. 

    A load balancer is a device or software that distributes network or application traffic across multiple servers to ensure optimal resource utilization, reliability, and performance.

    • Balances incoming network or application traffic across multiple servers

    • Improves reliability by distributing workload evenly

    • Enhances performance by preventing any single server from becoming a bottleneck

    • Can be hardware-based or software-base...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is rds in aws
  • Ans. 

    RDS in AWS stands for Relational Database Service, a managed database service that makes it easy to set up, operate, and scale a relational database in the cloud.

    • RDS is a fully managed database service provided by AWS

    • It supports popular database engines like MySQL, PostgreSQL, Oracle, SQL Server, and MariaDB

    • RDS automates routine tasks like hardware provisioning, database setup, patching, and backups

    • It offers high avail...

  • Answered by AI
  • Q2. What is step function
  • Ans. 

    A step function is a mathematical function that changes abruptly from one constant value to another.

    • Step functions are often used in computer science and signal processing to model discrete changes in a system.

    • Examples include the Heaviside step function and the rectangular function.

    • Step functions are characterized by having a constant value within specific intervals and sudden jumps at the boundaries.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Senior Associate Consultant interview:
  • Terraform
  • Python
  • AWS

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)

Infosys interview questions for popular designations

 System Engineer

 (1.2k)

 Software Engineer

 (315)

 Technology Analyst

 (275)

 Associate Consultant

 (268)

 Senior Systems Engineer

 (266)

 Software Developer

 (261)

 Business Analyst

 (240)

 Senior Associate Consultant

 (173)

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Multi Threading, Exception Handling, Collection, Java 8, Spring Boot
Round 3 - Technical 

(1 Question)

  • Q1. Managerial kind of questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation happened only.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not trust on this this company interview process until you will get the joining. I cracked two times in last 3 months but still they haven't gave any offer letter. One interview was in company campus as well.

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)

Get interview-ready with Top Infosys Interview Questions

Team Lead Interview Questions & Answers

user image Junaid Alam

posted on 4 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic question on java

Top Infosys Team Lead Interview Questions and Answers

Q1. How Cloud is better than other Virtualization platform
View answer (1)

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

Jobs at Infosys

View all

SAP Fiori Ui5 Developer Interview Questions & Answers

user image Venkatesh Talacheeru

posted on 3 Dec 2023

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

I applied via Naukri.com and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is Bootstrapping in SAPUI5?
  • Ans. 

    Bootstrapping in SAPUI5 is the process of initializing the SAPUI5 framework and loading the necessary resources.

    • Bootstrapping is done by including the SAPUI5 library in the HTML page

    • It sets up the runtime environment for SAPUI5 applications

    • Bootstrapping loads the necessary JavaScript and CSS files

    • It also initializes the core components of SAPUI5, such as the model and view

    • Bootstrapping can be done synchronously or asyn

  • Answered by AI
  • Q2. How routes and navigations work in sapui5 and where routes are defined and where their are initiated?
  • Ans. 

    Routes and navigations in SAPUI5 are used for navigation between different views in an application.

    • Routes are defined in the manifest.json file under the 'routing' section.

    • Routes are initiated using the Router class in the Component.js file.

    • Routes define the target view and the corresponding URL pattern.

    • Navigation between views is done using the Router's navTo method.

    • Routes can also have parameters that can be passed d

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys SAP Fiori Ui5 Developer interview:
  • Sapui
  • Fiori
  • Btp
  • Webide
  • Fiori launchpad
Interview preparation tips for other job seekers - To my opinion, people from product based companies shouldn't shift to the company like Infosys who are mostly into support. Because the knowledge the people from product possess will not be acceptable by support people. Because product people may do have a very good understanding of how things work but for support people all they need is the names and acronyms of specifics. I can't say it's wrong but the people who takes the interview should really have to understand what knowledge the person possess rather than their memorization of names.

Skills evaluated in this interview

SAP Fiori Ui5 Developer Interview Questions asked at other Companies

Q1. How routes and navigations work in sapui5 and where routes are defined and where their are initiated?
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions related pricing & more
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario basied questions
Round 3 - HR 

(1 Question)

  • Q1. About your self & salary discussion

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
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Interview process is long
  • Q2. Gone thru 4 round of interviews

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

Salesman Interview Questions & Answers

user image Dinesh Kumar

posted on 9 Jan 2025

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

All topics maths english any other

Round 2 - One-on-one 

(1 Question)

  • Q1. Any sale questions

Salesman Interview Questions asked at other Companies

Q1. How can you motivate the customer to buy our products
View answer (8)

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.6k 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.6k Reviews and Ratings
Java Developer-

Hyderabad / Secunderabad,

Chennai

+1

3-6 Yrs

Not Disclosed

Tosca Automation Test Engineer - PAN INDIA

Hyderabad / Secunderabad,

Ahmedabad

+1

3-8 Yrs

₹ 6-16 LPA

ETL Tester

Hyderabad / Secunderabad,

Pune

+1

3-8 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
56k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.3k 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.6k 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