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

Updated 18 Dec 2024

Top Quest Global Engineer Trainee Interview Questions and Answers

  • Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
  • Q2. Write a program to swap value of two variables without using a third variable.
  • Q3. Write a program to print prime numbers.
View all 12 questions

Quest Global Engineer Trainee Interview Experiences

18 interviews found

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test - Logical Reasoning, Quantitative Aptitute , Verbal Ability...
Time: 1 hour
Mode: Online

Round 2 - Group Discussion 

Online Education during COVID19 and its effects.

Round 3 - Technical 

(5 Questions)

  • Q1. Tell me about yourself.
  • Q2. Tell me about your last project.
  • Q3. 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

  • Answered by AI
  • Q4. Write a program to swap value 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

  • Answered by AI
  • Q5. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there 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.

  • Answered by AI
Round 4 - HR 

(9 Questions)

  • Q1. Tell me about yourself ?
  • Q2. Tell me about your project ?
  • Q3. Do-while loop example.
  • 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);

  • Answered by AI
  • Q4. Asked a tricky puzzle game (Water-Jug Problem).
  • Q5. Hardwork or Smartwork, which is better ?
  • Q6. Few questions regarding the details in resume.
  • Q7. What do you know about Quest Global ?
  • Q8. Are you ready to work in any domain in the company ?
  • Q9. Do you have any questions ?

Interview Preparation Tips

Topics to prepare for Quest Global Engineer Trainee interview:
  • Basic Programming
  • Object Oriented Programming
Interview preparation tips for other job seekers - Whole interview process was in online mode was easy one overall.
Prepare by going through basic programming concepts and stuffs (prime number, factorial, etc.) Program logic was asked during the technical interview. OOPs were not asked in my case but be well aware of its concept as it is asked in most interviews.
Be sure of about what you have written in your resume.
Research about the company before interview.
Keep a cool mind and be confident with what you tell or answer.

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Includes aptitude, reasoning, english

Round 2 - Group Discussion 

About engineering, types, streams, how useful for day-to-day life

Interview Preparation Tips

Interview preparation tips for other job seekers - a topic for gd
Round 1 - Aptitude Test 

Simple

Round 2 - Technical 

(1 Question)

  • Q1. Common interview questions followed by management round

Interview Preparation Tips

Interview preparation tips for other job seekers - Always wait for the right time and keep going whatever happens .We will get our thing one day

I applied via Campus Placement and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Study and be thorough with your field , be confident , prepare for typical HR questions .

Quest Global interview questions for designations

 Graduate Engineer Trainee (Get)

 (1)

 Software Engineer Trainee

 (5)

 Trainee

 (5)

 Graduate Trainee

 (4)

 Software Trainee

 (1)

 Management Trainee

 (1)

 Maintenance Engineer

 (2)

 Mechanical Engineer

 (2)

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

I applied via Referral and was interviewed before Apr 2022. 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 

Basic aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Asked with basic oops questions and some logical questions too
Round 4 - HR 

(1 Question)

  • Q1. Asked basic hr questions

Get interview-ready with Top Quest Global Interview Questions

I applied via Referral and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to internships, iv and technical questions related to the post

Interview Preparation Tips

Interview preparation tips for other job seekers - Must learn about the post first and study accordingly

I applied via Referral and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Explain final year project.
  • Q2. Write a program to find 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

  • Answered by AI
  • Q3. Storage classes in C
  • Ans. 

    Storage classes in C are used to define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables have a lifetime throughout the program and are initialized only once.

    • Extern variables are declared outside of any functi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about the project that has been executed in college. Prepare basic programming questions in the language you know. Be confident during the interview. Sometimes puzzles could be asked.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1.Tell about yourself
  • Q2. 2.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 the ...

  • Answered by AI
  • Q3. 3.Basic tool names in creo or Autocad
  • Ans. 

    Basic tool names in Creo or AutoCAD

    • Creo: Sketch, Extrude, Revolve, Sweep, Loft, AutoCAD: Line, Circle, Rectangle, Arc, Polyline

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking your confidence level. Don't hesitate to answer, if it is right or wrong. Be positive and face the interview boldly. Most of the questions asked from our resume.

Skills evaluated in this interview

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

Tell us how to improve this page.

Quest Global Engineer Trainee Interview Process

based on 6 interviews in last 1 year

1 Interview rounds

  • Aptitude Test Round
View more

People are getting interviews through

based on 11 Quest Global interviews
Campus Placement
Referral
Company Website
55%
27%
9%
9% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Quest Global Engineer Trainee Salary
based on 201 salaries
₹2.4 L/yr - ₹4 L/yr
At par with the average Engineer Trainee Salary in India
View more details

Quest Global Engineer Trainee Reviews and Ratings

based on 36 reviews

2.9/5

Rating in categories

3.1

Skill development

3.1

Work-Life balance

2.6

Salary & Benefits

3.0

Job Security

3.2

Company culture

2.5

Promotions/Appraisal

2.9

Work Satisfaction

Explore 36 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.3 L/yr

Lead Engineer
1.6k salaries
unlock blur

₹7.5 L/yr - ₹26 L/yr

Engineer
607 salaries
unlock blur

₹2.6 L/yr - ₹8.7 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