BankBazaar Interview Experience | Set 2 Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report I had an interview with BankBazaar.com. Their process is online coding test followed by a telephonic and f2f interviews. Written test The person who wrote this problem is going through the bad phase of his life. But, fortunately he won some cash in his last programming event. Now to make his girlfriend feel special, he wants to buy her some chocolates. As mentioned, he is not having good time so he want to spend as less as possible. Keeping that in mind, he decided to play a game with her. The rule of game is as follows: 1) There are N chocolates represented by type 1..N 2) He will arrange them in a row in some random order 3) Now she (his girlfriend ofcourse) has to pick an index say i, then she will get all the chocolates at index j such that j>i and type of chocolate at j is strictly less than type of chocolate at index i. He believes that his girlfriend is not that clever and will surely not choose the most optimal index, but he wants to know that if by any chance she picked the optimal index then how many chocolates will he have to buy. Input: First line contain N. then next line contain N space separated integers. output : A single integer which is the answer. Constraints : 1 = N = 105 1<=A[i]<=10^5 Sample Input (Plaintext Link) 10 7 6 10 5 2 8 1 9 3 4 Sample Output (Plaintext Link) 7 Explanation If she chooses i=3, then all the elements in right of i have type less than 10, hence ans is 7. In none of the other case she can get more chocolates 2) Forgot the 2nd question. Round-1 Telephonic Given a binary tree find the pairs which violate the BST property. In BST EVERY element in left subtree must be less than every element in the right subtree eg: 50 30 60 20 25 10 40 In above tree the pairs violating BST property are (20, 10), (30, 25), (30, 10) , (25, 10), (50, 10) and (60, 40). Expected time complexity for the problem is O(nlogn) time ? solution: Make in-order traversal. Store the in-order traversal in an array. Find the pairs which voilate the property I have not cleared this round so no f2f interview questions. All Practice Problems for BankBazaar ! Comment More infoAdvertise with us Next Article BankBazaar.com Interview Experience | Set 5 Anonymous Improve Article Tags : Interview Experiences BankBazaar Practice Tags : BankBazaar Similar Reads BankBazaar.com Interview Experience | Set 4 Telephonic Interview Brief introduction, project you are working currently and reason for change, feedback in last review cycle and how are you working on shortcomings Technical questions n distinct values, how many BSTs are possible Inorder traversal of BST is given in an array. Find relative pairs 1 min read BankBazaar.com Interview Experience | Set 5 Recently i had an interview with BankBazaar.com 1. Tell me about yourself. 2. Why do you want to switch. 3. Why should we hire you. 4. Find the middle element in linked list. 5. Find the middle element in circular linked list. 6. Binary tree traversal preorder ,inorder ,post order. 7. Find duplicate 2 min read Interview Experience @ Bankbazaar.com Just want to share my interview experience @ Bankbazaar.com so that its helpful for the aspiring ones. Total Rounds - 6 ( 2 Telephonic Technical  + 2 Technical Onsite + 1 with CIO + 1 HR ) Duration : Spanned for 2 weeks ( due to personal commitments) Round 1 :  Q1 - Give an efficient algo to find i 2 min read Barclays Investment Bank Interview Experience Round 1: Aptitude-cum-Coding TestPlatform: HackerEarth The initial round consisted of two parts: an aptitude test and a coding test. Aptitude Test â 60 Minutes The aptitude test comprised three sections: Quantitative AptitudeVerbal AbilityLogical ReasoningEach section had 20 questions, making a tota 2 min read Citi Bank | Interview Experience for SDET Company Name: Citi Bank. I received a call from Naukri.The Karat interview for SDET (Software Development Engineer in Test) typically involves a structured assessment divided into multiple sections:Scenario-Based Testing: Questions focused on general testing principles, scenarios, and situational pr 1 min read Citi Bank Interview Experience 2023 I recently had the opportunity to interview for an internship position at Citi Bank in the ICG (Institutional Clients Group) division during the third year of my computer engineering course. The interview experience was challenging and informative, and I'd like to share the details with you. 1. Appl 3 min read Like