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 Test Analyst Interview Questions, Process, and Tips

Updated 15 Feb 2025

Top Infosys Test Analyst Interview Questions and Answers

  • Q1. Explain framework and practical uses of oops concepts in framework . explain priority and severity. defect lifecycle
  • Q2. Was there any mistake occurred and there was blame game between devops and testing team?
  • Q3. write a program where Input is 'demo' and and get output as 'deemmmoooo'
View all 51 questions

Infosys Test Analyst Interview Experiences

87 interviews found

Test Analyst Interview Questions & Answers

user image Namrata Mahakhud

posted on 15 Nov 2024

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Java coding (basic)
  • Q2. Core Java (Fundamentals to Intermediate)
  • Q3. API testing (Rest Assured and Postman)
  • Q4. Selenium Basics
Round 2 - Behavioral 

(4 Questions)

  • Q1. Explain the project you were working on.
  • Q2. What are the obstacles faced and how you solved?
  • Q3. How teams collaborate?
  • Q4. Was there any mistake occurred and there was blame game between devops and testing team?
  • Ans. 

    Yes, there was a mistake that led to blame game between devops and testing team.

    • Miscommunication between devops and testing team regarding deployment instructions

    • Lack of clarity on testing requirements leading to missed bugs

    • Pressure to meet deadlines causing rushed testing and deployment

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Notice period and is it negotiable

Interview Preparation Tips

Interview preparation tips for other job seekers - The process was smooth

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 3 Jun 2024

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is SDLC and different phases
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process used by software development teams to design, develop, and test high-quality software.

    • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables that contribute to the overall success of the project.

    • For example, in the planning phase, project scop...

  • Answered by AI
  • Q2. Selenium framework and different keywords.
  • Ans. 

    Selenium framework is a test automation tool that uses different keywords to interact with web elements.

    • Selenium framework allows testers to write automated tests using various keywords like 'click', 'sendKeys', 'getText', etc.

    • These keywords are used to perform actions on web elements such as buttons, input fields, and links.

    • By using these keywords, testers can create robust and maintainable test scripts for web applic...

  • Answered by AI
  • Q3. What is oops? its characteristics. Collection classes.
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain data and methods to manipulate that data.

    • Characteristics of OOPs include encapsulation, inheritance, polymorphism, and abstraction.

    • Collection classes in OOPs are used to store and manipulate groups of objects, such as lists, sets, and maps.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. CI/CD Integration
  • Q2. What is SDLC? different phases of it.
  • Ans. 

    SDLC stands for Software Development Life Cycle. It is a process used by software development teams to design, develop, and test high-quality software.

    • Phases of SDLC include planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables to ensure the successful completion of the software project.

    • For example, in the planning phase, project scope and objecti...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Must prepare Selenium, JAVA, OOPS, different testing tools, Testing methodology.

Skills evaluated in this interview

Test Analyst Interview Questions Asked at Other Companies

asked in Infosys
Q1. Explain framework and practical uses of oops concepts in framewor ... read more
asked in NSE.IT
Q2. What is bug life cycle?
asked in Fujitsu
Q3. Why should Selenium be selected as a testing tool for web applica ... read more
asked in Fujitsu
Q4. What is the difference between manual testing and automated testi ... read more
asked in Fujitsu
Q5. Can you explain the Software Testing Life Cycle (STLC)?

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 28 May 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is POM ?
  • Ans. 

    POM stands for Page Object Model, a design pattern used in test automation to create reusable and maintainable test scripts.

    • POM separates the test scripts from the page objects, making the code more organized and easier to maintain.

    • Each page in the application has its own corresponding page object class, which contains the locators and methods to interact with that page.

    • By using POM, changes to the UI can be easily man...

  • Answered by AI
  • Q2. Write a Program to count occurrences' of specific character in String
  • Ans. 

    Program to count occurrences of specific character in a String

    • Iterate through each character in the string

    • Check if the character matches the specific character

    • Increment a counter if there is a match

  • Answered by AI
  • Q3. Write a program where Input is 'demo' and and get output as 'deemmmoooo'
  • Ans. 

    Program to repeat characters in a string based on their position

    • Iterate through each character in the input string

    • Repeat each character based on its position in the string

    • Concatenate the repeated characters to form the output string

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

