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

Updated 3 Mar 2025

Top Quest Global Interview Questions and Answers

View all 144 questions

Quest Global Interview Experiences

Popular Designations

299 interviews found

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

Top Quest Global Senior Software Engineer Interview Questions and Answers

Q1. Why this package? Is it negotiable
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
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

Top Quest Global Senior Software Engineer Interview Questions and Answers

Q1. Why this package? Is it negotiable
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Cantilever beam explanation
  • Ans. 

    A cantilever beam is a beam supported at only one end, with the other end free to move or rotate.

    • Cantilever beams are commonly used in construction and engineering for structures like balconies, bridges, and diving boards.

    • The fixed end of the beam is called the 'support' while the free end is called the 'tip'.

    • Cantilever beams experience bending moments and shear forces due to the load applied at the free end.

    • Examples o...

  • Answered by AI
  • Q2. Hypothesis equation
  • Q3. Apply GD and T for given drawing,
Round 2 - Tool test 

(1 Question)

  • Q1. Model the part from given drawing
  • Ans. 

    Modeling a part from a given drawing in an interview for Senior Engineer position.

    • Carefully analyze the dimensions and features of the part in the drawing

    • Use CAD software to create a 3D model based on the drawing

    • Ensure accuracy and precision in the modeling process

    • Consider material properties and manufacturing processes while modeling

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Quest Global Senior Engineer interview:
  • Corporate Social Responsibility
  • adaptability
Interview preparation tips for other job seekers - Good to have CAD knowledge .

Top Quest Global Senior Engineer Interview Questions and Answers

Q1. Tell me about design of power plant
View answer (2)

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)

Lead Engineer- Linux C/C++ Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. About previous project. It was all about projects only.
  • Q2. How to rotate an image.
  • Q3. Design patterns used

Skills evaluated in this interview

Quest Global interview questions for popular designations

 Senior Engineer

 (27)

 Senior Software Engineer

 (23)

 Lead Engineer

 (21)

 Software Engineer

 (19)

 Engineer Trainee

 (18)

 Design Engineer

 (15)

 Engineer

 (9)

 Software Developer

 (8)

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

Top Quest Global Senior Software Engineer Interview Questions and Answers

Q1. Why this package? Is it negotiable
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)

Get interview-ready with Top Quest Global Interview Questions

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

(2 Questions)

  • Q1. Node.js questions were asked
  • Q2. Questions about the projects which i have worked

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)

Jobs at Quest Global

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

(2 Questions)

  • Q1. Difference between linked list and array list
  • Ans. 

    Linked list is a data structure where elements are stored in nodes with pointers to the next node. Array list is a dynamic array that can grow or shrink in size.

    • Linked list allows for efficient insertion and deletion of elements anywhere in the list.

    • Array list provides fast access to elements using index, but slower insertion and deletion compared to linked list.

    • Example: Linked list - 1 -> 2 -> 3 -> 4 -> 5, Array list

  • Answered by AI
  • Q2. Difference between @controller and @ Rest controller
  • Ans. 

    The @Controller annotation is used for traditional MVC controllers, while @RestController is used for RESTful web services.

    • The @Controller annotation is used to define a class as a Spring MVC controller, which can handle HTTP requests and return a view.

    • The @RestController annotation is used to define a class as a controller for RESTful web services, which can handle HTTP requests and return data in JSON or XML format.

    • T...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2024

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

I applied via Walk-in and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Describe your experience
  • Q2. What are the projects you worked?
  • Q3. Explain the process of turbine startup
  • Ans. 

    Turbine startup involves several steps to safely bring the turbine to operating speed.

    • Perform pre-start checks to ensure all systems are ready

    • Open steam inlet valves to allow steam to flow into the turbine

    • Gradually increase steam flow to bring the turbine up to speed

    • Monitor temperature and pressure levels throughout the startup process

    • Verify all systems are functioning properly before reaching full operating speed

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

(2 Questions)

  • Q1. Are you sure you can handle this responsibility
  • Q2. What is your salary expectations
Round 3 - HR 

(2 Questions)

  • Q1. What is your salary expectations
  • Q2. How soon can you join?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was simple and straightforward. They want to know your basics first and then they dwell deeper. About salary do some research before negotiating and you can ask questions to your employer about projects you work on.

Top Quest Global Lead Engineer Interview Questions and Answers

Q1. What sort of bench testing did you perform
View answer (1)

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Daily activitise, work flow in current organization
  • Q2. Kubernetes, GIT, TERRAFORM, AWS, Jenkins questions
Round 2 - HR 

(2 Questions)

  • Q1. Why do want leave current organization?
  • Q2. What do you know about Quest Global?

Senior Leader Engineer Interview Questions asked at other Companies

Q1. If a subordinate does not listen to you what steps can you take.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. About career start
  • Q2. Years of experience and expertise
  • Q3. Family background
  • Q4. Notice period and expectation
Round 2 - Technical 

(4 Questions)

  • Q1. Related to GD&T
  • Q2. Related to plastic design
  • Q3. QMS & Risk Management
  • Q4. Tolerance stack up analysis
Round 3 - Negotiation 

(1 Question)

  • Q1. Salary related ( confidential )

Top Quest Global Senior Engineer Interview Questions and Answers

Q1. Tell me about design of power plant
View answer (2)

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (54)

Quest Global Interview FAQs

How many rounds are there in Quest Global 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 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 Quest, Engineering Services, C++, Python and Linux.
What are the top questions asked in Quest Global interview?

Some of the top questions asked at the Quest Global interview -

  1. If 10 people had a meeting and they shake hands only once with each of the othe...read more
  2. How many no natural frequency get zero for free free modal analysis of hex elem...read more
  3. What are the steps involved in designing a new produc...read more
How long is the Quest Global interview process?

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

Tell us how to improve this page.

Quest Global Interview Process

based on 263 interviews

Interview experience

4
  
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
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
View all

Quest Global Reviews and Ratings

based on 2.3k reviews

3.6/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.0

Salary

3.4

Job security

3.5

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 2.3k Reviews and Ratings
Technical Manager FEA - Gas Services

Bangalore / Bengaluru

10-20 Yrs

Not Disclosed

CAT-3 CBM Engineer

Bangalore / Bengaluru

20-30 Yrs

Not Disclosed

FEA ENGINEER (WIND TURBINE BLADE)

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
2.4k salaries
unlock blur

₹4.8 L/yr - ₹19.4 L/yr

Senior Engineer
1.7k salaries
unlock blur

₹4.9 L/yr - ₹18.5 L/yr

Software Engineer
1.7k salaries
unlock blur

₹2.8 L/yr - ₹10 L/yr

Lead Engineer
1.7k salaries
unlock blur

₹7.6 L/yr - ₹24 L/yr

Engineer
602 salaries
unlock blur

₹2.3 L/yr - ₹8.7 L/yr

Explore more salaries
Compare Quest Global with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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