Premium Employer

i

This company page is being actively managed by Coforge Team. If you also belong to the team, you can get access from here

Coforge Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Coforge Senior QA Engineer Interview Questions and Answers

Updated 10 Apr 2025

11 Interview questions

A Senior QA Engineer was asked 3mo ago
Q. Write a program to print duplicate characters in a string.
Ans. 

This program identifies and prints duplicate characters from a given string input.

  • Use a hash map or dictionary to count occurrences of each character.

  • Iterate through the string and update the count for each character.

  • After counting, filter characters that have a count greater than 1.

  • Example: For input 'programming', output should be 'g', 'r'.

  • Consider case sensitivity: 'A' and 'a' should be treated as different cha...

A Senior QA Engineer was asked 5mo ago
Q. How can you obtain the page source of a website using Selenium?
Ans. 

You can obtain the page source of a website using Selenium by calling the getPageSource() method.

  • Instantiate a WebDriver object for the desired browser

  • Navigate to the website using get() method

  • Use getPageSource() method to retrieve the page source

Senior QA Engineer Interview Questions Asked at Other Companies

asked in MakeMyTrip
Q1. Combination Sum Problem Statement Given an array of distinct posi ... read more
asked in MakeMyTrip
Q2. Next Greater Number Problem Statement Given a string S which repr ... read more
Q3. How do you retrieve data from a file using Selenium?
Q4. If you have two threads, and one thread burns completely in 30 mi ... read more
Q5. How can you execute a test case multiple times?
A Senior QA Engineer was asked 5mo ago
Q. What are some examples of XPaths used while testing?
Ans. 

XPaths are used in testing to locate elements on a web page for automation testing purposes.

  • XPaths are used to locate elements based on their attributes, such as ID, class, name, etc.

  • Absolute XPaths start with the root node and specify the complete path to the element.

  • Relative XPaths start from the current node and specify the path to the element relative to the current node.

  • XPaths can also be used to locate eleme...

A Senior QA Engineer was asked
Q. Write a Java program to reverse a string alphabetically.
Ans. 

This task involves reversing the characters of a string after sorting them in alphabetical order.

  • Convert the string to a character array.

  • Sort the character array alphabetically.

  • Reverse the sorted character array.

  • Convert the reversed array back to a string.

  • Example: 'banana' -> ['a', 'a', 'b', 'n', 'n'] -> ['n', 'n', 'b', 'a', 'a'] -> 'nnbaa'

A Senior QA Engineer was asked
Q. Write a Java program to remove duplicate values from a collection.
Ans. 

