Upload Button Icon Add office photos

Filter interviews by

Koo App Software Engineer II Interview Questions and Answers

Updated 16 Jan 2023

Koo App Software Engineer II Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Dec 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 - HR 

(1 Question)

  • Q1. What are you looking for at Koo?
  • Ans. Fast moving, growth opportunity, big impact and responsibilities
  • Answered Anonymously
Round 3 - Technical 

(3 Questions)

  • Q1. 1. Max Sum subarray 2. Detect loop in linked list
  • Ans. 

    Two technical questions related to algorithms and data structures.

    • Max Sum subarray: Find the contiguous subarray with the largest sum. Kadane's algorithm is a popular solution.

    • Detect loop in linked list: Use two pointers, one moving at twice the speed of the other. If they meet, there is a loop.

  • Answered by AI
  • Q2. 1. How is session authenticated in facebook and other websites when we login? 2. How to store large databases? Hashing related.
  • Ans. 

    Session authentication in websites and storing large databases using hashing.

    • Session authentication in websites involves creating a unique session ID for each user upon login and storing it in a cookie or server-side session storage.

    • The session ID is then used to authenticate subsequent requests from the user.

    • Large databases can be stored using hashing techniques such as sharding, consistent hashing, and hash tables.

    • Sh...

  • Answered by AI
  • Q3. 1. Binary Search tree and B+ trees difference
  • Ans. 

    Binary search trees are used for searching and sorting data, while B+ trees are used for indexing and storing data.

    • Binary search trees have a maximum of two children per node, while B+ trees have multiple children per node.

    • Binary search trees are best for small datasets, while B+ trees are better for large datasets.

    • Binary search trees have a faster search time, while B+ trees have a faster insertion and deletion time.

    • B...

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. 1. Dynamic Programming on Longest Pallindromic Subsequence 2. Greedy Algorithm for Job Scheduling 3. DFS related graph problem
  • Q2. 1. Current company role 2. Most Challenging aspect

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Data Structures and Algorithms properly. Know your resume in and out.

Skills evaluated in this interview

Interview questions from similar companies

Intern Interview Questions & Answers

Droom user image Anonymous

posted on 5 May 2017

