Upload Button Icon Add office photos
Engaged Employer

i

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

Quest Global Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Quest Global Senior Software Engineer Interview Questions and Answers

Updated 29 Jun 2025

15 Interview questions

A Senior Software Engineer was asked 6mo ago
Q. What is an interface in programming?
Ans. 

An interface in programming defines a contract for classes to implement, specifying methods and properties that must be included.

  • Interfaces in programming are used to define a set of methods and properties that a class must implement.

  • Interfaces provide a way to achieve polymorphism in programming languages.

  • Interfaces are similar to abstract classes but cannot contain any implementation code.

  • Classes can implement m...

A Senior Software Engineer was asked 7mo ago
Q. Explain the diamond problem and how it is addressed in different programming languages.
Ans. 

The diamond problem occurs in multiple inheritance when a class inherits from two classes that share a common ancestor.

  • Involves ambiguity in method resolution when two parent classes have the same method.

  • Example: Class A has method 'foo', Class B and Class C both inherit from A and also define 'foo'.

  • When Class D inherits from both B and C, which 'foo' does D inherit?

  • Languages like C++ use virtual inheritance to re...

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked 11mo ago
Q. Explain the singleton design pattern.
Ans. 

Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

  • Ensures a class has only one instance

  • Provides a global point of access to that instance

  • Commonly used for logging, caching, database connections, etc.

A Senior Software Engineer was asked 11mo ago
Q. Explain the adaptive design pattern.
Ans. 

Adaptive design pattern is a software design pattern that allows objects to change their behavior dynamically.

  • Adaptive design pattern involves creating objects that can change their behavior at runtime.

  • It allows for flexibility and adaptability in software systems.

  • Examples include Strategy pattern, State pattern, and Decorator pattern.

A Senior Software Engineer was asked
Q. What is the difference between ArrayList and HashMap?
Ans. 

ArrayList is a dynamic array to store elements, while HashMap is a key-value pair collection.

  • ArrayList is ordered and allows duplicate elements, while HashMap is unordered and does not allow duplicate keys.

  • ArrayList uses indexes to access elements, while HashMap uses keys to access values.

  • Example: ArrayList<String> list = new ArrayList<>(); HashMap<String, Integer> map = new HashMap<>();

A Senior Software Engineer was asked
Q. If an exception is thrown, will the finally block be executed?
Ans. 

