Upload Button Icon Add office photos
Engaged 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

Compare button icon Compare button icon Compare
3.4

based on 4.5k Reviews

Filter interviews by

Coforge SSE-QA Interview Questions and Answers

Updated 17 Jan 2023

Coforge SSE-QA Interview Experiences

1 interview found

SSE-QA Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2023

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

I applied via Referral and was interviewed before Jan 2022. There were 3 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. Types of testing used in an application
  • Ans. 

    Types of testing include unit, integration, system, acceptance, regression, performance, and security testing.

    • Unit testing: testing individual units or components of the application

    • Integration testing: testing how different units or components work together

    • System testing: testing the entire system as a whole

    • Acceptance testing: testing to ensure the application meets the requirements of the stakeholders

    • Regression testin...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. End to end test activities
  • Ans. 

    End to end test activities involve testing the entire system from start to finish.

    • End to end testing verifies the functionality of the entire system

    • It involves testing all the components of the system together

    • It ensures that the system works as expected in a real-world scenario

    • Examples include testing a shopping cart on an e-commerce website or testing a banking application from login to transaction

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Average interview, nothing much complicated
Need to focus on general test activities

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Parallel test in cucumber
  • Ans. 

    Parallel test execution in Cucumber allows running multiple test scenarios simultaneously for faster results.

    • Use tools like TestNG or JUnit to run Cucumber tests in parallel

    • Configure the test runner to specify the number of threads to use for parallel execution

    • Ensure that the tests are independent and do not interfere with each other

    • Consider using a parallel plugin like Cucumber-JVM-Parallel to manage parallel executio

  • Answered by AI
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be handled by clearing cache, cookies, and browsing data regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use incognito mode for private browsing to prevent history from being saved

    • Disable browser history tracking if needed for privacy reasons

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Implicit Wait and Explicit Wait
  • Q2. How to handle browser history
  • Ans. 

    Browser history can be managed by clearing cache, cookies, and browsing history regularly.

    • Regularly clear cache, cookies, and browsing history to improve browser performance

    • Use private browsing mode to prevent saving browsing history

    • Disable browser history tracking in browser settings

    • Use browser extensions or plugins to manage and delete browsing history

    • Consider using a VPN for additional privacy and security

  • Answered by AI

Skills evaluated in this interview

QA Analyst Interview Questions & Answers

LTIMindtree user image soumya parllerlamudi

posted on 22 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
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 

(3 Questions)

  • Q1. Difference between bind and bound
  • Ans. 

    Bind is the present tense form of the verb, while bound is the past tense and past participle form.

    • Bind is used when referring to the act of tying or fastening something together.

    • Bound is used when referring to the state of being tied or fastened.

    • Example: She binds the books together. The books are bound tightly.

  • Answered by AI
  • Q2. How many transactions you have worked on
  • Ans. 

    I have worked on over 500 transactions in my career as a QA Analyst.

    • I have experience working on various types of transactions including financial, e-commerce, and healthcare.

    • I have tested transactions involving payment processing, order fulfillment, and data transfer.

    • I have collaborated with developers and business analysts to ensure the accuracy and functionality of transactions.

    • I have used tools like JIRA and Seleni...

  • Answered by AI
  • Q3. What are different types of endorsement transaction
  • Ans. 

    Different types of endorsement transactions include blank endorsement, special endorsement, restrictive endorsement, and qualified endorsement.

    • Blank endorsement: Simply signing the back of a check or other negotiable instrument without specifying a payee.

    • Special endorsement: Directing the payment to a specific person or entity by writing 'Pay to the order of [name]' above the signature.

    • Restrictive endorsement: Limiting...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare very well on the things which you have mentioned in the resume.

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

ITC Infotech user image Mamta Balakrishna

posted on 13 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java program to split alpha-numeric values without using the split method
  • Ans. 

    Split alpha-numeric values in Java without using split method

    • Iterate through each character in the input string

    • Check if the character is a digit or a letter using Character.isDigit() and Character.isLetter() methods

    • Create separate strings for digits and letters and store them in an array

  • Answered by AI
  • Q2. SQL query to add a new column to a table and the column value should have a default value and never be null
  • Ans. 

    Use ALTER TABLE statement to add a new column with a default value and set it to NOT NULL

    • Use ALTER TABLE table_name ADD column_name data_type DEFAULT default_value NOT NULL;

    • Example: ALTER TABLE employees ADD hire_date DATE DEFAULT '2022-01-01' NOT NULL;

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium vs cypress
  • Ans. 

    Selenium is a widely used open-source tool for web automation testing, while Cypress is a newer tool known for its fast and reliable testing capabilities.

    • Selenium is more established and has a larger community support

    • Cypress is known for its fast test execution times

    • Cypress has built-in support for modern web technologies like React and Angular

    • Selenium supports multiple programming languages like Java, Python, and C#

    • Cy...

  • Answered by AI
  • Q2. How do you install cypress
  • Ans. 

    Cypress can be installed using npm package manager.

    • Install Node.js if not already installed

    • Open terminal and run 'npm install cypress'

    • Once installation is complete, run 'npx cypress open' to open Cypress Test Runner

  • Answered by AI
  • Q3. Reverse a string in Javascript
  • Ans. 

    Reverse a string in Javascript

    • Use the split() method to convert the string into an array of characters

    • Use the reverse() method to reverse the order of the characters

    • Use the join() method to convert the array back into a string

  • Answered by AI

