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

Updated 3 Mar 2025

Top Coforge Interview Questions and Answers

View all 414 questions

Coforge Interview Experiences

Popular Designations

518 interviews found

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Last work experience
  • Q2. About GDS knowledge
Round 2 - One-on-one 

(2 Questions)

  • Q1. Last work experience
  • Q2. Question based on job descriptions
Round 3 - HR 

(2 Questions)

  • Q1. Reason for leaving last organisation
  • Q2. Salary discussion

Interview Preparation Tips

Topics to prepare for Coforge Team Member Operations interview:
  • Interpersonal Skills
  • Technical Skills
Interview preparation tips for other job seekers - Be confident interview based on your last work experience.

Team Member Operations Interview Questions asked at other Companies

Q1. What is WCM, Lean manufacturing?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about class
  • Q2. Tell me about bdd
  • Ans. 

    BDD stands for Behavior Driven Development, a software development approach that focuses on defining behavior through examples.

    • BDD involves collaboration between developers, testers, and business stakeholders to define requirements in terms of behavior.

    • Scenarios are written in a specific format using Given-When-Then to describe the expected behavior of the system.

    • Tools like Cucumber and SpecFlow are commonly used for i...

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

(2 Questions)

  • Q1. Why leave prev org
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and opportunities

    • Looking to expand skill set

    • Seeking career advancement

  • Answered by AI
  • Q2. What skills are you good at
  • Ans. 

    I am skilled in test planning, execution, defect tracking, and reporting.

    • Test planning

    • Test execution

    • Defect tracking

    • Reporting

  • Answered by AI

Skills evaluated in this interview

Specialist Testing Interview Questions asked at other Companies

Q1. Write a program for highest odd number from 1 - 100 in java
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are best practices of UI and Process model.
Round 2 - HR 

(1 Question)

  • Q1. Tell me yourself

Top Coforge Senior Software Engineer Interview Questions and Answers

Q1. Why we use declare expression and example, What is sub report
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Which java version are you using in your project and what are the features in it
  • Ans. 

    We are using Java 11 in our project, which includes features like local variable type inference, HTTP client API, and improved security.

    • Java 11 introduced local variable type inference, allowing the compiler to infer the type of a variable based on the initializer.

    • The HTTP client API in Java 11 provides a more modern and flexible way to send HTTP requests and handle responses.

    • Java 11 also includes improved security fea...

  • Answered by AI
  • Q2. Which spring boot version are you using in your project and what are the features in it
  • Ans. 

    We are using Spring Boot version 2.5.2 in our project, which includes features like improved startup performance, enhanced actuator endpoints, and updated dependencies.

    • Spring Boot 2.5.2 offers improved startup performance compared to previous versions.

    • Enhanced actuator endpoints provide better monitoring and management capabilities.

    • Updated dependencies ensure compatibility with the latest libraries and frameworks.

  • Answered by AI
  • Q3. What is 12 factors approach for micro service
  • Ans. 

    The 12 factors approach is a methodology for building modern, scalable, and maintainable microservices.

    • Codebase: One codebase tracked in revision control, many deploys

    • Dependencies: Explicitly declare and isolate dependencies

    • Config: Store config in the environment

    • Backing services: Treat backing services as attached resources

    • Build, release, run: Strictly separate build and run stages

    • Processes: Execute the app as one or m...

  • Answered by AI
  • Q4. How to find the 3rd highest element in an unsorted array with duplicate using java 8.
  • Ans. 

    Use Java 8 streams to find the 3rd highest element in an unsorted array with duplicates.

    • Convert the array to a stream using Arrays.stream()

    • Use distinct() to remove duplicates

    • Sort the stream in descending order using sorted(Comparator.reverseOrder())

    • Skip the first two elements using skip(2)

    • Find and return the third element using findFirst()

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Coforge Lead Engineer interview:
  • Microservices
  • Java8

Skills evaluated in this interview

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)

Coforge interview questions for popular designations

 Senior Software Engineer

 (53)

 Software Engineer

 (30)

 Technical Analyst

 (27)

 Graduate Engineer Trainee (Get)

 (17)

 Senior Associate

 (14)

 Software Developer

 (14)

 Senior Test Engineer

 (12)

 Test Engineer

 (11)

Technical Analyst Interview Questions & Answers

user image Dhruv Bindoria

posted on 9 Sep 2024

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