Yes, the final block will get executed even if an exception is thrown.

  • The final block will always get executed, regardless of whether an exception is thrown or not.

  • This is useful for releasing resources like closing files or database connections.

  • Example: try { // code that may throw exception } catch (Exception e) { // handle exception } finally { // final block always gets executed }

A Senior Software Engineer was asked
Q. Write SQL queries.
Ans. 

SQL queries are used to interact with databases, allowing data retrieval, manipulation, and management.

  • SELECT statement: Used to retrieve data from a database. Example: SELECT * FROM employees;

  • JOIN clause: Combines rows from two or more tables based on a related column. Example: SELECT a.name, b.department FROM employees a JOIN departments b ON a.dept_id = b.id;

  • WHERE clause: Filters records based on specified cond...

Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Write a custom exception class.
Ans. 

A custom exception class allows for specific error handling in applications, enhancing clarity and control over error management.

  • Define a class that extends the built-in Exception class.

  • Include a constructor to initialize error messages and other relevant data.

  • Override the __str__ method to provide a user-friendly error message.

  • Example: class CustomError(Exception): pass

  • Usage: raise CustomError('This is a custom e...

A Senior Software Engineer was asked
Q. What is the difference between the finally and finalize keywords in Java?
Ans. 

In Java, 'finally' is a block for cleanup, while 'finalize' is a method for garbage collection.

  • 'finally' is used in try-catch blocks to execute code regardless of exceptions.

  • Example of 'finally': try { // code that may throw exception } catch (Exception e) { // handle exception } finally { // cleanup code }

  • 'finalize' is a method in the Object class that is called by the garbage collector before an obje...

A Senior Software Engineer was asked
Q. Write a DB query to find duplicates in a table, keeping the first duplicate in the result.
Ans. 

DB query to find duplicates in a table, keeping first duplicate in answer.

  • Use GROUP BY clause to group the records by the column(s) that may have duplicates

  • Use HAVING clause to filter out groups with only one record

  • Use MIN or MAX function to select the first record in each group

  • Example: SELECT MIN(id), name, COUNT(*) FROM table GROUP BY name HAVING COUNT(*) > 1

Quest Global Senior Software Engineer Interview Experiences

25 interviews found

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Node js basic coding
  • Q2. DSA 1 question

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Verify the details of the client project. 2. Determine the duration of the client project. 3. Note that project extensions are typically rare. 4. As it is service-based, be prepared for any situation.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Node.js question were asked
  • Q2. Project questions were also being asked
Round 2 - HR 

(2 Questions)

  • Q1. General Behavioural questions
  • Q2. Culture fit questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is an interface in programming?
  • Ans. 

    An interface in programming defines a contract for classes to implement, specifying methods and properties that must be included.

    • Interfaces in programming are used to define a set of methods and properties that a class must implement.

    • Interfaces provide a way to achieve polymorphism in programming languages.

    • Interfaces are similar to abstract classes but cannot contain any implementation code.

    • Classes can implement multip...

  • Answered by AI
  • Q2. What are the roles and responsibilities associated with this position?

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to have good knowledge and experience for applied role
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain the architecture of node.js
  • Ans. 

    Node.js is an open-source, cross-platform JavaScript runtime environment that executes JavaScript code outside of a web browser.

    • Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.

    • It uses the V8 JavaScript engine from Google to execute code.

    • Node.js has a single-threaded event loop that allows handling multiple connections simultaneously.

    • It has a rich library of various JavaScrip...

  • Answered by AI
  • Q2. Questions about the previous projects

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Asked about previous project.
  • Ans. You need to describe your current project
  • Answered Anonymously
  • Q2. Java 8 stream question (sorting,skip) sql query, exception,question from collection framework,different between hashmap and concurrent map
  • Ans. You need to study all these things
  • Answered Anonymously
  • Q3. Asked to write sql queries
  • Ans. 

    SQL queries are used to interact with databases, allowing data retrieval, manipulation, and management.

    • SELECT statement: Used to retrieve data from a database. Example: SELECT * FROM employees;

    • JOIN clause: Combines rows from two or more tables based on a related column. Example: SELECT a.name, b.department FROM employees a JOIN departments b ON a.dept_id = b.id;

    • WHERE clause: Filters records based on specified condition...

  • Answered by AI
  • Q4. Asked to write one custom exception class
  • Ans. 

    A custom exception class allows for specific error handling in applications, enhancing clarity and control over error management.

    • Define a class that extends the built-in Exception class.

    • Include a constructor to initialize error messages and other relevant data.

    • Override the __str__ method to provide a user-friendly error message.

    • Example: class CustomError(Exception): pass

    • Usage: raise CustomError('This is a custom error ...

  • Answered by AI
  • Q5. Asked difference between finally,finalize keyword in java
  • Ans. 

    In Java, 'finally' is a block for cleanup, while 'finalize' is a method for garbage collection.

    • 'finally' is used in try-catch blocks to execute code regardless of exceptions.

    • Example of 'finally': try { // code that may throw exception } catch (Exception e) { // handle exception } finally { // cleanup code }

    • 'finalize' is a method in the Object class that is called by the garbage collector before an object is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - mainly they are asking question from core java, java 8 features and sql
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain singleton design pattern
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Ensures a class has only one instance

    • Provides a global point of access to that instance

    • Commonly used for logging, caching, database connections, etc.

  • Answered by AI
  • Q2. Explain adaptive design pattern
  • Ans. 

    Adaptive design pattern is a software design pattern that allows objects to change their behavior dynamically.

    • Adaptive design pattern involves creating objects that can change their behavior at runtime.

    • It allows for flexibility and adaptability in software systems.

    • Examples include Strategy pattern, State pattern, and Decorator pattern.

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Technical Question related to our stream
Round 2 - HR 

(1 Question)

  • Q1. Salary discussions etc
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Referral and was interviewed in Jan 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 

(5 Questions)

  • Q1. Java8 Features Questions about Stream functions and Lambda Expression
  • Q2. Microservices & Springboot (Sample code and Annotations)
  • Q3. DB Query to find duplicates in a table, keeping first duplicate in answer.
  • Ans. 

    DB query to find duplicates in a table, keeping first duplicate in answer.

    • Use GROUP BY clause to group the records by the column(s) that may have duplicates

    • Use HAVING clause to filter out groups with only one record

    • Use MIN or MAX function to select the first record in each group

    • Example: SELECT MIN(id), name, COUNT(*) FROM table GROUP BY name HAVING COUNT(*) > 1

  • Answered by AI
  • Q4. Springboot Profiles, Actuators and Response mapping.
  • Q5. Code to map Employee Object from List to Hashmap using Stream API functions.
  • Ans. 

    Code to map Employee Object from List to Hashmap using Stream API functions.

    • Create a List of Employee objects

    • Use stream() method to convert List to Stream

    • Use collect() method to convert Stream to HashMap

    • Use Collectors.toMap() method to create HashMap

    • Pass key and value mapping functions to toMap() method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - For few days got no response from HR, even after interview went very good.
- After a week following with HR, He mentioned not selected.
- Waste of time and effort.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. I am in Aviation Testing, so questions were according - what is Do178b
  • Q2. MCDC and how did you debug an error
  • Ans. 

    MCDC is a testing technique to ensure all possible combinations of conditions are tested. Debugging involves identifying and fixing errors in the code.

    • MCDC stands for Modified Condition/Decision Coverage

    • It is a testing technique used to ensure all possible combinations of conditions are tested

    • Debugging involves identifying and fixing errors in the code

    • To debug an error, I first reproduce the error and then use debuggin...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to switch

Interview Preparation Tips

Interview preparation tips for other job seekers - Its not like you have to answer all the questions. Be confident, don't stammer.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Assignment 

C++ program to find unique string

Round 2 - Technical 

(2 Questions)

  • Q1. Virtual function opps concepts
  • Q2. Diamond problem
  • Ans. 

    The diamond problem occurs in multiple inheritance when a class inherits from two classes that share a common ancestor.

    • Involves ambiguity in method resolution when two parent classes have the same method.

    • Example: Class A has method 'foo', Class B and Class C both inherit from A and also define 'foo'.

    • When Class D inherits from both B and C, which 'foo' does D inherit?

    • Languages like C++ use virtual inheritance to resolve...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Quest Global?
Ask anonymously on communities.

Quest Global Interview FAQs

How many rounds are there in Quest Global Senior Software Engineer interview?
Quest Global interview process usually has 2-3 rounds. The most common rounds in the Quest Global interview process are Technical, HR and Resume Shortlist.
How to prepare for Quest Global Senior Software 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 Quest Global. The most common topics and skills that interviewers at Quest Global expect are C++, Software Engineering, Debugging, Python and WPF.
What are the top questions asked in Quest Global Senior Software Engineer interview?

Some of the top questions asked at the Quest Global Senior Software Engineer interview -

  1. Why this package? Is it negotia...read more
  2. if exception is thrown , whether final block will get execut...read more
  3. DB Query to find duplicates in a table, keeping first duplicate in answ...read more
What are the most common questions asked in Quest Global Senior Software Engineer HR round?

The most common HR questions asked in Quest Global Senior Software Engineer interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why are you looking for a chan...read more
How long is the Quest Global Senior Software Engineer interview process?

The duration of Quest Global Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 23 interview experiences

Difficulty level

Easy 31%
Moderate 69%

Duration

Less than 2 weeks 85%
More than 8 weeks 15%
View more
Quest Global Senior Software Engineer Salary
based on 2.5k salaries
₹4.9 L/yr - ₹20 L/yr
26% less than the average Senior Software Engineer Salary in India
View more details

Quest Global Senior Software Engineer Reviews and Ratings

based on 235 reviews

3.7/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.3

Salary

3.4

Job security

3.7

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 235 Reviews and Ratings
Senior Software Engineer
2.5k salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Senior Engineer
2.1k salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Software Engineer
1.8k salaries
unlock blur

₹2.8 L/yr - ₹10 L/yr

Lead Engineer
1.7k salaries
unlock blur

₹7.8 L/yr - ₹25 L/yr

Design Engineer
645 salaries
unlock blur

₹2.2 L/yr - ₹8.8 L/yr

Explore more salaries
Compare Quest Global with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview