Bankbazaar Interview Questions (2026)
1 questions · 1 experiences · GeeksforGeeks (2)
Top topics
BankBazaar.com Interview Experience | Set 7 (For Senior Android Developer)
Question Details
Position : Senior Android Developer The competency would be Tech Fit (Problem Solving, Data Structures & Algorithm) First Round: Telephonic Round: 1. Clone a linked list with next and random pointer https://www.geeksforgeeks.org/ a-linked-list-with-next-and- arbit-pointer/ 2. You have to design a data structure where you have a list. You need to do 3 operations 1. Insert at position. 2. Get Value from an index. 3. Update all index All in time complexity O(1). Hint : I have used count for each index and have extra variable to store value if user call Update all index. With the help of count you can determine if you have to pick value from index or from extra update variable. On-site round in banglore Second round: 1. Question related to project. 2.We have n cards with each card numbered from 1 to n. All cards are randomly shuffled. We are allowed only operation MoveCard(n) which moves the card with value n to the top of the pile. We need to sort the pile of cards with minimum number of MoveCard operations. The naive approach which i can think of is start with MoveCard(n), MoveCard(n-1), MoveCard(n-2).... MoveCard(1). This approach will solve the problem in n MoveCard operations. https://stackoverflow.com/questions questions/21852309/sort-a- deck-of-cards-with-minimum- number-of-moves Third Round: 1. It was the variation of tree Common Ancestor problem and linked-list Y node problem. I don't remember exactly but if you know these two you will be able to answer. 2. Longest Increasing Subsequence https://www.geeksforgeeks.org/ dynamic-programming-set-3- longest-increasing- subsequence/ Fourth Round: 1. 100 people are standing in a circle with gun in their hands. 1 kills 2, 3 kills 4, 5 kills 6 and so on till we are left with only one person. Who will be the last person alive. Write code to implement this efficiently. 2. java circular dependency questions. 3. Some basic questions 4. Write a program with two threads (A and B), where A prints 1 , B prints 2 and so on until 50 is reached. Thanks GFG Related Practice Problems Clone a linked list with next and random pointer Sort the pile of cards Longest Increasing Subsequence All Practice Problems for BankBazaar !
Topics
More from Bankbazaar
Related companies
Bankbazaar Interview Process Overview
The Bankbazaar interview process typically includes a recruiter screen, one to two technical phone screens, and a 4-6 round on-site or virtual on-site loop. Each round serves a distinct calibration purpose: coding rounds measure correctness, code quality, and complexity reasoning; system design rounds measure architectural judgment at the appropriate level; behavioral rounds measure ownership, leadership scope, and collaboration. Reports tagged on LeakCode from 2024-2026 show Bankbazaar runs a calibrated process consistent with industry norms for companies of its tier.
Difficulty calibration: Bankbazaar coding rounds typically run medium difficulty with follow-up depth as the senior discriminator. System design rounds expect production-grade trade-off articulation at L4+ levels. Behavioral rounds expect quantified outcomes ("reduced p99 latency from 800ms to 120ms") rather than vague impact claims. The candidates who advance consistently demonstrate clear thinking out loud rather than perfect final answers.
How To Use Bankbazaar Question Reports
Real candidate-reported interview questions are a calibration tool, not a memorization target. Bankbazaar updates its question pool every 2-4 months; memorizing exact problems risks misleading you when the interviewer uses a variant. The high-leverage approach: identify the patterns that appear repeatedly in Bankbazaar reports, practice those patterns on similar (not identical) problems, and use the reports to understand the interviewer's typical follow-up depth.
Filter the questions above by round type, difficulty, and recency. Focus first on reports from the past 6-12 months; older reports may reference questions that have since rotated out of Bankbazaar's pool. Reports tagged with quantified difficulty and explicit round type are higher-signal than reports without those tags. The metadata filters help you build a focused study plan in 1-2 hours rather than 8-10 hours of unstructured browsing.
Common Bankbazaar Interview Mistakes
Reports tagged "no hire" at Bankbazaar consistently surface a few patterns: jumping into code without clarifying requirements, coding silently for extended periods, missing edge cases (empty input, single element, large input, overflow), producing working code the candidate cannot refactor when probed, and behavioral stories that use "we" instead of "I" diluting individual signal. Strong candidates explicitly avoid these patterns by following a consistent round template.
The single most predictive failure mode in recent reports: not asking clarifying questions. Interviewers are explicitly trained to weight this dimension. Strong candidates ask 3-5 clarifying questions even on problems that look obvious; weak candidates dive into implementation immediately. Strong candidates also verbalize their approach before writing code; weak candidates code in silence and lose the communication dimension of the round's calibration.