Upload Button Icon Add office photos

Filter interviews by

Quest Technologies Interview Questions, Process, and Tips

Updated 15 Sep 2021

Top Quest Technologies Interview Questions and Answers

  • Q1. All Prime Numbers Less Than or Equal to N Given a positive integer N , your task is to return all the prime numbers less than or equal to N . Note: 1) A prime number is ...read more
    asked in Software Developer interview
  • Q2. Anagram Pairs Verification Problem Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange th ...read more
    asked in Software Developer interview
  • Q3. Implementing Queue with Two Stacks Your task is to implement a queue using two stacks. You are provided with ‘Q’ queries and need to handle them, where each query falls ...read more
    asked in Software Developer interview

Quest Technologies Interview Experiences

Popular Designations

2 interviews found

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 40 Minutes
Round difficulty - Easy

The round began at about 3:30 pm. The environment was good and the interviewer was very calm and humble. At the beginning he asked me some general questions so as the make me comfortable, like tell me about yourself and what you did today. After that he came upon my project and about 80% of the interviews discussion was around my project.

  • Q1. 

    All Prime Numbers Less Than or Equal to N

    Given a positive integer N, your task is to return all the prime numbers less than or equal to N.

    Note:

    1) A prime number is a number that has only two factors:...
  • Ans. 

    Return all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime using a helper function.

    • A number is prime if it is not divisible by any number from 2 to its square root.

    • Store and return the prime numbers found in an array in increasing order.

  • Answered by AI
  • Q2. 

    Implementing Queue with Two Stacks

    Your task is to implement a queue using two stacks. You are provided with ‘Q’ queries and need to handle them, where each query falls under one of these two operations:

    ...
  • Ans. 

    Implement a queue using two stacks with enqueue and dequeue operations.

    • Use two stacks to simulate a queue - one for enqueue and one for dequeue.

    • For enqueue operation, push elements onto the enqueue stack.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Return true for successful enqueue and the dequeued element for successful dequeue.

  • Answered by AI
  • Q3. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Determine if two strings are anagrams of each other by checking if they have the same characters in different order.

    • Create character frequency maps for both strings and compare them.

    • Sort both strings and compare if they are equal.

    • Use a hash table to store character counts and check if they are the same for both strings.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GhaziabadEligibility criteriaAbout 8 CGPA and a projectQuest Technologies interview preparation:Topics to prepare for the interview - Data Structures and Algorithm, Operating Systems, DBMS, Oops Concepts, Hashing, Computer Networks, Web Development.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Do not rush into things. Learning takes time. Focus should be on the concepts and not just on leaving topics half-prepared. Devote 70% of both time and effort to DSA. I solved a total of around 500 questions on sites like GFG and Leetcode. Do not repeat similar questions just to increase the count of the number of questions
Tip 2 : Competitive Programming is a bonus and not a necessity, rather focus on core DSA based problems before trying CP. Do not pursue CP if you do not like it. Devote that extra time to core CS subjects and aptitude preparation.
Tip 3 : Projects play an important role too, do no ignore them. Try to get your hands dirty with a little bit of every field i.e., frontend, backend, and database.

Application resume tips for other job seekers

Tip 1 : Try to make a single-page resume. Highlight skills, projects, and work experience more than CGPA. Ensure proper spacing and font to maintain professionalism.
Tip 2 : Does not lie on a resume. Everything written on your resume must be known by you in and out.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

I was interviewed in Dec 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was video call round in teams which went for around 90 minutes. Interviewer is flexible and it went well.

  • Q1. 

    Search in a 2D Matrix

    Given a 2D matrix MAT of size M x N, where M and N represent the number of rows and columns respectively. Each row is sorted in non-decreasing order, and the first element of each ro...

  • Ans. 

    Implement a function to search for a given integer in a 2D matrix with specific properties.

    • Iterate through each row of the matrix and perform a binary search on each row to find the target integer.

    • Since the rows are sorted, binary search can be applied efficiently to determine if the target exists in the matrix.

    • Handle edge cases such as empty matrix or invalid input values.

    • Return 'TRUE' if the target is found in the ma

  • Answered by AI
  • Q2. 

    Find First Unique Character in a String

    You are given a string S of length N. Your task is to find the index (considering 1-based indexing) of the first unique character in the string. If there are no uni...

  • Ans. 

    Find the index of the first unique character in a given string, return -1 if no unique characters are found.

    • Iterate through the string to count the frequency of each character

    • Iterate through the string again to find the first character with frequency 1

    • Return the index of the first unique character or -1 if none found

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Interview went arounf 30minutes at 10AM. As it was hr round there wont be any technical stuff and I have only concentrated on my communication skills and had a glance of frequently asked hr questions before interview. It was more of a discussion.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaAbove 6.0 CGPAQuest Technologies interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Core subjects, Quantitative Aptitude, Verbal Reasoning, DBMSTime required to prepare for the interview - 3monthsInterview preparation tips for other job seekers

Tip 1 : It is recommended to know at least one language thoroughly (C, C++, Java, Python)
Tip 2 : Students generally are skip practice part and landing into trouble when asked to write the code in a live interview. Therefore, PRACTICE is strongly recommended from websites like hackerrank, coding ninjas, leetcode etc.
Tip 3 : Deep dive into your Core subjects.
Tip 4 : Practise 5-6 problems daily. 2Easy, 2Medium, 2Hard
Tip 5 : Don't do half learning. Though it takes time be perfect at each concept you learn.

Application resume tips for other job seekers

Tip 1 : Include only the most relevant information and put the most important information first
Tip 2 : Don't Put Everything on There. Your resume should not have every work experience you've ever had listed on it.
Tip 3 : Customize your resume to each position.
Tip 4 : Include atleast one full stack project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Quest Technologies Interview Questions and Answers for Freshers
illustration image

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude , moderate level

Round 2 - Coding Test 

Same c / Java based coding test , what u have practiced in college level

Round 3 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and pass the coding round

Interview Questionnaire 

1 Question

  • Q1. React life cycle

Business Analyst Interview Questions & Answers

Infosys user image SADHU CHANDRA KIRAN

posted on 9 Nov 2020

Interview Questionnaire 

2 Questions

  • Q1. My Details
  • Q2. Salary package

I applied via Recruitment Consultant and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions on inventory procees

Interview Preparation Tips

Interview preparation tips for other job seekers - As I already worked in inventory team in previous company, was able to answer all technical questions.

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions were asked from my technology and regarding my current project like how we implemented the jobs, what is the approach we are following

Interview Preparation Tips

Interview preparation tips for other job seekers - It is wonderful experience. The interviewer is very cool, given enough time to express myself.

I applied via Recruitment Consultant and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oracle advanced level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - One technical round and HR round

I applied via Naukri.com and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Oracle Apps Technical - PlSQL concepts
  • Q2. Basic questions like logic to find even number, swap number ,etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to see all the Technology related questions in Google before going for interview.

Interview Questionnaire 

1 Question

  • Q1. Data transforms, integration, data pages, RAP, Case management

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and give your answer with confidence
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

INTERVIEWS

Medha Servo Drives

No Interviews

INTERVIEWS

EdiQue Solutions

No Interviews

INTERVIEWS

Talview

No Interviews

INTERVIEWS

CIE Automotive

No Interviews

INTERVIEWS

ENTRI SOFTWARE

No Interviews

INTERVIEWS

Playto Labs

No Interviews

SALARIES

Elewayte

INTERVIEWS

IMC Group

No Interviews

INTERVIEWS

Talview

No Interviews

LIST OF COMPANIES

Elewayte

Overview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

Quest Technologies Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Compare Quest Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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