I applied through university. The process took 1 day. I interviewed at Bounteous x Accolite in Dec 2025
Interview
Very long waiting time to get the results for each round. There were 3 rounds first pen and paper test, and then 2 technical interviews and then the offer letters were provided the same day to the selected candidates
I applied through university. The process took 4 weeks. I interviewed at Bounteous x Accolite in May 2025
Interview
i gave 2 interviews, both the interviews were via zoom meet, in both the interviews the interviewer had not turned on his camera. first interview was good and easy, the second interview was also easy the interviewer was very rude and did not seem interested in taking the interview.
Interview questions [1]
Question 1
sorting,OOP, write a code to find missing number in an array, coding question happy number,ACID properties and simple Puzzles were asked
Thank you for your feedback on our hiring process. We aim to ensure candidates have professional and respectful experience throughout. If you'd like, please share additional input at feedback@bounteous.com.
I applied through a recruiter. I interviewed at Bounteous x Accolite (Bengaluru) in May 2025
Interview
I joined and she asked below coding questions.
1) Given the root of a binary tree, flatten the tree into a "linked list":
The "linked list" should use the same TreeNode class where the right child pointer points to the next node in the list and the left child pointer is always null.
The "linked list" should be in the same order as a pre-order traversal of the binary tree.
Example 1:
Input: root = [1,2,5,3,4,null,6]
Output: [1,null,2,null,3,null,4,null,5,null,6]
Example 2:
Input: root = []
Output: []
Example 3:
Input: root = [0]
Output: [0]
-----------------------
2) You are given a list of integers and an integer k. Find all contiguous subarrays of size k and return the subarray which has the highest maximum value among them.
✅ Input:
A list of integers i = [1, 2, 3, 4, 5]
An integer k = 3
✅ Output:
A subarray of size k with the highest maximum value:
3,4,5
Interview questions [1]
Question 1
- Threadpooling
- Solid Principles
- HashMap vs ConcurrentHashMap
- What is Thread Safety.
- What is Thread? What is Process?