Upload Button Icon Add office photos

Filter interviews by

Quinbay Intern Interview Questions and Answers

Updated 23 Apr 2024

Quinbay Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 23 Apr 2024

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

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Java & OOPs basics in depth
  • Q2. Database question
Round 2 - One-on-one 

(2 Questions)

  • Q1. Linked list and puzzle
  • Q2. About the projects you have worked on

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. I was asked a question on counting continuous max occurences of 1 in a string

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep knowledge of programming is a must

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

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

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Just plain leetcode medium questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Consisted of aptitude and coding output questions

Round 2 - Coding Test 

Coding test was given with three questions .we have to write in on word in 45 mins

Round 3 - HR 

(1 Question)

  • Q1. They asked puzzles and other usual questions

I applied via Company Website and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - Coding Test 

Java

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects using different programming languages such as Java, C++, and Python.

    • I am skilled in software development methodologies like Agile and have experience with version control systems like Git.

    • I have strong problem-solving and analytical skills, which h...

  • Answered by AI
  • Q2. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving, attention to detail, teamwork

    • Weaknesses: time management, public speaking

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for your interview

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

Round 1 - Aptitude Test 

Total question where 20 and it include all the topics of aptitude and some coding solution

Round 2 - Coding Test 

It contain 5 question of question where doc file is send and we have to write a answer to that document file

Interview Preparation Tips

Interview preparation tips for other job seekers - practice basic DSA and some string and list manipulation questions

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Some Questions are based on programming and some are aptitude questions.

Round 2 - Coding Test 

This is coding round here 5 coding questions is there?

Round 3 - One-on-one 

(3 Questions)

  • Q1. Find first non repeated character in string?
  • Ans. 

    Find the first non-repeated character in a string.

    • Iterate through the string and count the frequency of each character.

    • Return the first character with a count of 1.

  • Answered by AI
  • Q2. We have given a integer array then find the second maximum difference ?
  • Ans. 

    Find the second maximum difference in an integer array.

    • Sort the array in descending order

    • Calculate the difference between adjacent elements

    • Return the second maximum difference

  • Answered by AI
  • Q3. We have given a integer find the sum of all digits.
  • Ans. 

    Given an integer, find the sum of all its digits.

    • Convert the integer to a string and iterate over each character to get the sum.

    • Use modulo operator to get the last digit and add it to the sum, then divide by 10 to remove the last digit.

    • Recursively call the function with the integer divided by 10 and add the remainder to the sum.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You can brush up your basic concepts of Array and string these things is helping a lot in that interviews.

Skills evaluated in this interview

Quinbay Interview FAQs

How many rounds are there in Quinbay Intern interview?
Quinbay interview process usually has 2 rounds. The most common rounds in the Quinbay interview process are One-on-one Round.
How to prepare for Quinbay Intern 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 Analytical, Android, Computer Languages, Core Java and Hibernate.
What are the top questions asked in Quinbay Intern interview?

Some of the top questions asked at the Quinbay Intern interview -

  1. Java & OOPs basics in de...read more
  2. Linked list and puz...read more
  3. Database quest...read more

Tell us how to improve this page.

Quinbay Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Quinbay Intern Salary
based on 5 salaries
₹3.6 L/yr - ₹10.3 L/yr
84% more than the average Intern Salary in India
View more details

Quinbay Intern Reviews and Ratings

based on 3 reviews

2.8/5

Rating in categories

4.1

Skill development

3.1

Work-life balance

2.7

Salary

1.3

Job security

2.8

Company culture

1.3

Promotions

2.5

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
112 salaries
unlock blur

₹8 L/yr - ₹21 L/yr

Senior Software Engineer
94 salaries
unlock blur

₹11.4 L/yr - ₹28 L/yr

Software Developer
43 salaries
unlock blur

₹7.5 L/yr - ₹16.5 L/yr

Site Engineer
26 salaries
unlock blur

₹17 L/yr - ₹22.5 L/yr

Sdet
19 salaries
unlock blur

₹7 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Quinbay with

Medcode

4.5
Compare

Maxgen Technologies

4.5
Compare

Cyfuture

3.0
Compare

Value Point Systems

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