Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Bounteous x Accolite Team. If you also belong to the team, you can get access from here

Bounteous x Accolite Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Bounteous x Accolite Interview Questions, Process, and Tips

Updated 7 Feb 2025

Top Bounteous x Accolite Interview Questions and Answers

  • Q1. Loot Houses Problem Statement A thief is planning to steal from several houses along a street. Each house has a certain amount of money stashed. However, the thief canno ...read more
    asked in Software Engineer interview
  • Q2. Maximum Subarray Problem Statement Ninja has been given an array, and he wants to find a subarray such that the sum of all elements in the subarray is maximum. A subarra ...read more
    asked in Software Developer interview
  • Q3. Ninja and the Maze Problem Statement Ninja is stuck in a maze represented as a 2D grid. He can move in four directions (Up, Down, Left, Right) until he hits a wall ('1') ...read more
    asked in Software Developer Intern interview
View all 174 questions

Bounteous x Accolite Interview Experiences

Popular Designations

216 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. What is the Look and Say sequence, and how can a program be written to generate the next number in this sequence?
  • Q2. What is the SQL query to perform a join on two tables and calculate the aggregate sum using the product ID?
  • Q3. What is the process for writing a Bash script to read and parse a CSV file and print the last character of each line?
Round 2 - Coding Test 

Platform: Coderbyte Test. The process is similar to the technical round, except that in the last bash script question, instead of printing the last character, print the third last character of each line.

Round 3 - Technical 