Skills evaluated in this interview

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

They told to write java program in string and collections

Round 2 - One-on-one 

(2 Questions)

  • Q1. Different between test cases and test scenario
  • Ans. 

    Test cases are specific conditions or inputs to test a particular functionality, while test scenarios are a sequence of test cases to test a broader functionality.

    • Test cases are detailed steps to test a specific functionality, while test scenarios are a collection of test cases to test a broader functionality.

    • Test cases are more granular and focus on individual functionalities, while test scenarios are more high-level ...

  • Answered by AI
  • Q2. Write a program to read from excel
  • Ans. 

    A program to read data from an Excel file using a programming language.

    • Use a library or module that supports reading Excel files, such as pandas in Python or Apache POI in Java.

    • Open the Excel file and select the specific sheet or range of cells to read data from.

    • Iterate through the rows and columns to extract the data and store it in an array of strings.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why you want to switch company
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Desire for new challenges and learning opportunities

    • Seeking a more innovative work environment

    • Looking for career growth and advancement

    • Interested in working with new technologies or methodologies

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Oct 2024.

Round 1 - Aptitude Test 

Complex aptitude Test

Round 2 - Technical 

(2 Questions)

  • Q1. Test estimation techniques
  • Ans. 

    Test estimation techniques involve various methods to predict the time and resources needed for testing activities.

    • Use historical data from previous projects to estimate testing effort

    • Break down the project into smaller tasks and estimate each task individually

    • Use expert judgment from experienced QA engineers to provide input on estimation

    • Consider complexity, risks, and dependencies when estimating testing effort

  • Answered by AI
  • Q2. Equals to vs ==

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain your framework
  • Ans. 

    My framework is a data-driven automation framework using Selenium and TestNG.

    • Utilizes Selenium for web automation

    • Uses TestNG for test case management and execution

    • Data-driven approach for test data separation

    • Supports parallel execution for faster testing

    • Includes reporting tools like ExtentReports for detailed test results

  • Answered by AI
  • Q2. Explain oops concept
  • Ans. 

    OOPs concept is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPs stands for Object-Oriented Programming

    • Key concepts include classes, objects, inheritance, polymorphism, and encapsulation

    • Classes are blueprints for objects, defining their properties and behaviors

    • Objects are instances of classes, representing real-world entities

    • Inh...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Testing concepts and coding
  • Q2. Automation concepts
Round 2 - HR 

(2 Questions)

  • Q1. Generic HR question
  • Q2. Exp related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed 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
  • Ans. 

    Java program to create and manipulate an array of strings

    • Declare and initialize an array of strings: String[] arrayName = new String[] {"string1", "string2", "string3"};

    • Access elements in the array using index: String element = arrayName[index];

    • Modify elements in the array: arrayName[index] = "newString";

    • Iterate through the array using a loop: for(String element : arrayName) { // do something with element }

  • Answered by AI
  • Q2. Java program for string
  • Ans. 

    Java program to manipulate an array of strings

    • Use a for loop to iterate through the array of strings

    • Use string methods like substring, indexOf, or replace to manipulate the strings

    • Use StringBuilder for efficient string manipulation

  • Answered by AI

Skills evaluated in this interview

Coforge Interview FAQs

How many rounds are there in Coforge SSE-QA interview?
Coforge interview process usually has 3 rounds. The most common rounds in the Coforge interview process are Technical and Resume Shortlist.
What are the top questions asked in Coforge SSE-QA interview?

Some of the top questions asked at the Coforge SSE-QA interview -

  1. Types of testing used in an applicat...read more
  2. End to end test activit...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Coforge interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
DXC Technology Interview Questions
3.7
 • 797 Interviews
Mphasis Interview Questions
3.4
 • 783 Interviews
Nagarro Interview Questions
4.0
 • 756 Interviews
View all
Senior Software Engineer
4.8k salaries
unlock blur

₹6.3 L/yr - ₹25.2 L/yr

Technical Analyst
2.5k salaries
unlock blur

₹9.3 L/yr - ₹38.4 L/yr

Software Engineer
2k salaries
unlock blur

₹2.2 L/yr - ₹9.5 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹4.6 L/yr - ₹19.5 L/yr

Technology Specialist
1.2k salaries
unlock blur

₹11.7 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.8
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview