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

Filter interviews by

Coforge Test Engineer Interview Questions, Process, and Tips

Updated 6 Dec 2024

Top Coforge Test Engineer Interview Questions and Answers

  • Q1. What is webdriver driver=new chrome driver()
  • Q2. What is authorisation and authentication? What is the use of Auth key. Types of Auth key.
  • Q3. Why we use normalisation in database? Types of joins. Difference between DBMS and RDBMS. What is trigger?
View all 16 questions

Coforge Test Engineer Interview Experiences

11 interviews found

Test Engineer Interview Questions & Answers

user image Kanchan Bisht

posted on 6 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Mixed questions from aptitude, reasoning and english questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions from Manual Testing and SQL
Round 3 - HR 

(1 Question)

  • Q1. Basic interview and salary discussion

Test Engineer Interview Questions & Answers

user image Gajanan Telke

posted on 19 May 2024

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

(5 Questions)

  • Q1. Difference between list and set
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while set is an unordered collection of unique elements.

    • List maintains the order of elements, while set does not guarantee any specific order.

    • List allows duplicate elements, while set does not allow duplicates.

    • List is implemented using ArrayList, LinkedList, etc., while set is implemented using HashSet, TreeSet, etc.

  • Answered by AI
  • Q2. Write java program to reverse the words in given sentence.
  • Ans. 

    Java program to reverse words in a given sentence.

    • Split the sentence into words using split() method

    • Reverse the array of words

    • Join the reversed words back into a sentence

  • Answered by AI
  • Q3. Find duplicate words from given sentence
  • Ans. 

    Identify duplicate words in a given sentence

    • Split the sentence into individual words

    • Create a hashmap to store word frequencies

    • Iterate through the words and check if they already exist in the hashmap

    • If a word is already in the hashmap, it is a duplicate

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

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs focuses on creating objects that interact with each other to solve a problem.

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • For example, a class 'Car' can have objects like 'BMW', 'Toyota', etc. with properties and methods specific to each object.

  • Answered by AI
  • Q5. Method overloading and method overriding.

Skills evaluated in this interview

Test Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. 1. What is the frame work u have worked and explain the framework ... read more
asked in Info Edge
Q2. Consecutive Characters Problem Statement Given a matrix of lowerc ... read more
asked in Info Edge
Q3. Remove Duplicates Problem Statement You are given an array of int ... read more
asked in GlobalStep
Q4. What are the problems we faced in the old generation video game c ... read more
Q5. what is a type of testing? What are the principles?

Test Engineer Interview Questions & Answers

user image Prashant koli

posted on 3 Jul 2024

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

Basic question related to java and selenium

Round 2 - Technical 

(3 Questions)

  • Q1. Core java oops ,strings,collections
  • Q2. Selenium basics
  • Q3. Coding related to string and automation test script for login form

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Aug 2023

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

I applied via Company Website and was interviewed in Feb 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 

(4 Questions)

  • Q1. SQL queries Database theory questions API Testing questions
  • Q2. What is authorisation and authentication? What is the use of Auth key. Types of Auth key.
  • Ans. 

    Authorization is the process of determining if a user has the permission to access a resource, while authentication is the process of verifying the identity of a user.

    • Authorization determines what a user can do, while authentication verifies who the user is.

    • Authentication can be done using passwords, biometrics, tokens, etc.

    • Authorization can be role-based, attribute-based, or rule-based.

    • Auth key is a unique identifier ...

  • Answered by AI
  • Q3. Why we use normalisation in database? Types of joins. Difference between DBMS and RDBMS. What is trigger?
  • Ans. 

    Normalization is used in databases to reduce data redundancy and improve data integrity.

    • Normalization helps in organizing data in a database by eliminating redundant data and ensuring data integrity.

    • It reduces data redundancy by breaking down large tables into smaller ones and linking them using relationships.

    • Types of joins include inner join, outer join, left join, and right join.

    • DBMS stands for Database Management Sy...

  • Answered by AI
  • Q4. Difference between web service and API.
  • Ans. 

    Web service is a type of API that is accessed over the web using HTTP, while API is a set of rules and protocols for building and interacting with software applications.

    • Web service is accessed over the web using HTTP

    • API is a set of rules and protocols for building and interacting with software applications

    • Web service is a type of API

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your SQL is strong for Coforge.

Skills evaluated in this interview

