Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For Employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Bounce

      Is this your company?

      About
      Reviews
      Pay & benefits
      Jobs
      Interviews
      Interviews
      Related searches: Bounce reviews | Bounce jobs | Bounce salaries | Bounce benefits
      Bounce interviewsBounce Android Lead interviewsBounce interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent Posts

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalized job recommendations and updates by starting your searches.

      Android Lead Interview

      Aug 15, 2019
      Anonymous Interview Candidate
      Bengaluru
      No offer
      Negative experience
      Easy interview

      Application

      I applied through other source. The process took 1 day. I interviewed at Bounce (Bengaluru) in Aug 2019

      Interview

      1st Round: It was very interactive and Interview were not bound to one approach. 2nd Round: Taken by someone from android team. a) He asked about a secure approach by which only a legitimate user from mobile phone can start bounce bike. I gave him an approach in which a hashing certificate will be generated to server side when ever user will be signed up and sync that certificate to Bounce Bike, when ever it will come online. Now, Use a authenticator mechanism(same as Google Authenticator) to authenticate the ride based on hash key matching of certificate. It seems to be Interviewer was not happy with my approach inspite of It passed all of his pre-assumed use-cases. b) He want to discuss my Architecture approach for Application development. I explained him How MVP work with clean architecture, But It seems to be he was either only interested in MVVM or He might have designed his MVP architecture using some approach and looking for the same from my side. But, As I know Architecture design of any system vary from developer to developer. c) 2 DS algo questions * There are three unsorted(confirmed twice from him) array of size x, y, z. I had to form a third array whose size will be (n + m + l) and put all the elements in sorted order. I solved this question in O(N log N) Time complexity, where N = (x + y + z). But he told me provide a logic with less than this time complexity, which is not possible as I know(Please correct me If I am wrong). * Parenthesis balance question. I solved this in O(n) time complexity and and O(n) space complexity, which is clean solution as per Leet-code also. But, He was expecting a solution with O(1) space complexity. I failed to provide this solution, Because I don't want to play with the Time complexity. As per GeeksForGeeks (that he might have seen partially), You can achieve O(1) space complexity with a Time complexity of O(n^2) and O(n^3), which is not recommendable.

      Interview questions [1]

      Question 1

      1) Move all the element less than a given number to right side and greater than given number to left side. Number can or can not be part of Array 2) There are three unsorted(confirmed twice from him) array of size x, y, z. I had to form a third array whose size will be (n + m + l) and put all the elements in sorted order. 3) Check if given Parentheses are balanced or not.
      1 Answer
      3