(3 Questions)

  • Q1. Write a program to reversed string
  • Ans. 

    Program to reverse a string using array of characters

    • Create a character array from the input string

    • Use two pointers to swap characters from start and end of the array

    • Repeat until the pointers meet in the middle

  • Answered by AI
  • Q2. Write selenium logic to close all windows and keep one window open
  • Ans. 

    Use Selenium logic to close all windows except one.

    • Get all window handles using driver.getWindowHandles()

    • Iterate through each window handle and close it except for the desired window

    • Switch to the desired window using driver.switchTo().window()

  • Answered by AI
  • Q3. Write a program to get sum of all digits from String ex. "5g556fdf"
  • Ans. 

    Program to get sum of all digits from a string

    • Iterate through each character in the string

    • Check if the character is a digit using Character.isDigit() method

    • If it is a digit, convert it to integer and add it to a running sum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make basics clear about Java and OOPs concepts. Brush up on logics.

Skills evaluated in this interview

Test Analyst Interview Questions & Answers

user image Suma Reddy

posted on 6 Oct 2024

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

(2 Questions)

  • Q1. Explain about framework
  • Ans. 

    A framework is a set of guidelines, libraries, and tools used to develop and structure software applications.

    • Framework provides a structure for developers to build applications

    • It includes pre-written code, libraries, and tools to facilitate development

    • Frameworks can be specific to a programming language or technology

    • Examples include Selenium for automated testing, Angular for web development

  • Answered by AI
  • Q2. Realtime.scenarios

Skills evaluated in this interview

Infosys interview questions for designations

 Senior Test Analyst

 (4)

 Software Test Analyst

 (4)

 Automation Test Analyst

 (1)

 SAP Test Analyst

 (1)

 Test Analyst 1

 (1)

 Test Engineer

 (103)

 Test Lead

 (7)

 Automation Test Engineer

 (35)

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 16 May 2024

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

(2 Questions)

  • Q1. Joins and type of joins
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table.

    • FULL ...

  • Answered by AI
  • Q2. Normalisation and types of it with example
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Types of normalization include 1NF, 2NF, 3NF, BCNF, and 4NF.

    • Example: 1NF ensures each column contains atomic values, 2NF eliminates partial dependencies, 3NF removes transitive dependencies, BCNF eliminates non-trivial functional dependencies, and 4NF deals with multi-valued dependencies.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Process of testing
  • Ans. 

    The process of testing involves planning, designing, executing, and evaluating tests to ensure software quality.

    • Planning: Define test objectives, scope, and strategy.

    • Designing: Create test cases and test data.

    • Executing: Run tests and record results.

    • Evaluating: Analyze results and report defects.

    • Iterating: Repeat process to improve quality.

    • Example: Testing a login feature by entering valid and invalid credentials.

  • Answered by AI
  • Q2. Stlc life cycle
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and previous experience

Get interview-ready with Top Infosys Interview Questions

Test Analyst Interview Questions & Answers

user image Tanya Verma

posted on 23 Jun 2024

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

(2 Questions)

  • Q1. Basic programming questions
  • Q2. Basic software testung question
Round 2 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why would we hier you

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 4 Apr 2024

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

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

Round 1 - Technical 

(6 Questions)

  • Q1. Explain framework
  • Ans. 

    A framework is a set of guidelines, tools, and best practices used to develop and test software applications.

    • Framework provides a structure for organizing code and resources

    • It helps in standardizing the development process

    • Frameworks can be specific to a programming language or technology, such as Selenium for automated testing in Java

  • Answered by AI
  • Q2. OOPS concepts implementation in the framework
  • Ans. 

    OOPS concepts are implemented in the framework to ensure code reusability, modularity, and maintainability.

    • Encapsulation: Data hiding and restricting access to certain data members

    • Inheritance: Reusing code and extending functionality from parent classes

    • Polymorphism: Ability to perform different actions based on the object type

    • Abstraction: Hiding complex implementation details and showing only necessary features

  • Answered by AI
  • Q3. RestAssured basic request code
  • Q4. Selenium syntax for Explicit wait
  • Ans. 

    Selenium syntax for Explicit wait

    • Use WebDriverWait class in Selenium

    • Specify the maximum amount of time to wait

    • Specify the frequency with which to check the condition

  • Answered by AI
  • Q5. Agile ceremonies
  • Q6. Defect lifecycle
