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 Engineer Trainee Interview Questions and Answers

Updated 23 Feb 2025

12 Interview questions

An Engineer Trainee was asked
Q. Write a program to print odd numbers.
Ans. 

Program to print odd numbers

  • Use a loop to iterate through numbers

  • Check if the number is odd using modulus operator

  • Print the odd numbers

An Engineer Trainee was asked
Q. Can you provide an example of a do-while loop?
Ans. 

A do-while loop is a control flow statement that executes a block of code at least once before checking the condition.

  • The do-while loop is similar to the while loop, but the condition is checked at the end of the loop.

  • The loop will always execute at least once, even if the condition is false.

  • Syntax: do { // code block } while (condition);

  • Example: do { x++; } while (x < 10);

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people at a meeting shake hands with each other once, how m ... read more
asked in Siemens
Q2. A drawer contains 10 pairs each of red and blue socks. What is th ... read more
asked in AVASOFT
Q3. What is the logic for determining if a number is an Armstrong num ... read more
asked in Sobha
Q4. Shear force diagram and bending moment diagram for combination of ... read more
asked in Siemens
Q5. If you are given two CSV files, each containing two columns, how ... read more
An Engineer Trainee was asked
Q. Write a program to print prime numbers.
Ans. 

Program to print prime numbers

  • Start with a loop from 2 to n (number to check)

  • For each number, check if it is divisible by any number from 2 to its square root

  • If not divisible, it is a prime number and print it

An Engineer Trainee was asked
Q. Write a program to swap the values of two variables without using a third variable.
Ans. 

Program to swap value of two variables without using a third variable.

  • Use arithmetic operations to swap values

  • Add both variables and store the sum in one variable

  • Subtract the value of one variable from the sum and store it in the other variable

  • Subtract the value of the other variable from the sum and store it in the first variable

An Engineer Trainee was asked
Q. If 10 people at a meeting shake hands with each other once, how many handshakes will there be in total?
Ans. 

The question is about finding the total number of handshakes in a meeting of 10 people.

  • Each person shakes hands with 9 others.

  • Total handshakes = 10 x 9 / 2 = 45.

An Engineer Trainee was asked
Q. Write a program to find the factorial of a number.
Ans. 

Program to find factorial of a number

  • Use a loop to multiply the number with all the numbers less than it

  • Handle the case when the number is 0 or 1 separately

  • Use recursion to find factorial of a number

An Engineer Trainee was asked
Q. Draw a stress-strain diagram.
Ans. 

A stress-strain diagram shows the relationship between stress and strain in a material.

  • The diagram plots stress on the y-axis and strain on the x-axis.

  • The slope of the curve represents the material's stiffness or Young's modulus.

  • The yield point is where the material begins to deform plastically.

  • The ultimate strength is the maximum stress the material can withstand before failure.

  • The area under the curve represents...

Are these interview questions helpful?
An Engineer Trainee was asked
Q. Write a program to check the given number is odd or not. Write a program to find the given digit is present in the given number
Ans. 

Program to check if a number is odd and to find a digit in the number.

  • Use modulo operator to check if a number is odd (number % 2 == 1)

  • Convert the number to a string and check if the digit is present using string methods

  • Handle edge cases like negative numbers and non-integer inputs

An Engineer Trainee was asked 11mo ago
Q. Polymorphism in Java
Ans. 

Polymorphism in Java allows objects of different classes to be treated as objects of a common superclass.

  • Polymorphism is achieved through method overriding and method overloading.

  • Method overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

  • Method overloading allows multiple methods with the same name but different parameters to coexist in the same ...

An Engineer Trainee was asked 11mo ago
Q. Multi threaded in Java
Ans. 

Multithreading in Java allows multiple threads to run concurrently, improving performance and responsiveness.

  • Multithreading is achieved in Java by extending the Thread class or implementing the Runnable interface.

  • Threads share the same memory space, so synchronization is important to prevent data corruption.

  • Java provides synchronized keyword, locks, and atomic variables for thread synchronization.

  • Example: Creating...

Quest Global Engineer Trainee Interview Experiences

18 interviews found

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

A question regarding mechanical concepts and other inquiries related to amplitude.

Round 2 - Technical 

(5 Questions)

  • Q1. Questions related to resume uploaded and other technical like manufacturing and cad software related
  • Q2. Material selection and discussion about company
  • Q3. Difficulty where you are structed during the project
  • Ans. 

    I faced difficulty in managing conflicting priorities and deadlines during a project.

    • Prioritize tasks based on urgency and importance

    • Communicate with team members and stakeholders to manage expectations

    • Break down tasks into smaller, manageable chunks to stay on track

    • Seek help or guidance from mentors or supervisors when needed

  • Answered by AI
  • Q4. Discussion and deep introduction about me and project
  • Q5. Discussion about Certificate which achieved in field

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience to sharing the knowledge and technical reviews
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts and related questions
Round 2 - HR 

(1 Question)

  • Q1. Asked Technical questions along with some hr questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Asked questions from quantitative,logical and english

Round 2 - Technical 

(1 Question)

  • Q1. Project related
Round 3 - HR 

(1 Question)

  • Q1. Asked some hr related questions and technical too
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Multi threaded in Java
  • Ans. 

    Multithreading in Java allows multiple threads to run concurrently, improving performance and responsiveness.

    • Multithreading is achieved in Java by extending the Thread class or implementing the Runnable interface.

    • Threads share the same memory space, so synchronization is important to prevent data corruption.

    • Java provides synchronized keyword, locks, and atomic variables for thread synchronization.

    • Example: Creating a ne...

  • Answered by AI
  • Q2. Finally in Java
  • Q3. Polymorphism in Java
  • Ans. 

    Polymorphism in Java allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism is achieved through method overriding and method overloading.

    • Method overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

    • Method overloading allows multiple methods with the same name but different parameters to coexist in the same class...

  • Answered by AI
  • Q4. Garbage Collection

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

1 hour duration with questions related to digital, aptitude, c programming and mpmc

Round 2 - Aptitude Test 

Same as round 1 with little more difficulty level

Round 3 - Technical 

(2 Questions)

  • Q1. Basics of digital electronics and projects
  • Q2. Basics of digital, projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with your basics

Engineer Trainee Interview Questions & Answers

user image GANGA GANESH

posted on 16 Oct 2023

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

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

General quantitative test

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview
Round 4 - HR 

(1 Question)

  • Q1. Where do you find yourself in next 5 years
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2022. 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 - Aptitude Test 

Very easy test any one can crack. It consists of aptitude, english and some petroleum question which very easy

Round 3 - One-on-one 

(2 Questions)

  • Q1. All question are from CV on other question. They are cooperative.
  • Q2. 1. Artificial lift system 2.Drilling Engeenering 3.from reservoirs All question are basic very very basic

Interview Preparation Tips

Interview preparation tips for other job seekers - No need to prepare for interview. They don't go out of your resume. No HR question. Only technical question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Time and distance, ages, profit and loss

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Program to print odd numbers
  • Ans. 

    Program to print odd numbers

    • Use a loop to iterate through numbers

    • Check if the number is odd using modulus operator

    • Print the odd numbers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepared well for the technical interviews. if you clear that you might be get the job.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Group Discussion 

You just need to be talk about the topic given

Round 2 - Aptitude Test 

Asked 60% of questions from computer science basics

Round 3 - Technical 

(1 Question)

  • Q1. Write a program to check the given number is odd or not. Write a program to find the given digit is present in the given number
  • Ans. 

    Program to check if a number is odd and to find a digit in the number.

    • Use modulo operator to check if a number is odd (number % 2 == 1)

    • Convert the number to a string and check if the digit is present using string methods

    • Handle edge cases like negative numbers and non-integer inputs

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Usual HR questions like where will you see yourself after 10 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Refer basic coding problems and basics of OOPs

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

Logical,reasoning,technical,logical ability, graph models ,

Round 3 - Group Discussion 

General topics in india like education during covid19

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in communication, don't get panic ,create good resume

Top trending discussions

View All
Interview Tips & Stories
6d (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 Engineer Trainee interview?
Quest Global interview process usually has 2-3 rounds. The most common rounds in the Quest Global interview process are Aptitude Test, Technical and HR.
How to prepare for Quest Global Engineer Trainee 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 AutoCAD, GIT, Hydraulics, Agile Development and Application Development.
What are the top questions asked in Quest Global Engineer Trainee interview?

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

  1. If 10 people had a meeting and they shake hands only once with each of the othe...read more
  2. Write a program to swap value of two variables without using a third variab...read more
  3. Write a program to print prime numbe...read more
What are the most common questions asked in Quest Global Engineer Trainee HR round?

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

  1. Tell me about yourse...read more
  2. What are your strengths and weakness...read more
  3. What are your salary expectatio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 14 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Quest Global Engineer Trainee Salary
based on 208 salaries
₹2.3 L/yr - ₹4.5 L/yr
9% more than the average Engineer Trainee Salary in India
View more details

Quest Global Engineer Trainee Reviews and Ratings

based on 37 reviews

3.2/5

Rating in categories

3.5

Skill development

3.3

Work-life balance

3.0

Salary

3.2

Job security

3.3

Company culture

2.9

Promotions

3.2

Work satisfaction

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

₹8.6 L/yr - ₹16 L/yr

Senior Engineer
2.1k salaries
unlock blur

₹8.1 L/yr - ₹14 L/yr

Software Engineer
1.8k salaries
unlock blur

₹3.2 L/yr - ₹8.4 L/yr

Lead Engineer
1.7k salaries
unlock blur

₹12.1 L/yr - ₹22 L/yr

Design Engineer
645 salaries
unlock blur

₹3.7 L/yr - ₹9 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