Upload Button Icon Add office photos

Filter interviews by

Quest Software Associate Software Engineer Interview Questions and Answers

Updated 21 Aug 2023

Quest Software Associate Software Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Aug 2022. There were 4 interview rounds.

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 - Technical 

(1 Question)

  • Q1. Interview with the Team manager Based on Talend and Java and snowflake
Round 3 - Technical 

(1 Question)

  • Q1. Manager round with the head of the department. on same technologies.one of the best interview I had with this person.so polite...
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion. And other formalities

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with java coding,java script, Talend and python mainly and the rest technologies comes on the fly of the job.so always stay updated and happy learning.really I miss this company not for the salary but I feel bad for not knowing the coding.else i would serve it for 5-7 years easily.that much tech we can learn from this company.its my bad luck.

Interview questions from similar companies

I applied via Company Website and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Introduce yourself?
  • Q2. Why did you choose to be a software engineer?
  • Q3. How do you find yourself fit for this role?
  • Q4. What do you know about us?

Interview Preparation Tips

Interview preparation tips for other job seekers - Put your sight into the interviewer's eyes and be calm . Just keep on talking It's your interview you are the king don't let yourself eaten up by the questions he/she shoots at you.its fine even if you answer them partially or not at all. But don't be mum.
Also try to make sense on whatever you are speaking.
Nothing's going to stop you from working for your passion.

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

Interview Questionnaire 

1 Question

  • Q1. Questions on Programming Language, SQL Queries, OOPS Concepts, Certifications and Questions on Projects and Certifications done.

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

Interview Questionnaire 

1 Question

  • Q1. I have asked questions on my Engineering Project. And also I asked to write prime number program.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please give the brief explanation on your Final project. Explain What technologies yused in this project. Also you can overview basic programming like prime number, febonacci series etc.. and try to write your own way or own logic.. you should have logically cleared. And overview the oops concepts. And core Java concepts.
All the best 👍

I applied via Company Website and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

7 Questions

  • Q1. Abstraction
  • Q2. Polymorphism
  • Q3. Typecasting
  • Q4. Osi model
  • Q5. What subjects you have learnt in your btech
  • Q6. About project
  • Q7. Hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Be confident and try to answer each and every question

I applied via Campus Placement and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic oops Intermediate Java and DBMS More project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Know well about your project
Study basic concepts of all branch subjects
Have idea about emerging technologies

I applied via NQT and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About skills , hobby , past company experience

Interview Preparation Tips

Interview preparation tips for other job seekers - some question related with some real life situations like if networks goes then how could you communicate with your manager...

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(6 Questions)

Round duration - 360 minutes
Round difficulty - Medium