Round 2 - HR 

(2 Questions)

  • Q1. Day-to-day tasks
  • Ans. 

    Day-to-day tasks involve analyzing test cases, executing tests, reporting bugs, and collaborating with team members.

    • Analyze test cases to ensure they cover all requirements

    • Execute tests to identify bugs and issues

    • Report bugs in a detailed manner for developers to fix

    • Collaborate with team members to discuss test results and improvements

  • Answered by AI
  • Q2. Salary expectations

Interview Preparation Tips

Topics to prepare for Infosys Test Analyst interview:
  • Selenium
  • API Testing
  • Java
Interview preparation tips for other job seekers - Keep your basics clear

Skills evaluated in this interview

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2024

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

(2 Questions)

  • Q1. Java Oops concepts
  • Q2. Selenium cucumber framework

Test Analyst Interview Questions & Answers

user image kuldeep jain

posted on 11 May 2024

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

(1 Question)

  • Q1. They asked everything on service management
Round 2 - HR 

(1 Question)

  • Q1. Negotiation on salary and compensation
Round 3 - Irrelevant round 

(1 Question)

  • Q1. Irrelevant questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They finalized compensation in HR round only post which they holded my offer letter for 22 days then come back for another round which caught me with surprise as I thought i have already closed the deal with finalizing the compensation.In the next 1.8 years even after receiving accolade from client and good rating from manager.No hike was given neither promised promotion was given. They will ask you everything in interview but will not give you relevant work or appreciation to yoyr work.

Test Analyst Interview Questions & Answers

user image Anonymous

posted on 4 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Program to find duplicate characters in string
  • Ans. 

    Program to find duplicate characters in string

    • Iterate through each character in the string

    • Use a hashmap to store the count of each character

    • Identify characters with count greater than 1 as duplicates

  • Answered by AI
  • Q2. Explain Oops concepts
  • Ans. 

    Oops concepts are the principles of Object-Oriented Programming, including 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 complex implementatio...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Reason for change
  • Ans. 

    Change is necessary to adapt to evolving requirements, technology, or business needs.

    • Change is essential for growth and improvement

    • New requirements or technology may necessitate change

    • Business needs may shift, requiring adjustments to processes or systems

  • Answered by AI
  • Q2. Willing to relocate
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for a challenging role that aligns with my career goals.

    • I have relocated in the past for career advancement and have found it to be a positive experience.

    • I understand the importance of being flexible and adaptable in the IT industry, which includes being open to relocation.

    • I am excited about the prospect of exploring new opportunities in di

  • Answered by AI

Infosys Interview FAQs

How many rounds are there in Infosys Test Analyst interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, HR and One-on-one Round.
How to prepare for Infosys Test Analyst 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 Test Analysis, Automation Testing, Test Planning, Test execution and Test Cases.
What are the top questions asked in Infosys Test Analyst interview?

Some of the top questions asked at the Infosys Test Analyst interview -

  1. Explain framework and practical uses of oops concepts in framework . explain pr...read more
  2. Was there any mistake occurred and there was blame game between devops and test...read more
  3. write a program where Input is 'demo' and and get output as 'deemmmoo...read more
How long is the Infosys Test Analyst interview process?

The duration of Infosys Test Analyst interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infosys Test Analyst Interview Process

based on 68 interviews

3 Interview rounds

  • Technical Round
  • HR Round - 1
  • HR Round - 2
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Test Analyst Salary
based on 15.1k salaries
₹2.1 L/yr - ₹11 L/yr
10% less than the average Test Analyst Salary in India
View more details

Infosys Test Analyst Reviews and Ratings

based on 931 reviews

3.6/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

2.7

Salary

4.2

Job security

3.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 931 Reviews and Ratings
Technology Analyst
55.8k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹2.8 L/yr - ₹9 L/yr

System Engineer
39.5k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.8k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.8k salaries
unlock blur

₹4.5 L/yr - ₹17 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