Java method to remove duplicate values from an array of strings efficiently.

  • Use a HashSet to store unique values: HashSet<String> uniqueStrings = new HashSet<>(Arrays.asList(array));

  • Convert back to array: String[] result = uniqueStrings.toArray(new String[0]);

  • Example: Input: {'apple', 'banana', 'apple'}, Output: {'apple', 'banana'}

  • Stream API can also be used: Arrays.stream(array).distinct().toArray(Str...

A Senior QA Engineer was asked
Q. Write a program to handle JavaScript script callback functions.
Ans. 

Use a program to handle JavaScript callback functions.

  • Create a function that takes a callback function as a parameter

  • Invoke the callback function within the main function

  • Pass arguments to the callback function if needed

Coforge HR Interview Questions

68 questions and answers

Q. Are you available for challenging work?
Q. Are you okay with working on a TAT basis or overtime?
Q. Describe your past experiences and how they are useful in this job
A Senior QA Engineer was asked
Q. How would you create a counter using JavaScript?
Ans. 

Create a counter using JavaScript

  • Declare a variable to store the count

  • Create a function to increment the count

  • Display the count on the webpage

Are these interview questions helpful?
A Senior QA Engineer was asked
Q. What is a workload model?
Ans. 

Workload model is a representation of the workload that a system or application is expected to handle.

  • It includes information on the types of tasks, frequency of tasks, and the resources required to complete the tasks.

  • Workload models help in performance testing by simulating real-world scenarios and predicting system behavior under different workloads.

  • Examples of workload models include steady state, ramp-up, and ...

A Senior QA Engineer was asked
Q. Exception handling in JS and cypress
Ans. 

Exception handling in JS and Cypress involves using try-catch blocks to handle errors and prevent test failures.

  • Use try-catch blocks to handle exceptions in JavaScript and Cypress tests

  • Catch specific errors to handle them appropriately

  • Use assertions to check for expected errors in Cypress tests

A Senior QA Engineer was asked
Q. 1. infotest INFOTEST info How to do correlation that INFOTEST should print. 2. Knowledge in AWS 3. Difference between parametrization and correlation 4. Challanges in correlation in your previous projects 5...
Ans. 

Correlation in performance testing, AWS knowledge, parametrization vs correlation, challenges in correlation, motivating new customers for performance testing, using perfmon, rampup/rampdown/steady state, concurrent vs simultaneous users, matrices in HTML report

  • Correlation in performance testing ensures that the response time of different components in a system are correlated to each other

  • AWS knowledge is importan...

Coforge Senior QA Engineer Interview Experiences

5 interviews found

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

(2 Questions)

  • Q1. Java question to remove duplicates values
  • Q2. Java question to reverse string in alphabetically order
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 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 

(3 Questions)

  • Q1. To create a counter using JS
  • Ans. 

    Create a counter using JavaScript

    • Declare a variable to store the count

    • Create a function to increment the count

    • Display the count on the webpage

  • Answered by AI
  • Q2. Exception handling in JS and cypress
  • Ans. 

    Exception handling in JS and Cypress involves using try-catch blocks to handle errors and prevent test failures.

    • Use try-catch blocks to handle exceptions in JavaScript and Cypress tests

    • Catch specific errors to handle them appropriately

    • Use assertions to check for expected errors in Cypress tests

  • Answered by AI
  • Q3. Program to handle js script callback function
  • Ans. 

    Use a program to handle JavaScript callback functions.

    • Create a function that takes a callback function as a parameter

    • Invoke the callback function within the main function

    • Pass arguments to the callback function if needed

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is workload model
  • Q2. 1. infotest INFOTEST info How to do correlation that INFOTEST should print. 2. Knowledge in AWS 3. Difference between parametrization and correlation 4. Challanges in correlation in your previous projects...
  • Ans. 

    Correlation in performance testing, AWS knowledge, parametrization vs correlation, challenges in correlation, motivating new customers for performance testing, using perfmon, rampup/rampdown/steady state, concurrent vs simultaneous users, matrices in HTML report

    • Correlation in performance testing ensures that the response time of different components in a system are correlated to each other

    • AWS knowledge is important for...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not selected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What are some examples of XPaths used while testing?
Round 2 - Technical 

(1 Question)

  • Q1. How can you obtain the page source of a website using selenium?
  • Ans. 

    You can obtain the page source of a website using Selenium by calling the getPageSource() method.

    • Instantiate a WebDriver object for the desired browser

    • Navigate to the website using get() method

    • Use getPageSource() method to retrieve the page source

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiations
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Introduction of framework
  • Ans. 

    A testing framework is a structured environment that facilitates automated testing, ensuring consistency and efficiency.

    • Frameworks can be categorized into types: Unit Testing (e.g., JUnit), Integration Testing (e.g., TestNG), and End-to-End Testing (e.g., Selenium).

    • They provide reusable components, reducing redundancy in test scripts and improving maintainability.

    • Frameworks often include reporting tools to track test r...

  • Answered by AI
  • Q2. Write a program to print duplicate characters

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Coforge?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Testing management, Team management, SAP testing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Testing basic questions
Round 2 - HR 

(1 Question)

  • Q1. General HR questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Aptitude Test 

60 mins aptitude and reasoning questions with Java syntax’s related questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Coding questions with MCQs and 2 programming

Round 2 - Technical 

(1 Question)

  • Q1. Questions on Java, OOPS, Maven, TestNG, Manual Testing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Java program string and array related
  • Q2. Core java questions
Round 2 - Technical 

(2 Questions)

  • Q1. Java program for array
  • Q2. Java program for string

Skills evaluated in this interview

Coforge Interview FAQs

How many rounds are there in Coforge Senior QA Engineer interview?
Coforge interview process usually has 2 rounds. The most common rounds in the Coforge interview process are Technical, Resume Shortlist and HR.
How to prepare for Coforge Senior QA Engineer 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 Coforge. The most common topics and skills that interviewers at Coforge expect are Automation Testing, QA, BDD, Business Analysis and Cucumber.
What are the top questions asked in Coforge Senior QA Engineer interview?

Some of the top questions asked at the Coforge Senior QA Engineer interview -

  1. 1. infotest INFOTEST info How to do correlation that INFOTEST should print. 2....read more
  2. How can you obtain the page source of a website using seleni...read more
  3. What are some examples of XPaths used while testi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 5 interview experiences

Difficulty level

Moderate 67%
Hard 33%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more
Join Coforge Transform at the Intersect. Thrive with Coforge
Coforge Senior QA Engineer Salary
based on 56 salaries
₹9.5 L/yr - ₹16 L/yr
At par with the average Senior QA Engineer Salary in India
View more details

Coforge Senior QA Engineer Reviews and Ratings

based on 9 reviews

2.2/5

Rating in categories

2.4

Skill development

2.5

Work-life balance

2.3

Salary

1.7

Job security

1.9

Company culture

1.8

Promotions

2.1

Work satisfaction

Explore 9 Reviews and Ratings
Senior Software Engineer
4.9k salaries
unlock blur

₹6.6 L/yr - ₹22.8 L/yr

Technical Analyst
2.8k salaries
unlock blur

₹17.9 L/yr - ₹32 L/yr

Software Engineer
2.3k salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹6.1 L/yr - ₹17.7 L/yr

Technology Specialist
1.4k salaries
unlock blur

₹21.8 L/yr - ₹39 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare

Infosys

3.5
Compare
write
Share an Interview