They give you 6 hr. For 6 question but the good part is that you need to complete atleast 1 question and you are good to go.
Round will be cleared only after attempting one question and rest of the questions are for improving your rank.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the problem statement.

  • Answered by AI
  • Q2. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. 

    The task is to determine the minimum number of platforms needed at a railway station based on arrival and departure times of trains.

    • Sort the arrival and departure times in ascending order.

    • Use two pointers to keep track of overlapping schedules.

    • Increment platform count when a new train arrives before the previous one departs.

  • Answered by AI
  • Q3. 

    Minimise Sum Problem Statement

    You are given a matrix of 'N' rows and 'M' columns and a non-negative integer 'K'. Determine the minimum possible sum of all elements in each submatrix after performing at m...

  • Ans. 

    Given a matrix and a non-negative integer K, find the minimum possible sum of all elements in each submatrix after performing at most K decrements.

    • Iterate through all submatrices and find the minimum possible sum after performing decrements

    • Keep track of the number of decrements performed on each element

    • Use dynamic programming to optimize the solution

    • Ensure not to decrease any number below 0

    • Return the minimum possible s

  • Answered by AI
  • Q4. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.

    • Sort the array of chocolates packets.

    • Use sliding window technique to find the minimum difference between the largest and smallest packets distributed to students.

    • Consider edge cases like when number of students is equal to number of packets.

  • Answered by AI
  • Q5. 

    Prime Time Again Problem Statement

    You are given two integers DAY_HOURS and PARTS. Consider a day with DAY_HOURS hours, which can be divided into PARTS equal parts. Your task is to determine the total ins...

  • Ans. 

    Calculate total instances of equivalent prime groups in a day divided into equal parts.

    • Divide the day into equal parts and find prime numbers in each part.

    • Identify prime groups where prime numbers occur at the same position in different parts.

    • Count the total instances of equivalent prime groups.

    • Ensure each hour in a prime group is in a different part of the day.

  • Answered by AI
  • Q6. 

    Constellation Identification Problem

    Given a matrix named UNIVERSE with 3 rows and 'N' columns, filled with characters {#, *, .}, where:

    • '*' represents stars.
    • '.' represents empty space.
    • '#' repre...
  • Ans. 

    The task is to identify constellations shaped like vowels within a matrix filled with characters {#, *, .}.

    • Iterate through the matrix to find 3x3 constellations shaped like vowels.

    • Check for vowels 'A', 'E', 'I', 'O', 'U' in each 3x3 constellation.

    • Print the vowels found in each constellation for each test case.

  • Answered by AI
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in MumbaiEligibility criteriaAbove 7 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures, Python, Operating System, Algorithms, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : learn basics
Tip 2 : learn any oops language and practice.
Tip 3 : code as much as you can.

Application resume tips for other job seekers

Tip 1 : short and precise. Upto the point.
Tip 2 : keep few things aside from resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Questions related to basic logic gates and assembly language programs

Interview Preparation Tips

Round: Test
Experience: It was simple just all concept based question was their.
Tips: Get your 10th and 12th concept clear of maths and brush up basics formulas.
Duration: 60 minutes
Total Questions: 50

Round: Group Discussion
Experience: It was simple topic, i just spoke whatever i felt right about it.
Tips: just be confident and give minimum 3-4 points and encourage others also to participate.

Round: Technical Interview
Experience: It was fine not that good but here also they check your confidence.
Tips: just be confident and if you don't know the ans just say don't know.

General Tips: keep calm and just enjoy the selection process.
Because company needs you.
Skill Tips: be more clear and expressive, do not be silent .
Skills: communication skill
College Name: Vidyalankar Institute Of Technology

Interview Questionnaire 

1 Question

  • Q1. I'll be mentioning each and everything in my experience itself

Interview Preparation Tips

Round: Test
Experience: The test was a really basic one. Also the cut off was decided depending upon the performance of those who have appeared for the exam. So a basic knowledge of maths, reasoning and verbal helped me get through the exam. Each section  had a specific time limit and cut off. I was able to complete each section within stipulated time and able to answer most of them correctly. My knowledge of aptitude I had through my coaching also helped me.
Tips: Keep your cool and don't get tensed. the questions are not above the tenth class standard even. You'll have a lot of time to think and answer every question. Don't take a risk of copying. You can surely crack the test. You'll know few questions before you enter the examination centre, as people who already appeared for the test have a habit of debating on these questions. I'm sure the paper is same for all the batches. So there isn't any reason to worry at all.
Duration: around 70 mins minute
Total Questions: 50

Round: HR Interview
Experience: My college is one of the biggest ones in Andhra Pradesh. To handle the entire bunch of comparatively better students in the state, they gave us a privilege of clearing only Test and Interview. We had no group discussion.  Coming to interview, mine was purely on HR. The questions were expected and are common HR questions for most of interviews. He asked me to tell me about myself. I told him everything. Then he had gone through my resume and asked me a few questions on my intern-ships, social activities and about the events in which I participated and organised. I explained him everything. Then he asked  me why software and then why Infosys. I answered these questions too. That's all about the questions. My panellist was a cool guy. He was laughing all through. So I could answer exactly on what I've prepared. In fact I was laughing through the entire process. It was like a small chat with a strange and new friend.
Tips: Be prepared on your resume. Every point counts. The panellists can easily guess which isn't your true achievement and can grill you on that. So be careful while preparing your resume and be prepared to answer any question related to your resume. There were people who had experience Technical round also. So having a knowledge of Basic C language will be helpful. Common HR questions are available on the internet. Most of the interview depends on how we attempt these questions. So be prepared on those questions and finally the most important thing is, don't get tensed, keep a smile on your face and let the words flow even if you feel they are wrong.

General Tips: This is a campus placement and the panellists are surely going to select most of you. A 7 day preparation is more than enough. Prepare well. Don't get tensed. Keep a smile on your face. Your confidence level matters the most for them. So don't regret for few mistakes in the interview process.
College Name: ANDHRA UNIVERSITY COLLEGE OF ENGINEERING
Motivation: This was an On campus drive in my college and I had to surely apply for this company as I had no core company visiting my campus. Many of my seniors are working in this campus and have told me that the training in Infosys is an ultimate one.
Funny Moments: I already knew many of the questions in verbal ability before I appeared for the exam from my friends. Also we could discuss and answer few questions in the test. The interviewer was a funny guy. The entire session was really funny and we had a debate on the company's owner for a while which was more funny

Quest Software Interview FAQs

How many rounds are there in Quest Software Associate Software Engineer interview?
Quest Software interview process usually has 4 rounds. The most common rounds in the Quest Software interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Quest Software Associate Software Engineer interview?

Some of the top questions asked at the Quest Software Associate Software Engineer interview -

  1. Manager round with the head of the department. on same technologies.one of the ...read more
  2. Interview with the Team manager Based on Talend and Java and snowfl...read more

Tell us how to improve this page.

Quest Software Associate Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Quest Software Associate Software Engineer Salary
based on 11 salaries
₹6 L/yr - ₹10 L/yr
40% more than the average Associate Software Engineer Salary in India
View more details

Quest Software Associate Software Engineer Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

4.0

Skill development

4.5

Work-life balance

4.5

Salary

3.0

Job security

4.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Development Engineer
41 salaries
unlock blur

₹7.2 L/yr - ₹16 L/yr

Software Developer
21 salaries
unlock blur

₹5.9 L/yr - ₹22 L/yr

Software Engineer
20 salaries
unlock blur

₹5 L/yr - ₹20.2 L/yr

Senior Security Analyst
15 salaries
unlock blur

₹9.9 L/yr - ₹15 L/yr

Software Dev Staff Engineer
12 salaries
unlock blur

₹7.3 L/yr - ₹28 L/yr

Explore more salaries
Compare Quest Software with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

LTIMindtree

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