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 Senior Software Engineer Testing Interview Questions and Answers

Updated 13 Jan 2025

Coforge Senior Software Engineer Testing Interview Experiences

1 interview found

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

Multiple coding questions on ArrayList, Hashmaps were asked

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Since you're from Mechanical Engineering, how do you plan to make up for the knowledge that you didn't learn in college?
  • Q2. During the times when you are in office but you don't have any pending tasks, how do you spend your time?
  • Q3. How often do you take up new responsibilities, tasks, and technologies?
  • Ans. 

    I am always eager to take up new responsibilities, tasks, and technologies.

    • I am a quick learner and enjoy challenging myself with new tasks and technologies.

    • I regularly attend workshops and training sessions to keep myself updated with the latest technologies.

    • I have taken up new responsibilities in my previous roles, such as leading a team or taking ownership of a project.

    • I am open to feedback and constructive criticis

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One thing I learned being a fresher (and a low scoring fresher too) is that one won't always get what they set out to get. I saw people who had done all sorts of programming language courses and didn't want to do operations or AMS. While it's important to aim for the job you dream of, it's also important to be pragmatic. So if you are struggling to get the job you want, start somewhere so you can sustain yourself.

I applied via AmbitionBox and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Generally the aptitude maintain quick calculations and time reduce.

Round 2 - Coding Test 

Coding built over technical skills

Round 3 - HR 

(1 Question)

  • Q1. General knowledge and some technical questions been asked

Interview Preparation Tips

Topics to prepare for DXC Technology Software Engineer interview:
  • Python
Interview preparation tips for other job seekers - Create an position which you want to reach and move towards an other opportunity will be waiting for our future.

I applied via Naukri.com and was interviewed before Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Core java very basic
  • Q2. Collections, string, object class, == and equals, threads

Interview Preparation Tips

Interview preparation tips for other job seekers - HR Round is important. Negotiate to get variable salary monthly. Otherwise variable salary is gone. Join only if you want to go abroad and put your every efforts for that otherwise useless for the co in sometime. After join, Resource Managers sucks try hard to prepare for the client interview that matters the most.

I appeared for an interview before Apr 2020.

Interview Questionnaire 

3 Questions

  • Q1. Data structure algorithms and basics of programming languages
  • Q2. Opps concept
  • Q3. Ask to write 2 codes they provide problem statements for that

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked about oops's concept, SQL queries, and Questions regarding my projects. They asked if have worked on any CLOUD technologies like AWS, GCP, or Azure.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall experience was very nice, in this, they have tested on basis or aptitude and General coding round. If got selected then there will be a technical and HR round.

I applied via Company Website and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack using queue
  • Ans. 

    Implement a stack using a queue data structure.

    • Create two queues, q1 and q2.

    • Push operation: Enqueue the element to q1.

    • Pop operation: Dequeue all elements from q1 to q2 except the last one. Dequeue the last element from q1 and return it. Swap q1 and q2.

    • Top operation: Dequeue all elements from q1 to q2 except the last one. Dequeue the last element from q1 and return it. Enqueue the element to q2. Swap q1 and q2.

    • isEmpty o

  • Answered by AI
  • Q2. Pallindome string
  • Q3. Address of a particular element in an array. And adress of 0th index is given
  • Ans. 

    Finding address of an element in an array given the address of 0th index.

    • Calculate the offset of the desired element from the 0th index address and add it to the 0th index address.

    • Address of ith element = address of 0th element + i * size of each element.

    • Example: Address of 3rd element in an array of strings = address of 0th element + 3 * size of string.

  • Answered by AI
  • Q4. Insertion sort

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong at basic and ready to face conceptual question

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Sep 2021. 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 

