Upload Button Icon Add office photos

Filter interviews by

Quinbay Interview Questions, Process, and Tips

Updated 11 Jan 2025

Top Quinbay Interview Questions and Answers

Quinbay Interview Experiences

Popular Designations

18 interviews found

I applied via Campus Placement and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list

    • Iteratively swap the next and previous pointers of each node

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the head pointer to the last node after reversing

  • Answered by AI
  • Q2. Find the second largest element in an array
  • Ans. 

    Find the second largest element in an array

    • Sort the array in descending order

    • Return the element at index 1

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. OOPs concepts - inheritance, method calling.
  • Q2. Asked about projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn OOPs concepts well. Do a little puzzle solving questions. Practice array and string questions a lot.

Skills evaluated in this interview

Internal Auditor Interview Questions asked at other Companies

Q1. What is Purchase to pay process? (all the step you did in your P2P audit process)
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Creating a sorted list by merging two sorted lists.

Round 2 - Coding Test 

Checking whether a given linked list is circular.

Round 3 - HR 

(1 Question)

  • Q1. Questions about your project?

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
Quinbay Interview Questions and Answers for Freshers
illustration image
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General Aptitude Questions along with code snippets

Round 2 - Coding Test 

Questions of data structures and algorithms and oops concepts etc

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

Data Scientist Interview Questions & Answers

user image Narmadadevi Dhamotharan

posted on 6 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Python, ml and dl questions were covered
Round 2 - Technical 

(1 Question)

  • Q1. Sql, python, depth dl
Round 3 - Technical 

(1 Question)

  • Q1. Stat, probability, calculus, ml, dl, python, nlp and cv

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)

Quinbay interview questions for popular designations

 Software Engineer

 (4)

 Sdet Automation Test Engineer

 (2)

 Data Scientist

 (1)

 Software Developer

 (1)

 Software Engineer Intern

 (1)

 Senior Software Engineer

 (1)

 Internal Auditor

 (1)

 Intern

 (1)

Sdet Interview Questions & Answers

user image Anonymous

posted on 18 May 2024

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Related to java coding

Round 2 - Technical 

(1 Question)

  • Q1. Java basics string programs

Interview Preparation Tips

Interview preparation tips for other job seekers - be strong in Java fundamentals

Sdet Interview Questions asked at other Companies

Q1. Given a M x N 2D array containing random alphabets and a function Dict(string word) which returns whether the 'word' is a valid English word. Find all possible valid words you can get from the 2D array, where the alphabets are adjacent to e... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic Swift UIKIT SwiftUI Multithreading Code Data

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared with dsa and ios concepts.

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Jobs at Quinbay

View all

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Types of testing
  • Ans. 

    Types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Unit testing focuses on testing individual components or modules of the software.

    • Integration testing involves testing how different modules work together.

    • System testing tests the entire system as a whole.

    • Acceptance testing ensures that the software meets the requirements of the end users.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn puzzles

Sdet Engineer Interview Questions asked at other Companies

Q1. Tell me about the projects and knowledge on selenium api and etc?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Puzzles calendar age java questions

Round 2 - Coding Test 

Java array string puzzle

Sdet Automation Test Engineer Interview Questions asked at other Companies

Q1. Wait in selenium and how to find all links present in a page xpath
View answer (2)

Software Developer Intern Interview Questions & Answers

user image Nishant Kumar Shrivastva

posted on 28 Feb 2024

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

I applied via Referral and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. System Design related

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
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 Sep 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are OOPs concepts polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

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

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example of compile-time polymorphism: function overloading in Java.

    • Example of runtime polymorphism: method overriding in Java

  • Answered by AI
  • Q2. Projects based specific questions
  • Q3. DSA based questions on arrays
Round 2 - Technical 

(2 Questions)

  • Q1. Simple puzzle question normally asked in interviews
  • Q2. DSA question and personal project based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for medium Leetcode questions, showcase good development based projects and prepare for answering questions related to it.
Prepare for simple interview puzzles.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 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 Resume tips
Round 2 - Aptitude Test 

Computer basics like OOPs, Programming questions, code snippets, SQL.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. OOPs questions, questions based on technologies mentioned in your resume, Followed with a coding question.
Round 4 - One-on-one 

(1 Question)

  • Q1. Same as above, with some case based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well what you mentioned in your resume, practice some DSA problems from either leetcode in arrays, strings, linked list, stacks and queues in easy to medium level questions.

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)
Contribute & help others!
anonymous
You can choose to be anonymous

Quinbay Interview FAQs

How many rounds are there in Quinbay interview?
Quinbay interview process usually has 2-3 rounds. The most common rounds in the Quinbay interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Quinbay 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 Quinbay. The most common topics and skills that interviewers at Quinbay expect are SQL, Analytics, Product Management, Automation and Logistics.
What are the top questions asked in Quinbay interview?

Some of the top questions asked at the Quinbay interview -

  1. Find the second largest element in an ar...read more
  2. Reverse a linked l...read more
  3. Duplicates in an ar...read more
How long is the Quinbay interview process?

The duration of Quinbay interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Concentrix Catalyst

No Interviews

INTERVIEWS

UniverCell Telecommunications

No Interviews

SALARIES

Ample Technologies

INTERVIEWS

Singapore Airlines

No Interviews

INTERVIEWS

iEnergizer

No Interviews

INTERVIEWS

Samsung Display

20 top interview questions

INTERVIEWS

Samsung Display

No Interviews

SALARIES

Samsung Display

SALARIES

Myntra IT Solutions

INTERVIEWS

Quinbay

No Interviews

Tell us how to improve this page.

Quinbay Interview Process

based on 15 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
View all

Quinbay Reviews and Ratings

based on 86 reviews

3.3/5

Rating in categories

3.9

Skill development

3.1

Work-life balance

3.3

Salary

3.2

Job security

3.0

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 86 Reviews and Ratings
Senior iOS Developer

Hyderabad / Secunderabad

5-10 Yrs

₹ 18-27.5 LPA

Senior UI/UX Designer

Hyderabad / Secunderabad

5-10 Yrs

₹ 16-27.5 LPA

Senior Scrum Master

Hyderabad / Secunderabad

6-10 Yrs

₹ 16-25 LPA

Explore more jobs
Software Engineer
107 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
102 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sdet
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sdet Automation Test Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Quinbay with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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