Coforge interview questions for designations

 Senior Test Engineer

 (12)

 Automation Test Engineer

 (6)

 Senior Automation Test Engineer

 (2)

 Test Analyst

 (6)

 Test Lead

 (1)

 Senior Test Analyst

 (3)

 Software Test Specialist

 (2)

 Automation Test Specialist

 (1)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jan 2023. There were 3 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 pojo in api?
  • Ans. 

    POJO stands for Plain Old Java Object. It is a simple Java class that has private fields and public getters and setters.

    • POJO is used to represent data in a structured format

    • It is commonly used in API development to transfer data between client and server

    • POJO classes do not have any business logic or annotations

    • Example: Employee POJO class with private fields like name, age, and public getters and setters

    • POJO classes ar

  • Answered by AI
  • Q2. What is oops concept in automation
  • Ans. 

    OOPs concept in automation refers to the use of object-oriented programming principles in designing and implementing automated tests.

    • Encapsulation: grouping related data and functions into a single unit (class) to hide implementation details

    • Inheritance: creating new classes from existing ones to reuse code and add new functionality

    • Polymorphism: using a single interface to represent multiple types of objects

    • Abstraction:...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. What is given,when ,then in api
  • Ans. 

    Given-When-Then is a testing methodology used in API testing to define the preconditions, actions, and expected outcomes of a test case.

    • Given: Defines the preconditions or initial state of the system

    • When: Defines the actions or events that occur in the system

    • Then: Defines the expected outcomes or results of the actions taken

  • Answered by AI
  • Q2. What is jenkins in cicd
  • Ans. 

    Jenkins is an open-source automation server that helps to automate the software development process.

    • Jenkins is used for continuous integration and continuous delivery/deployment (CI/CD) pipelines.

    • It can be used to build, test, and deploy software automatically.

    • Jenkins supports a wide range of plugins and integrations with other tools.

    • It provides a web-based interface for managing and monitoring the CI/CD pipelines.

    • Jenk...

  • Answered by AI
  • Q3. What is webdriver driver=new chrome driver()
  • Ans. 

    The code initializes a new instance of the ChromeDriver class in Selenium WebDriver.

    • WebDriver is an interface in Selenium that provides methods for browser automation

    • ChromeDriver is a class that implements the WebDriver interface for Chrome browser

    • The 'new' keyword creates a new instance of the ChromeDriver class

    • The assignment 'driver = new ChromeDriver()' initializes the driver variable with the new instance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for both the automation and manual. They are asking simple questions .They told to write a java program for reverse the given string

Skills evaluated in this interview

Get interview-ready with Top Coforge Interview Questions

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Jan 2024

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

I was interviewed before Jan 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Life cycle of product
  • Ans. 

    The product life cycle refers to the stages a product goes through from its introduction to its decline.

    • Introduction stage: The product is launched and introduced to the market.

    • Growth stage: The product gains popularity and sales increase.

    • Maturity stage: Sales stabilize and the product reaches its peak.

    • Decline stage: Sales decline as the product becomes outdated or replaced by newer alternatives.

    • Examples: iPhone life c...

  • Answered by AI
  • Q2. Explain entirely about the life cycle
  • Ans. 

    The software development life cycle (SDLC) is a process used to design, develop, test, and deploy software applications.

    • SDLC consists of several phases: requirements gathering, design, development, testing, deployment, and maintenance.

    • Each phase has specific activities and deliverables.

    • Requirements gathering involves understanding the needs of the stakeholders and documenting them.

    • Design phase includes creating the arc...

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

(1 Question)

  • Q1. Technical questions
Round 3 - HR 

(1 Question)

  • Q1. Discussion about salary

Skills evaluated in this interview

Test Engineer Jobs at Coforge

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

I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Agile, product knowledge,job role and responsibilities
  • Q2. Agile methodology, product knowledge,roles and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and focus on product knowledge and skills
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. How to reverse a string?
  • Ans. 

    To reverse a string, iterate through the characters in the string and build a new string in reverse order.

    • Iterate through the characters of the string from end to start

    • Append each character to a new string to build the reversed string

    • Return the reversed string as the result

  • Answered by AI
  • Q2. Explain all Oops concept.
  • 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

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2023

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

I applied via LinkedIn and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

All important topic like Quadratic Equation, Number Series, some question for english and some question for reasoning

Round 3 - Coding Test 

Basic coding question like java,c, python

Round 4 - Group Discussion 

Girl Education
time- 5 minute

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Anyone crack interview
2.prepare basic of quants

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Jun 2022

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were few basics aptitude questions and english, java, technical DBMS like every company asks in the initial phase of hiring. The test was dine on firstnaukri.

Round 2 - Technical 

(2 Questions)

  • Q1. First question was well.. 1. Tell me about yourself. 2. Basic programming 3. Basics in dbms 4. Java related, exception handling, oops 5. Devops 6. Sdlc related 7. Project related
  • Q2. Hr questions: What do tou expect from company Where do you see yourself in 5years.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study well. You got this. Have a basic knowledge of sql query java output based questions. basic maths. That’s it.

Coforge Interview FAQs

How many rounds are there in Coforge Test Engineer interview?
Coforge interview process usually has 2-3 rounds. The most common rounds in the Coforge interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Coforge Test 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 Java, API Testing, Functional Testing, Manual Testing and Regression Testing.
What are the top questions asked in Coforge Test Engineer interview?

Some of the top questions asked at the Coforge Test Engineer interview -

  1. What is webdriver driver=new chrome drive...read more
  2. What is authorisation and authentication? What is the use of Auth key. Types of...read more
  3. Why we use normalisation in database? Types of joins. Difference between DBMS a...read more
How long is the Coforge Test Engineer interview process?

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

Tell us how to improve this page.

Coforge Test Engineer Interview Process

based on 15 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Technical Round
View more
Coforge Test Engineer Salary
based on 383 salaries
₹2.1 L/yr - ₹8.5 L/yr
8% less than the average Test Engineer Salary in India
View more details

Coforge Test Engineer Reviews and Ratings

based on 58 reviews

3.5/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

2.8

Salary

3.6

Job security

3.5

Company culture

2.5

Promotions

3.2

Work satisfaction

Explore 58 Reviews and Ratings
Senior Software Engineer
4.6k salaries
unlock blur

₹6.2 L/yr - ₹26 L/yr

Technical Analyst
2.6k salaries
unlock blur

₹10.5 L/yr - ₹39.7 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.7 L/yr - ₹19.5 L/yr

Technology Specialist
1.1k salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.8
Compare

Infosys

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview