Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Koo App Senior Android Developer Interview Questions and Answers

Updated 28 Sep 2024

Koo App Senior Android Developer Interview Experiences

1 interview found

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

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

- simple basic ios questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked DSA array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well DSA and code
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Explain hoisting in js
  • Ans. 

    Hoisting in JavaScript is the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their assignments.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. Explain closures in js
  • Ans. 

    Closures in JavaScript allow functions to access variables from their outer scope even after the outer function has finished executing.

    • Closures are created when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures can be used to create private variables and functions in JavaScript.

    • Closures can also be used to maintain state in asynchronous operations

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Javascript polyfills

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Mar 2022.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Formal Introduction.
Asked About Projects.
Difference between SQL and NoSQL. Pros and Cons. Where should we use SQL and NoSQL.
Given a problem, I have to make a SQL Database structure and then interviewer told me to convert it into NoSQL.
asked coding questions

  • Q1. 

    Search In Rotated Sorted Array Problem Statement

    Given a sorted array of distinct integers that has been rotated clockwise by an unknown amount, you need to search for a specified integer in the array. Fo...

  • Ans. 

    Implement a search function to find a specified integer in a rotated sorted array.

    • Implement a binary search algorithm to find the target integer in the rotated sorted array.

    • Handle the cases where the target integer may lie in the left or right half of the rotation.

    • Keep track of the mid element and adjust the search range based on the rotation.

    • Return the index of the target integer if found, else return -1.

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem

    Given a binary tree, compute the zigzag level order traversal of the node values in the tree. The zigzag traversal requires traversing levels from left to right, then ...

  • Ans. 

    Zigzag level order traversal of a binary tree is computed by alternating between left to right and right to left traversal at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Maintain a flag to switch between left to right and right to left traversal at each level.

    • Store the node values in a list while traversing and alternate the order based on the flag.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -...

  • Answered by AI

Interview Preparation Tips

Eligibility criterianaPark+ interview preparation:Topics to prepare for the interview - OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 5 MonthInterview preparation tips for other job seekers

Tip 1 : Prepare well for subjects
Tip 2 : Prepare for system design
Tip 3 : Practice coding

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Just write in format that is catchy

Final outcome of the interviewRejected

Skills evaluated in this interview

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

(1 Question)

  • Q1. JS basics, promise, async await, debounce, etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Na

I was interviewed in May 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

This round consisted of DSA questions and they were looking for good coding practices.

  • Q1. 

    Aggressive Cows Problem Statement

    Given an array representing positions of stalls and an integer ‘K’ representing the number of aggressive cows, determine the largest minimum distance between any two cows ...

  • Ans. 

    The problem is to assign aggressive cows to stalls in a way that maximizes the minimum distance between any two cows.

    • Sort the array of stall positions in ascending order.

    • Use binary search to find the largest minimum distance between cows.

    • Check if it is possible to assign cows with this minimum distance by iterating through the sorted array.

    • If it is possible, update the maximum distance and continue binary search for a ...

  • Answered by AI
  • Q2. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    The task is to find the next greater element for each element in the given array.

    • Iterate through the array from right to left.

    • Use a stack to keep track of the elements that are greater than the current element.

    • For each element, pop elements from the stack until a greater element is found or the stack is empty.

    • If a greater element is found, it is the next greater element for the current element.

    • If the stack becomes empt...

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

This round consisted of React related questions, javascript questions.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from J.C. Bose University of Science and Technology, YMCA. I applied for the job as SDE - 1 in BangaloreEligibility criteriaNeed projects in Front endShareChat interview preparation:Topics to prepare for the interview - Data Structures , Javascript , Algorithms , Object Oriented Programming ,Data Base Management System,OSTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Write Production ready code in during the interview
Tip 2 : Study about subjects well.

Application resume tips for other job seekers

Tip 1 : Have good explanations of projects.
Tip 2 : Mention about problem solving skills.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tell about event loop.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations.

    • It allows for non-blocking I/O operations by delegating tasks to the operating system.

    • Event loop continuously checks the event queue for any pending events and executes them in a sequential manner.

    • Example: In ...

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Koo App Interview FAQs

How many rounds are there in Koo App Senior Android Developer interview?
Koo App interview process usually has 2 rounds. The most common rounds in the Koo App interview process are Technical.
What are the top questions asked in Koo App Senior Android Developer interview?

Some of the top questions asked at the Koo App Senior Android Developer interview -

  1. MVVM clean Architecut...read more
  2. Basic Kotlin and Andr...read more
  3. About Jetpack Comp...read more

Recently Viewed

INTERVIEWS

Larsen & Toubro Limited

No Interviews

INTERVIEWS

Mindfire Solutions

No Interviews

INTERVIEWS

Koo App

No Interviews

INTERVIEWS

Reliance Infrastructure

No Interviews

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

Tell us how to improve this page.

Koo App Senior Android Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

ShareChat Interview Questions
3.6
 • 77 Interviews
MagicPin Interview Questions
2.7
 • 50 Interviews
Park Plus Interview Questions
2.9
 • 36 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
JUSPAY Interview Questions
3.1
 • 21 Interviews
Fraazo Interview Questions
3.5
 • 20 Interviews
Droom Interview Questions
3.8
 • 19 Interviews
View all
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