Upload Button Icon Add office photos

Filter interviews by

Koo App Interview Questions and Answers

Updated 28 Sep 2024

Koo App Interview Experiences

Popular Designations

5 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 5 Jun 2024

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

I have been asked 1 DSA question and 1 SQL question as the company came for campus recruitment.

Round 2 - Technical 

(3 Questions)

  • Q1. Discussion on Java and its fundamentals.
  • Q2. Dynamic Programming question.
  • Q3. Discussion over projects.
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions like why you want to join us and all.

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic Kotlin and Android
  • Q2. MVVM clean Architecutres
Round 2 - Technical 

(3 Questions)

  • Q1. About Jetpack Compose
  • Q2. Kotlin Coroutines
  • Q3. Android App Security

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 27 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell us about your previous work experiences.
Round 2 - Assignment 

To check how customer centric

Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
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 Resume 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

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)

Koo App interview questions for popular designations

 Team Lead

 (2)

 Software Engineer II

 (1)

 Senior Android Developer

 (1)

 Sde1

 (1)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 23 Sep 2022

I applied via LinkedIn and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Guys , this operation manager only ask your experience-based question.
  • Q2. Make sure what you guys mentioned on your CV, please elaborate properly with projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare self introduction more than enough to get this company job

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

Interview questions from similar companies

I applied via Job Portal and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SQL queries, Date related manipulations in Excel and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL and Excel well w.r.t ecommerce domain and what might be the day to day activities or requirements.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Merge Sort based question
Round 3 - Technical 

(1 Question)

  • Q1. DP based question
Round 4 - Behavioral 

(1 Question)

  • Q1. Design API Rate Limiter
  • Ans. 

    Design an API rate limiter to control the number of requests a user can make within a certain time frame.

    • Implement a token bucket algorithm to track and limit the number of requests per user.

    • Set a maximum limit of requests per user per time frame (e.g. 100 requests per hour).

    • Use a sliding window to track the requests and reset the limit after the time frame expires.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just medium leetcode questions

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before 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 - Technical 

(2 Questions)

  • Q1. DSA round and medium level
  • Q2. Merge sort type/variation
Round 3 - Technical 

(1 Question)

  • Q1. Data Structure and Algorithms
Round 4 - Technical 

(1 Question)

  • Q1. System Design LLD round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2022. There were 3 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 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself and your past experience if any
  • Q2. Introduce yourself and tell them briefly your achievements
Round 3 - HR 

(2 Questions)

  • Q1. Growth Opportunities and Last CTC
  • Q2. Wait them to pitch the salary then say your expectations as per market standards.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be active in market standards skillsets. Use technical knowledge such as Excel.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. How many days will u be available for work What days you are going to be busy what strategy will u use
  • Q2. Above mentioned questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest, let them know ur work timings and schedule
Contribute & help others!
anonymous
You can choose to be anonymous

Koo App Interview FAQs

How many rounds are there in Koo App interview?
Koo App interview process usually has 2-3 rounds. The most common rounds in the Koo App interview process are Technical, HR and Resume Shortlist.
How to prepare for Koo App 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 Koo App. The most common topics and skills that interviewers at Koo App expect are Database Testing, Android, Sharepoint, Bags and Case.
What are the top questions asked in Koo App interview?

Some of the top questions asked at the Koo App 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

Recently Viewed

SALARIES

Larsen & Toubro Limited

JOBS

Capillary Technologies

No Jobs

SALARIES

Koo App

INTERVIEWS

Jio

No Interviews

INTERVIEWS

Koo App

No Interviews

SALARIES

Larsen & Toubro Limited

SALARIES

Larsen & Toubro Limited

DESIGNATION

INTERVIEWS

TCS

No Interviews

Tell us how to improve this page.

Koo App Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

ShareChat Interview Questions
3.6
 • 77 Interviews
MagicPin Interview Questions
2.6
 • 50 Interviews
Park Plus Interview Questions
2.9
 • 36 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
Trell Interview Questions
3.2
 • 14 Interviews
Chingari Interview Questions
3.7
 • 6 Interviews
Josh India Interview Questions
4.7
 • 2 Interviews
Roposo Interview Questions
4.3
 • 1 Interview
MOJ Interview Questions
3.4
 • 1 Interview
View all

Koo App Reviews and Ratings

based on 31 reviews

2.9/5

Rating in categories

3.1

Skill development

2.5

Work-life balance

2.6

Salary

2.1

Job security

2.5

Company culture

2.0

Promotions

2.9

Work satisfaction

Explore 31 Reviews and Ratings
Operations Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

SDE (Software Development Engineer)
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

growth manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Koo App with

ShareChat

3.6
Compare

Chingari

3.7
Compare

Roposo

4.3
Compare

MOJ

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