(5 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. What are the principles of Continuous Integration and Continuous Deployment (CI/CD)?
  • Q3. What version control tools do you use, and can you explain how you utilize them?
  • Q4. What is the SQL query to join two tables and use aggregate functions such as SUM and AVG with GROUP BY?
  • Q5. What is the Bash command to suppress all output and errors?
Round 4 - HR 

(3 Questions)

  • Q1. Can you tell me about yourself and your family?
  • Q2. Are you comfortable with the possibility of relocating for the position?
  • Q3. Would it be acceptable to work shift timings from 6:30 AM to 3:30 PM considering that the client is based in New Zealand?

Interview Preparation Tips

Interview preparation tips for other job seekers - You can renegotiate your salary after reviewing the offer letter you received.

Associate Technical Delivery Manager Interview Questions asked at other Companies

Q1. Etl pipeline procedure examples
View answer (1)

Senior Softw Interview Questions & Answers

user image Anonymous

posted on 17 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Coding Test 

10 Macq's and 1 problem solving question.

Round 2 - Technical 

(9 Questions)

  • Q1. Self Introduction
  • Q2. Last project details
  • Q3. Print all duplicate elements in an Array
  • Q4. Java Exception Handling and Spring exception handling.
  • Q5. Spring IOC and types.
  • Q6. Circuit Breaker and its states
  • Q7. Design Pattern
  • Q8. Get the third highest salary from employee table
  • Q9. Valid parentheses from leetCode
Round 3 - Technical 

(8 Questions)

  • Q1. Self intro, Project based questions.
  • Q2. Optional Class, Stream.map() vs Stream.flatMap()
  • Q3. Lambda, reduce()
  • Q4. Sync Api vs Async Api, Sync Microservice and Async microservice example
  • Q5. Write a REST api to fetch user details using userId.
  • Q6. SOLID Principle and best coding practices
  • Q7. Write a global exception handler class to handle UserNotFound exception.
  • Q8. Advantages of IOC in spring and DI
Round 4 - HR 

(1 Question)

  • Q1. Self Intro and salary negotiation.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. How did you implement multithreading in your project?
  • Q2. What is the concept of lock isolation in Spring Framework?
  • Q3. What is the purpose of the @Primary and @Qualifier annotations in Spring Framework?
  • Q4. How do you implement security measures for your microservices?
  • Q5. Handling distributed transactions in microservices using the Saga pattern?

Java Back End Developer Interview Questions asked at other Companies

Q1. Design a layered architecture for saving the user data to db. What all annotations to be used on each class and on functions if any?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nu...
  • Ans. 

    Find the length of the longest subsequence of contiguous integers in an array.

    • Sort the array

    • Iterate through the array and check for consecutive integers

    • Keep track of the longest subsequence found

  • Answered by AI
  • Q2. Get list of pincodes from these objects Employee{ id Long, name String, Addresses : List
    } Addresses{ houseNo long, pindcode long, state String, country String, } Ans. Use flatMap to flatten and then use m...
  • Ans. 

    Use flatMap and map to extract list of pincodes from Employee objects

    • Use flatMap to flatten the list of Addresses in each Employee object

    • Use map to iterate over the flattened list and extract the pincodes

    • Example: employeeList.stream().flatMap(emp -> emp.getAddresses().stream()).map(address -> address.getPincode()).collect(Collectors.toList())

  • Answered by AI
  • Q3. What is Database Pooling, Hikari and its configurations. Java 8 to current enchancements and current java version Factory and Builder design patterns to explain and code Project expalantion and details, Cr...
  • Ans. 

    Database pooling is a technique used to manage a pool of database connections for efficient resource utilization. HikariCP is a popular database connection pooling library in Java.

    • HikariCP is a high-performance database connection pooling library for Java applications.

    • It is known for its low latency and high throughput.

    • Configurations for HikariCP include settings such as maximum pool size, connection timeout, and idle ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and design patterns and knowledge of springboot,java & streams API advance methods etc.

Skills evaluated in this interview

Top Bounteous x Accolite Java Developer Interview Questions and Answers

Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nums={2,6,1,9,4,5,3} output = 6
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Bounteous x Accolite interview questions for popular designations

 Software Engineer

 (40)

 Senior Software Engineer

 (28)

 Software Developer

 (23)

 Java Developer

 (11)

 Associate Technical Delivery Manager

 (5)

 Software Developer Intern

 (5)

 Senior Test Engineer

 (4)

 Softwaretest Engineer

 (4)

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was pretty easy. Various theoretical questions on technical knowledge and 3 coding questions. Since I was applying for a .net profile, all questions were related to that only.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Coding question on inheritance.
  • Q2. Coding question on Abstract classes and their application.
  • Q3. Discussion on the company, their culture.
  • Q4. Coding question on graph.
Round 3 - HR 

(2 Questions)

  • Q1. Asked me my expected salary even though it was already decided when they reached out to me.
  • Q2. Negotiations on the salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - Had a very bad experience with HR, since they started negotiating on salary after I completed all my rounds. Giving me reasons why they won't be able to give me the salary that they mentioned at the start of the interview.

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked ListYou are given two Singly Linked List of integers, which are merging at some node of a third linked list. Your task is to find the data of the node at which merging starts. If there is no merging, return -1. For ex... read more
View answer (4)

Get interview-ready with Top Bounteous x Accolite Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Cycle sort based question
  • Q2. Streams api, optional, lambda implementation
  • Q3. Hashmap iteration ways
  • Ans. 

    There are multiple ways to iterate over a HashMap in Java.

    • Using keySet() and values() methods

    • Using entrySet() method

    • Using forEach() method with lambda expression

  • Answered by AI
  • Q4. Method overriding based code question -> guess the output
  • Ans. 

    Method overriding in Java with code example

    • Output will be 'Child class method' as the method in Child class overrides the method in Parent class

    • Method overriding is a feature that allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • The method in the subclass should have the same name, return type, and parameters as the method in the superclass

  • Answered by AI
  • Q5. Write API to save data
  • Ans. 

    API to save data in Java

    • Use HTTP POST method to send data to the server

    • Create a RESTful endpoint to handle the data saving

    • Validate the input data before saving it to the database

  • Answered by AI

Skills evaluated in this interview

Top Bounteous x Accolite Java Developer Interview Questions and Answers

Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nums={2,6,1,9,4,5,3} output = 6
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Jobs at Bounteous x Accolite

View all

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 13 Dec 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is your approach to building basic logic skills?
  • Ans. 

    My approach to building basic logic skills involves practicing problem-solving exercises, breaking down complex problems into smaller parts, and seeking feedback to improve.

    • Practice problem-solving exercises regularly to strengthen logical thinking abilities.

    • Break down complex problems into smaller, more manageable parts to better understand the problem and find solutions.

    • Seek feedback from peers or mentors to identify...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Some behavioural questions?

PHP Developer Interview Questions asked at other Companies

Q1. How can we report errors in the log file while working on a core PHP project?
View answer (3)

Data Engineer interview

user image OnlineStudy4u

posted on 25 Mar 2022

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About the design pattern
  • Q2. Coding questions in stream api

Interview Preparation Tips

Interview preparation tips for other job seekers - Not selected for round 2

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sitution based question regarding conflict resolution in the team
  • Q2. Logistic regression and confusion matrix

Assistant Project Manager Interview Questions asked at other Companies

Q1. What are the different phases in new product development?
View answer (1)

Bounteous x Accolite Interview FAQs

How many rounds are there in Bounteous x Accolite interview?
Bounteous x Accolite interview process usually has 2-3 rounds. The most common rounds in the Bounteous x Accolite interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Bounteous x Accolite interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Bounteous x Accolite. The most common topics and skills that interviewers at Bounteous x Accolite expect are Javascript, Java, SQL, Microservices and Python.
What are the top questions asked in Bounteous x Accolite interview?

Some of the top questions asked at the Bounteous x Accolite interview -

  1. Total time: 110 mins 1. Find missing and duplicate numbers from given array(alg...read more
  2. Can you make a constructor private in Cpp, if not what error will you get (Comp...read more
  3. What is the difference between Binary Tree and Binary Search T...read more
How long is the Bounteous x Accolite interview process?

The duration of Bounteous x Accolite interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Bounteous x Accolite Interview Process

based on 160 interviews

Interview experience

3.6
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Bounteous x Accolite

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 805 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all

Bounteous x Accolite Reviews and Ratings

based on 804 reviews

3.4/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.3

Salary

3.3

Job security

3.3

Company culture

3.0

Promotions

3.2

Work satisfaction

Explore 804 Reviews and Ratings
Java Developer

Bangalore / Bengaluru,

Mumbai

3-8 Yrs

₹ 18-30 LPA

Java Developer

Bangalore / Bengaluru,

Mumbai

3-8 Yrs

₹ 15-30 LPA

SDET Python

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.5k salaries
unlock blur

₹6.5 L/yr - ₹27 L/yr

Software Engineer
561 salaries
unlock blur

₹4.6 L/yr - ₹15.1 L/yr

Associate Technical Delivery Manager
419 salaries
unlock blur

₹11 L/yr - ₹40 L/yr

Senior Test Engineer
208 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Technical Delivery Manager
153 salaries
unlock blur

₹19.7 L/yr - ₹60.4 L/yr

Explore more salaries
Compare Bounteous x Accolite with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview