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 38.2k Reviews

Filter interviews by

Infosys Interview Questions, Process, and Tips for Experienced

Updated 6 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
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Tell me yourself
  • Ans. 

    I am a technology analyst with a strong background in data analysis and software development.

    • I have a Bachelor's degree in Computer Science from XYZ University

    • I have 5 years of experience working as a technology analyst at ABC Company

    • I specialize in data visualization tools such as Tableau and Power BI

    • I have led successful projects in implementing new software solutions for clients

  • Answered by AI
  • Q2. What is your skillset and based on your skill set some straight forward question in round 1 and scenario based question in round 2.
  • Q3. Tell me some analytic function of sql
  • Ans. 

    Analytic functions in SQL are used to perform calculations across a set of rows related to the current row.

    • Common analytic functions include ROW_NUMBER, RANK, DENSE_RANK, LEAD, and LAG.

    • They can be used to calculate running totals, moving averages, and identify duplicates in a dataset.

    • Analytic functions are typically used with the OVER() clause to define the window of rows to be used in the calculation.

  • Answered by AI
  • Q4. Difference between rank and dense rank
  • Ans. 

    Rank assigns unique ranks to each distinct value, while dense rank assigns consecutive ranks to each distinct value.

    • Rank leaves gaps between ranks if there are ties, while dense rank does not

    • Rank function is used to assign a unique rank to each distinct row, while dense rank function is used to assign consecutive ranks to each distinct row

    • Example: If we have values 10, 20, 20, 30 - Rank would assign ranks as 1, 2, 2, 4...

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

(2 Questions)

  • Q1. I have Oracle EBS APPS.. so I faced questions on PLSQL tuning, exception handling, XML publisher report, P2P cycle with associative table
  • Q2. Bulk Binding, Bulk collect, cursor, dynamic SQL,DML/DDL Trigger

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the question will come based on your skillset. So mention those skills only in your CV on which you are quite confident.

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)

QA Tester Interview Questions & Answers

user image Anonymous

posted on 3 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. SDC 1,2,3 and joines,sql
  • Q2. About your project and your self

Interview Preparation Tips

Interview preparation tips for other job seekers - work more on SQL query part

QA Tester Interview Questions asked at other Companies

Q1. If you are given a ball pen tested for indian market, now you have to test it for international market, what testings will you perform.?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(9 Questions)

  • Q1. What is postman
  • Ans. 

    Postman is a popular API testing tool used for testing and debugging APIs.

    • Postman allows users to send requests to APIs and receive responses

    • It provides a user-friendly interface for creating and managing API requests

    • Postman can be used for automated testing of APIs

    • It supports various request types such as GET, POST, PUT, DELETE, etc.

  • Answered by AI
  • Q2. How postman helps for api testing
  • Ans. 

    Postman helps in API testing by providing a user-friendly interface to send requests, automate testing, and analyze responses.

    • Postman allows testers to easily send requests to APIs and view responses in a user-friendly interface.

    • It provides features for automating API testing, such as creating test scripts and running collections of tests.

    • Postman also offers tools for analyzing responses, including detailed logs and te...

  • Answered by AI
  • Q3. Method Overloading and overriding
  • Q4. Locators in Selenium
  • Ans. 

    Locators in Selenium are used to identify web elements on a webpage for automation testing purposes.

    • Locators include ID, class name, name, tag name, link text, partial link text, and xpath.

    • ID is the most efficient locator as it is unique for each element.

    • Xpath is powerful but can be slow and brittle if not used correctly.

    • Using CSS selectors is preferred over xpath for better performance.

    • Locators can be used with findEl

  • Answered by AI
  • Q5. SQL scenario based question
  • Q6. Smoke And Sanity
  • Q7. Many project based scenario question
  • Q8. Describe Your Framework
  • Ans. 

    My framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.

    • Data-driven approach for test data management

    • Integration of Selenium WebDriver for web automation

    • Utilization of TestNG for test case management and reporting

  • Answered by AI
  • Q9. Jenkins and Maven

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume .you are shortlisted based on your resume for tech round.

Skills evaluated in this interview

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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were 3 question. 2 medium and 1 hard.

Round 2 - Technical 

(2 Questions)

  • Q1. What is binary search?
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide the array in half and compare the target value with the middle element

    • If the target value is smaller, search the left half. If larger, search the right half

    • Repeat the process until the target value is found or the subarray is empty

  • Answered by AI
  • Q2. What is rest api?
  • Ans. 

    REST API is a type of web service that allows communication between different systems over HTTP using standard methods like GET, POST, PUT, DELETE.

    • REST stands for Representational State Transfer

    • Uses standard HTTP methods like GET, POST, PUT, DELETE for communication

    • Data is transferred in JSON or XML format

    • Stateless communication between client and server

    • Example: GET request to retrieve user data from a server

  • Answered by AI

Skills evaluated in this interview

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)

Infosys interview questions for popular designations

 System Engineer

 (1.2k)

 Software Engineer

 (315)

 Technology Analyst

 (274)

 Associate Consultant

 (267)

 Senior Systems Engineer

 (265)

 Software Developer

 (261)

 Business Analyst

 (240)

 Senior Associate Consultant

 (173)

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

(2 Questions)

  • Q1. Linux Commands explained in details
  • Q2. Explain kafka architecture
  • Ans. 

    Kafka architecture is a distributed streaming platform that is used for building real-time data pipelines and streaming applications.

    • Kafka is designed to be distributed, fault-tolerant, and scalable.

    • It consists of Producers, Brokers, and Consumers.

    • Producers publish messages to Kafka topics, which are then stored in partitions on Brokers.

    • Consumers subscribe to topics and pull messages from partitions.

    • ZooKeeper is used f...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an easy interview

Top Infosys Senior Associate Interview Questions and Answers

Q1. What is React Router? Give one example by writing code.
View answer (1)

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)

Get interview-ready with Top Infosys Interview Questions

Software Developer Interview Questions & Answers

user image Deepali Chavhan

posted on 11 Sep 2024

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

(2 Questions)

  • Q1. CRUD app in angular with in 15min
  • Ans. 

    Create a CRUD app in Angular within 15 minutes

    • Set up Angular project with CLI

    • Create components for Create, Read, Update, and Delete operations

    • Implement services to interact with backend API

    • Use Angular Material for UI components

    • Test the app functionality

  • Answered by AI
  • Q2. Golang question

Skills evaluated in this interview

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)

Jobs at Infosys

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Self introduction
Round 2 - Coding Test 

Basic python coding data type related coding

Python Software Developer Interview Questions asked at other Companies

Q1. What is the purpose of using the super keyword, Inheritance in Python
View answer (1)

Software Engineer interview

user image Jatin Bindra

posted on 5 Dec 2021

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java basics questions
  • Q2. Sql basics questions

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good

Customer Support Executive Interview Questions asked at other Companies

Q1. Understanding customer problems,whT i know about BPO nd how they work,how i will handle a difficult nd angry customer,i can satisfied my client.
View answer (20)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Selenium waits Duplicate element in array
  • Q2. Frames

Quality Assurance and Automation Tester Interview Questions asked at other Companies

Q1. selenium architecture, how do you push code to git, waits in selenium, lambda expression, oops concepts, POJO, keyboard and mouse over events in selenium, etc
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.4k Interviews
Accenture Interview Questions
3.9
 • 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.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k 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.2k 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.2k Reviews and Ratings
Java Developer - Hyderabad

Hyderabad / Secunderabad,

Pune

+1

3-8 Yrs

Not Disclosed

I&C Engineer - Electrical

Noida,

Chennai

+1

4-9 Yrs

₹ 3.6-5 LPA

Packaging/Labeling Engineer

Pune

2-5 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.9k 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.3k 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 - ₹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