(2 Questions)

  • Q1. What are higher order functions in javascript
  • Ans. 

    Higher order functions in JavaScript are functions that can take other functions as arguments or return functions as output.

    • Higher order functions can be used to create more flexible and reusable code.

    • Examples include functions like map, filter, and reduce in JavaScript.

    • They allow for functions to be passed as parameters, making code more concise and readable.

  • Answered by AI
  • Q2. Make a component for utilizing data from an API
  • Ans. 

    Create a component to fetch and display data from an API

    • Use a library like Axios or Fetch to make API requests

    • Parse the JSON data received from the API

    • Display the data in a user-friendly format on the front end

  • Answered by AI

Skills evaluated in this interview

Top Coforge Technical Analyst Interview Questions and Answers

Q1. Write a program to get a employee list whose salary is greater than 50k and grade is above from A, Use Java 8 stream to get the list
View answer (2)

Technical Analyst Interview Questions asked at other Companies

Q1. Write a program to get a employee list whose salary is greater than 50k and grade is above from A, Use Java 8 stream to get the list
View answer (2)

Get interview-ready with Top Coforge Interview Questions

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

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

Round 1 - Coding Test 

Reverse the words in the string

Top Coforge Senior Software Engineer Interview Questions and Answers

Q1. Why we use declare expression and example, What is sub report
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Jobs at Coforge

View all
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Aws cloud core services
  • Q2. Ansible terraform docker jenkins

Interview Preparation Tips

Interview preparation tips for other job seekers - bad

Senior Associate Interview Questions asked at other Companies

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

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

Top Coforge Test Engineer Interview Questions and Answers

Q1. What is webdriver driver=new chrome driver()
View answer (2)

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
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 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduce Yourself
  • Q2. Question related to Java 8
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. How do you manage your delivery and requirement gathering

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared as per the JD and be true to the interviewer.

Data Analytics Lead Interview Questions asked at other Companies

Q1. How would you gather requirements from a client?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. About process knowledge and experience
  • Q2. Salary Package and reason for leaving the company
Round 2 - Virtual Round 

(4 Questions)

  • Q1. Exception documents , supplemental taxes, able to retrieve and able to get the exception documents in subdivision search
  • Q2. Which starter needs to considered
  • Ans. 

    The starter that needs to be considered depends on the specific process being analyzed.

    • Consider the type of process being worked on

    • Evaluate the requirements and goals of the process

    • Analyze the potential impact of different starters on the process

    • Consult with team members or experts for input

  • Answered by AI
  • Q3. On what platform have you been worked?
  • Ans. 

    I have worked on various platforms including SAP, Oracle, and Salesforce.

    • SAP

    • Oracle

    • Salesforce

  • Answered by AI
  • Q4. No. Of states you worked for?
  • Ans. 

    I have worked in 5 different states across the country.

    • California

    • New York

    • Texas

    • Florida

    • Illinois

  • Answered by AI

Senior Process Specialist Interview Questions asked at other Companies

Q1. Which starter needs to considered
View answer (1)

Coforge Interview FAQs

How many rounds are there in Coforge interview?
Coforge interview process usually has 2-3 rounds. The most common rounds in the Coforge interview process are Technical, HR and Resume Shortlist.
How to prepare for Coforge 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 SQL, Java, Javascript, Python and Microservices.
What are the top questions asked in Coforge interview?

Some of the top questions asked at the Coforge interview -

  1. Write a program to get a employee list whose salary is greater than 50k and gra...read more
  2. coding question of finding index of 2 nos. having total equal to target in a li...read more
  3. Q1 why and when we have to use Inheritance . Q2 difference between fail safe ...read more
How long is the Coforge interview process?

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

Tell us how to improve this page.

Coforge Interview Process

based on 504 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 813 Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
KPIT Technologies Interview Questions
3.4
 • 294 Interviews
View all

Coforge Reviews and Ratings

based on 4.8k reviews

3.3/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.1

Salary

3.2

Job security

3.2

Company culture

2.6

Promotions

3.1

Work satisfaction

Explore 4.8k Reviews and Ratings
Performance Test Consultant

Pune

6-9 Yrs

Not Disclosed

Dot Net Fullstack Developer

Gurgaon / Gurugram

5-9 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
4.8k salaries
unlock blur

₹6.1 L/yr - ₹26.1 L/yr

Technical Analyst
2.6k salaries
unlock blur

₹9.5 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.7 L/yr - ₹19.9 L/yr

Technology Specialist
1.1k salaries
unlock blur

₹11.8 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