I appeared for an interview in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. What do you know about our company and product
  • Ans. 

    I'm sorry, I don't have access to the internet to research the company and product.

    • Answered by AI
    • Q2. Tell us all you know about Droom
    • Ans. 

      Droom is an online marketplace for buying and selling new and used vehicles.

      • Founded in 2014 by Sandeep Aggarwal

      • Offers a wide range of vehicles including cars, bikes, and scooters

      • Provides services such as vehicle history reports and inspections

      • Has over 6,500 certified dealers and over 50,000 listings

      • Operates in India and Singapore

    • Answered by AI

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: The company needed people with a few extracurriculars to fit into their company culture. Thus they selected students with a good technical background and extracurricular skillset
    Tips: Mention the extracurriculars well and your learnings from each of them.

    Round: Technical Interview
    Experience: Seems like an HR question, but is a product based question for the company. So now, when they call it technical, it is because their product is the website that they manage. So I started talking about Droom's vision and mission.
    I spoke of a few features that would help customers. I also spoke of the tools that were useful for customer experience. I also mentioned the speed and quality of the site.
    Tips: Here be careful as you need to answer in the technical sense. Starting with when the company was started/ the location will not help build a point. Start off with the product. Also feel free to point out negatives, but make sure you sandwich it between smoother and better things.

    I applied via Naukri.com and was interviewed before Feb 2021. There were 2 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 - Group Discussion 

    Market related question

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Keep knowledge in advance. Marketing and sales related.

    I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Basic Questions only, Oops concept, Android basic questions, work manager related, MVVM pattern, why kotlin?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It is a well-motivated place in terms of work, they are really making the best use of technology that they can. The interview can be clarified by someone who has clear basics of technology, how things are really moving in technology. They are only examining the basics of technology.

    I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. Ds algo questions
    • Q2. Js basics
    • Q3. React.js

    Interview Preparation Tips

    Interview preparation tips for other job seekers - It was good you should mainly focus on Ds algo part and basics of Js or other technology for which you are applying .

    Interview Questionnaire 

    1 Question

    • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...

    I applied via Indeed and was interviewed before Jun 2019. There were 4 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. Business problems and case studies
    • Q2. Guesstimates
    • Q3. Experience to date
    • Ans. 

      I have 3 years of experience working as a Data Analyst in the finance industry.

      • Analyzed financial data to identify trends and make recommendations

      • Created reports and dashboards using tools like Tableau and Excel

      • Collaborated with cross-functional teams to improve data quality and accuracy

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Use your basic aptitude.

    I appeared for an interview in Apr 2021.

    Round 1 - Coding Test 

    (2 Questions)

    Round duration - 90 minutes
    Round difficulty - Hard

    Timing was late evening. Platform was good.

    • Q1. 

      Largest Cycle in Maze Problem Statement

      Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

    • Ans. 

      Identify the length of the largest cycle in a maze represented by cells and an array of integers.

      • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

      • Handle self-cycles and cells with no exit by checking arr[i] = i and arr[i] = -1 respectively.

      • Output the length of the largest cycle found or -1 if no cycles exist.

    • Answered by AI
    • Q2. 

      Ninja and the Maze Problem Statement

      Ninja is stuck in a maze represented as a 2D grid. He can move in four directions (Up, Down, Left, Right) until he hits a wall ('1'). Once stopped, he can choose a new...

    • Ans. 

      Determine if Ninja can reach the destination in a maze by moving in four directions until hitting a wall.

      • Create a function to traverse the maze using depth-first search or breadth-first search.

      • Keep track of visited cells to avoid infinite loops.

      • Return 'True' if destination is reachable, 'False' otherwise.

    • Answered by AI

    Interview Preparation Tips

    Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

    Tip 1 : Do some projects.
    Tip 2 : Practice dynamic programming.
     

    Application resume tips for other job seekers

    Tip 1 : Keep it short.
    Tip 2 : Do not put false things on resume.

    Final outcome of the interviewRejected

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    Not Selected
    Round 1 - Aptitude Test 

    Basic aptitude,sql ques

    Round 2 - Assignment 

    Visualizing the dataset information

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

    I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. Asked around js concepts and simple machine coding to display image on click of button
    Round 2 - Technical 

    (1 Question)

    • Q1. Web fundamentals
    Round 3 - Technical 

    (1 Question)

    • Q1. JS concepts CSR vs SSR System design of Blinkit
    • Ans. 

      CSR vs SSR in system design of Blinkit

      • CSR (Client-Side Rendering) involves rendering web pages on the client side using JavaScript, while SSR (Server-Side Rendering) involves rendering web pages on the server side before sending them to the client.

      • CSR can provide faster initial page load times and better interactivity, but may result in slower subsequent page loads and SEO challenges.

      • SSR can improve SEO and initial pag...

    • Answered by AI

    Koo App Interview FAQs

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

    Some of the top questions asked at the Koo App Software Engineer II interview -

    1. 1. How is session authenticated in facebook and other websites when we login? 2...read more
    2. 1. Max Sum subarray 2. Detect loop in linked l...read more
    3. 1. Binary Search tree and B+ trees differe...read more

    Tell us how to improve this page.

    Koo App Software Engineer II Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    MagicPin Interview Questions
    2.6
     • 50 Interviews
    Park Plus Interview Questions
    2.9
     • 36 Interviews
    Tokopedia Interview Questions
    4.1
     • 25 Interviews
    Meritto Interview Questions
    3.6
     • 22 Interviews
    JUSPAY Interview Questions
    3.1
     • 21 Interviews
    Furlenco Interview Questions
    3.4
     • 21 Interviews
    Melorra Interview Questions
    3.2
     • 20 Interviews
    Fraazo Interview Questions
    3.4
     • 20 Interviews
    Droom Interview Questions
    3.7
     • 19 Interviews
    View all
    Operations Manager
    8 salaries
    unlock blur

    ₹11 L/yr - ₹20 L/yr

    SDE (Software Development Engineer)
    7 salaries
    unlock blur

    ₹10 L/yr - ₹18 L/yr

    growth manager
    5 salaries
    unlock blur

    ₹12 L/yr - ₹16 L/yr

    Software Developer
    5 salaries
    unlock blur

    ₹10 L/yr - ₹23 L/yr

    Product Manager
    5 salaries
    unlock blur

    ₹20 L/yr - ₹30.5 L/yr

    Explore more salaries
    Compare Koo App with

    MagicPin

    2.6
    Compare

    Awign Enterprises

    4.0
    Compare

    Nestaway

    3.9
    Compare

    Flyhomes

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