(2 Questions)

  • Q1. I was asked 2 coding question to write on paper few puzzles question related to math
  • Q2. 1. Write code to count number of hand shakes between N number of people. 2. Create a class and write function using the OOPs concept
  • Ans. 

    Code to count handshakes between N people and a class using OOPs concept.

    • For counting handshakes, use a loop to iterate through each person and add up the handshakes with the remaining people.

    • For the class, define attributes and methods based on the requirements and use encapsulation, inheritance, and polymorphism concepts.

    • Example: class Person with attributes name and age, and method greet(). Class Employee inherits f...

  • Answered by AI
Round 3 - Case Study 

WAs asked about my previous experience and projects related query
Given one scenario and asked my approached to solve it

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics of programming fundamentals and projects you worked upon

Interview Questionnaire 

2 Questions

  • Q1. What is precompilaion unit?
  • Ans. 

    Precompilation unit is a compiled code that can be reused by multiple source files.

    • Precompilation unit is created by the compiler from the source code.

    • It contains the compiled code of header files and other dependencies.

    • It can be reused by multiple source files, reducing compilation time.

    • It is also known as precompiled header or PCH.

    • Example: stdafx.h in Visual Studio is a precompiled header file.

  • Answered by AI
  • Q2. About ur future,ur short term goal,why this company

Interview Preparation Tips

Skills: Resume, CGPA
College Name: IIT Kharagpur

Interview Questionnaire 

3 Questions

  • Q1. First 50 Prime Number
  • Ans. 

    The first 50 prime numbers are...

    • Start with 2, the first prime number

    • Check each odd number greater than 2

    • Use trial division to check if a number is prime

    • Stop when you have found 50 prime numbers

  • Answered by AI
  • Q2. How to sort the file in the range (hint provided)
  • Ans. 

    Sorting a file within a range

    • Use a sorting algorithm like quicksort or mergesort

    • Read the file and store the data in an array or list

    • Sort the array or list within the given range

    • Write the sorted data back to the file

  • Answered by AI
  • Q3. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js, Express, and MongoDB

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlist cut was 0.0 cgpa
Tips: Need to mention Programming skill in any one of three language C , C++ ,Java

Round: Test
Experience: Test was Average, Many question were from INDIABIX.COM , computer network, operating system ,data structure, c , c++ language
Tips: Understand Data Structure and Algorithm deeply, At least read about computer networks, operating system , DBMS 3-4 times for basic good understand, refer various site
Duration: 180 minutes

Round: Test
Experience: Two question were given , we have to write the code on A4 size sheet
Tips: Deep understanding of STACK AND QUEUE
Duration: 60 minutes

Round: Technical Interview
Experience: Previous Test (2 Questions on A4 size sheet) were discussed and is there any improvement that can be done, discussed each and every step.
Tips: Comments is important using programming
present with demo example (various cases)

Round: HR Interview
Experience: Be calm and show your interest in the company,
ask question about company, what are activity other than techincal technical stuff
Tips: Smile , if possible talk in Hindi - English,Try to Make the interview in discussion

General Tips: Practice Daily , Understand Each and Every Step in Detail , Try to code in A4 size paper then computer
Skill Tips: Read Good Books , Practice Daily

Skills: Algorithms And Data Structures
College Name: IIT Kharagpur

Skills evaluated in this interview

Coforge Interview FAQs

How many rounds are there in Coforge Senior Software Engineer Testing interview?
Coforge interview process usually has 1 rounds. The most common rounds in the Coforge interview process are Coding Test.

Tell us how to improve this page.

Coforge Senior Software Engineer Testing Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Coforge Senior Software Engineer Testing Salary
based on 59 salaries
₹4.6 L/yr - ₹17.1 L/yr
11% less than the average Senior Software Engineer Testing Salary in India
View more details

Coforge Senior Software Engineer Testing Reviews and Ratings

based on 13 reviews

4.6/5

Rating in categories

4.2

Skill development

4.1

Work-life balance

3.6

Salary

4.3

Job security

4.1

Company culture

3.5

Promotions

4.1

Work satisfaction

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

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

Senior Test Engineer
1.8k salaries
unlock blur

₹4.6 L/yr - ₹19 L/yr

Technology Specialist
1.2k salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare

Infosys

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