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
3.6

based on 2.2k Reviews

Filter interviews by

Quest Global Software Developer Interview Questions, Process, and Tips

Updated 29 Nov 2024

Top Quest Global Software Developer Interview Questions and Answers

Quest Global Software Developer Interview Experiences

8 interviews found

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

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

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Define SOLID principles
  • Ans. 

    SOLID principles are a set of five design principles for writing maintainable and scalable code.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Classes should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correct...

  • Answered by AI
  • Q2. How is data binding achieved in WPF. Show with an example
  • Ans. 

    Data binding in WPF allows synchronization of data between UI elements and data sources

    • Data binding in WPF can be achieved using the Binding markup extension

    • Properties of UI elements can be bound to properties of data objects

    • Example: binds the Text property of TextBlock to the Name property of data object

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do a lot of practice coding questions

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image yashodhan sonwane

posted on 4 Oct 2023

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

I applied via Job Portal and was interviewed in Sep 2023. 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 

(1 Question)

  • Q1. Java core and spring
Round 3 - One-on-one 

(1 Question)

  • Q1. General discussion

Quest Global interview questions for designations

 Senior Software Developer

 (2)

 Software Engineer

 (18)

 Software Tester

 (2)

 Engineering Software

 (1)

 Software Trainee

 (1)

 Senior Developer

 (2)

 UI Developer

 (2)

 Java Developer

 (2)

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 - Coding Test 

C++ object oriented programming , VC++ , MFC WINDOWS , win 32 API

Round 3 - Coding Test 

Cpp coading questions basically client round

Round 4 - HR 

(1 Question)

  • Q1. About your salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work culture friendly environment client interviews
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test is about 3 sections, numerical, logical and verbal which is a average test.

Round 2 - Technical 

(1 Question)

  • Q1. 1) introduce yourself 2) about your projects 3) C programming language Prepare well for your resume they will ask questions based on your resume

Software Developer Interview Questions & Answers

user image Pooja Prasad

posted on 23 Feb 2022

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts Basic HTML CSS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, having basic knowledge on yourr stream and knowing frontend HTML CSS would be ur plus point

Interview Questionnaire 

1 Question

  • Q1. C++ oop concepts

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Basic C# coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions related to Angular
  • Q2. Question related to ASP.NET CORE

Quest Global Interview FAQs

How many rounds are there in Quest Global Software Developer interview?
Quest Global interview process usually has 2 rounds. The most common rounds in the Quest Global interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Quest Global Software Developer 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++, GIT, Linux, Software Development and Debugging.
What are the top questions asked in Quest Global Software Developer interview?

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

  1. How is data binding achieved in WPF. Show with an exam...read more
  2. What is react and concept of Virtual dom and real ...read more
  3. Difference between @controller and @ Rest control...read more

Tell us how to improve this page.

Quest Global Software Developer Interview Process

based on 4 interviews in last 1 year

Interview experience

3.3
  
Average

People are getting interviews through

based on 2 Quest Global interviews
Job Portal
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Quest Global Software Developer Salary
based on 210 salaries
₹2.2 L/yr - ₹11 L/yr
19% less than the average Software Developer Salary in India
View more details

Quest Global Software Developer Reviews and Ratings

based on 22 reviews

3.6/5

Rating in categories

3.6

Skill development

3.8

Work-Life balance

3.0

Salary & Benefits

3.9

Job Security

4.2

Company culture

3.5

Promotions/Appraisal

3.4

Work Satisfaction

Explore 22 Reviews and Ratings
Senior Software Engineer
2.4k salaries
unlock blur

₹4.7 L/yr - ₹20 L/yr

Senior Engineer
1.7k salaries
unlock blur

₹4.8 L/yr - ₹18 L/yr

Software Engineer
1.7k salaries
unlock blur

₹2.8 L/yr - ₹9.5 L/yr

Lead Engineer
1.6k salaries
unlock blur

₹6 L/yr - ₹26 L/yr

Design Engineer
603 salaries
unlock blur

₹2.4 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Quest Global with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview