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 and Answers for Freshers

Updated 4 Jul 2025
Popular Designations

21 Interview questions

A Software Engineer Trainee was asked 6mo ago
Q. Can you write a Python program?
Ans. 

Print 'Hello, World!' in Python

  • Use the print() function to display text on the screen

  • Enclose the text in single or double quotes

View all Software Engineer Trainee interview questions
A Software Developer was asked 9mo ago
Q. What is React, and what are the concepts of the Virtual DOM and the Real DOM?
Ans. 

React is a JavaScript library for building user interfaces. Virtual DOM is a lightweight copy of the Real DOM, used for efficient updates.

  • React is a popular JavaScript library for building user interfaces.

  • Virtual DOM is a lightweight copy of the Real DOM, used for efficient updates.

  • When changes are made in React, the Virtual DOM is updated first, then compared to the Real DOM to minimize actual DOM manipulation.

View all Software Developer interview questions
A Software Trainee was asked
Q. What is selection sort?
Ans. 

Selection sort is a simple sorting algorithm that repeatedly selects the minimum element from an unsorted portion of the array and swaps it with the first unsorted element.

  • Iterate through the array to find the smallest element and swap it with the first element.

  • Repeat the process for the remaining unsorted portion of the array.

  • Time complexity of O(n^2) makes it inefficient for large datasets.

View all Software Trainee interview questions
A Software Trainee was asked
Q. What is an array?
Ans. 

An array is a data structure that stores a collection of elements of the same type in a contiguous memory location.

  • Arrays have a fixed size determined at the time of declaration.

  • Elements in an array are accessed using an index starting from 0.

  • Example: string[] names = {"Alice", "Bob", "Charlie"};

View all Software Trainee interview questions
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...

View all Senior Software Engineer interview questions
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...

View all Senior Software Engineer interview questions
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...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
An Embedded Firmware Engineer was asked
Q. What is embedded C?
Ans. 

Embedded C is a programming language used for developing software for embedded systems.

  • Embedded C is a subset of the C programming language.

  • It is optimized for resource-constrained systems with limited memory and processing power.

  • It allows direct access to hardware and provides low-level control.

  • Embedded C is used in various industries like automotive, aerospace, consumer electronics, etc.

  • Example: Writing code to ...

View all Embedded Firmware Engineer interview questions
A Software Engineer was asked
Q. Write code to find prime numbers.
Ans. 

Code to find prime numbers in a given range

  • Iterate through numbers in the range

  • Check if each number is divisible by any number less than itself

  • If not divisible, it is a prime number

View all Software Engineer interview questions
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

View all Senior Software Engineer interview questions

Quest Global Interview Experiences for Freshers

33 interviews found

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical and quants like percentage, clock hand, coding decoding

Round 2 - Technical 

(3 Questions)

  • Q1. Tell about project
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Used HTML, CSS, and JavaScript for front-end development

    • Utilized PHP and MySQL for back-end development

    • Implemented features such as product tracking, order processing, and reporting

    • Collaborated with team members to ensure project completion within deadline

  • Answered by AI
  • Q2. Pattern printing
  • Q3. Print any python program you know
  • Ans. 

    Print 'Hello, World!' in Python

    • Use the print() function to display text on the screen

    • Enclose the text in single or double quotes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Most interviewers are of pleasant character. They won't stress you much. If you are a fresher, just brush up basic programs like pattern printing, palindrome, prime number, and make base in any language
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked basics of Javascript and ReactJS and data flow

Round 2 - Technical 

(1 Question)

  • Q1. What is react and concept of Virtual dom and real dom
  • Ans. 

    React is a JavaScript library for building user interfaces. Virtual DOM is a lightweight copy of the Real DOM, used for efficient updates.

    • React is a popular JavaScript library for building user interfaces.

    • Virtual DOM is a lightweight copy of the Real DOM, used for efficient updates.

    • When changes are made in React, the Virtual DOM is updated first, then compared to the Real DOM to minimize actual DOM manipulation.

  • Answered by AI

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
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

Basic php questions and laravel framework

Engineer Interview Questions & Answers

user image SINDHU MALVI

posted on 10 Nov 2024

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

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Technical aspects

Software Engineer Interview Questions & Answers

user image ANAKHAKRISHNAN S S

posted on 2 Nov 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - Aptitude Test 

Aptitude test containing reasoning, maths, logics

Round 3 - Technical 

(2 Questions)

  • Q1. Interview question about the basics of java And coding
  • Q2. To write code to find prime number
Round 4 - HR 

(1 Question)

  • Q1. Related to company

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 27 Mar 2024

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

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

Round 1 - Coding Test 

First round is Dax,2 nd is SQL queries,3 is python

Interview Preparation Tips

Topics to prepare for Quest Global Data Analyst interview:
  • Power Bi
  • SQL
  • Python
Interview preparation tips for other job seekers - Hello,I have interview quest global through online,it was good interview
Asking more about power Bi,SQL,and python
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. At least one small on screen coding assignment is must
  • Q2. Basics of java like OOP, hasmap etc.

Trainee Interview Questions & Answers

user image Anonymous

posted on 17 Sep 2024

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

Quantitative aptitude,logical reasoning,verbal ability and basic core questions

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 - Aptitude Test 

It was easy. Basic RD Sharma will work.

Round 3 - Technical 

(1 Question)

  • Q1. Basics of all electrical engineering subjects were touched and their real life applications were also asked.
Round 4 - HR 

(1 Question)

  • Q1. HR interview was very friendly.she made me feel so comfortable. Basic questions on company and behaviour and so on and it was so smooth going.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Quest Global?
Ask anonymously on communities.

Quest Global Interview FAQs

How many rounds are there in Quest Global interview for freshers?
Quest Global interview process for freshers usually has 2-3 rounds. The most common rounds in the Quest Global interview process for freshers are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Quest Global interview for freshers?
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, Mechanical Engineering, MS Office, AutoCAD and Engineering Services.
What are the top questions asked in Quest Global interview for freshers?

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

  1. If 10 people had a meeting and they shake hands only once with each of the othe...read more
  2. What are the steps involved in designing a new produc...read more
  3. Write a program to swap value of two variables without using a third variab...read more
What are the most common questions asked in Quest Global HR round for freshers?

The most common HR questions asked in Quest Global interview are for freshers -

  1. Tell me about yourse...read more
  2. What are your strengths and weakness...read more
  3. Where do you see yourself in 5 yea...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.

Overall Interview Experience Rating

3.8/5

based on 22 interview experiences

Difficulty level

Easy 31%
Moderate 69%

Duration

Less than 2 weeks 75%
2-4 weeks 19%
More than 8 weeks 6%
View more

Interview Questions from Similar Companies

Genpact Interview Questions
3.7
 • 3.4k Interviews
DXC Technology Interview Questions
3.6
 • 842 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 662 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 629 Interviews
EPAM Systems Interview Questions
3.7
 • 570 Interviews
UST Interview Questions
3.8
 • 544 Interviews
View all

Quest Global Reviews and Ratings

based on 2.6k reviews

3.5/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.9

Promotions

3.3

Work satisfaction

Explore 2.6k Reviews and Ratings
Technical Manager CAT-3 CBM Engineer

Bangalore / Bengaluru

15-24 Yrs

Not Disclosed

Technical Writer

Bangalore / Bengaluru

3-6 Yrs

₹ 3-8 LPA

Electrical Design Engineer

Chennai

2-6 Yrs

₹ 3-6 LPA

Explore more jobs
Senior Software Engineer
2.5k salaries
unlock blur

₹8.6 L/yr - ₹16 L/yr

Senior Engineer
2.1k salaries
unlock blur

₹7.9 L/yr - ₹14 L/yr

Software Engineer
1.8k salaries
unlock blur

₹3.2 L/yr - ₹8.3 L/yr

Lead Engineer
1.7k salaries
unlock blur

₹12.3 L/yr - ₹22.2 L/yr

Design Engineer
637 salaries
unlock blur

₹3.7 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Quest Global with

Genpact

3.7
Compare

DXC Technology

3.6
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare
write
Share an Interview