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

Clear (1)

Bounteous x Accolite Software Developer Interview Questions, Process, and Tips

Updated 5 Mar 2025

Top Bounteous x Accolite Software Developer Interview Questions and Answers

  • Q1. 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
  • Q2. Rotting Oranges Problem Statement You are given a grid containing oranges where each cell of the grid can contain one of the three integer values: 0 - representing an em ...read more
  • Q3. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked ...read more
View all 24 questions

Bounteous x Accolite Software Developer Interview Experiences

25 interviews found

Software Developer Interview Questions & Answers

user image Shwetambari Pawar

posted on 12 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Problem solving

Software Developer Interview Questions & Answers

user image Sinchana N Vaidya

posted on 6 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude and analytical

Round 2 - Coding Test 

Coding Data structure and algorithms

Round 3 - Technical 

(1 Question)

  • Q1. Data structures and algorithms

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Software Developer Interview Questions & Answers

user image Rohan sai Kondle

posted on 4 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to find the Second highest salary from employees table. Write the logic for pre-order, inorder and post-order traversal of a binary tree
  • Ans. 

    To find the second highest salary from employees table and traverse a binary tree in pre-order, in-order, and post-order.

    • To find the second highest salary, you can use a subquery or window function like ROW_NUMBER() or DENSE_RANK().

    • For pre-order traversal, visit the root node first, then recursively do a pre-order traversal of the left subtree, followed by the right subtree.

    • For in-order traversal, recursively do an in-...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(1 Question)

  • Q1. Climbing ladders, either 1 step or 2 step at a time

Bounteous x Accolite interview questions for designations

 Software Developer Intern

 (5)

 Senior Software Developer

 (2)

 Software Engineer

 (40)

 Software Analyst

 (1)

 Java Developer

 (11)

 SQL Developer

 (1)

 PHP Developer

 (1)

 Senior Developer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There was coding test in which we were asked graph based question along which cs fundamental mcqs.

Round 2 - Technical 

(1 Question)

  • Q1. Parenthesis match (using stack),DBMS,OS questions, OOPS questions

Get interview-ready with Top Bounteous x Accolite Interview Questions

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

All MCQ questions 2hrs time , difficulty easy-medium then coding will be asked

Round 2 - Technical 

(2 Questions)

  • Q1. Total 3 technical rounds will be there , in round 1 theory concepts will be asked
  • Q2. About DS, array lists , Linked lists os concepts sql resume based

Interview Preparation Tips

Interview preparation tips for other job seekers - not selected 3rd round is very difficult. vice president of the company interview me

Software Developer Jobs at Bounteous x Accolite

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding question i have to code on a platform. Need good knowledge of DSA to solve these.

Round 2 - Technical 

(1 Question)

  • Q1. 2 Coding question asked that a have to code while sharing screen with interviewer. Array, Linked List And Tree. These are importantly they asked.
Round 3 - Technical 

(1 Question)

  • Q1. In this round they asked about projects mentioned in resume. And basics questions from your skill set that you mentioned in your resume.
Round 4 - HR 

(1 Question)

  • Q1. Final salary and location discussion. And some discussion on company work culture.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your DSA. Major topics - Array, Linked List, Map, Tree.

I applied via Company Website and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Coding Test 

2 coding questions were given.solved both

Round 2 - Technical 

(1 Question)

  • Q1. Started with intro and then asked dsa questions on binary search,linked list,trees like zigzag traversal,finding nth node from end.dbms questions also were asked
Round 3 - Technical 

(1 Question)

  • Q1. Started with intro and then asked two sum, detection of cycle in direct graph,grouping anagrams,dbms questions like normalisation and projects discussion
Round 4 - HR 

(1 Question)

  • Q1. Intro and situation based questions and hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa well and more focus will be on coding part.optimised solutions are expected and mention good projects in resume.

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 10 AM. Platform was very lagging. So overall it was not a good experience.

  • Q1. 

    Topological Sort Problem Statement

    Given a Directed Acyclic Graph (DAG) consisting of V vertices and E edges, your task is to find any topological sorting of this DAG. You need to return an array of size ...

  • Ans. 

    Implement a function to find any topological sorting of a Directed Acyclic Graph (DAG).

    • Use Kahn's algorithm to find a topological sort of the DAG.

    • Start by finding all vertices with in-degree 0 and add them to the result array.

    • Remove these vertices and their outgoing edges from the graph, then repeat the process.

    • Continue until all vertices are added to the result array.

    • Return the result array as the topological sort of

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAAccolite interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice DS and algo questions.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 10 AM. Platform was very lagging. So overall it was not a good experience.

  • Q1. 

    Topological Sort Problem Statement

    You are given a directed acyclic graph (DAG). Your task is to perform topological sorting of the graph and return any valid ordering.

    Explanation:

    A directed acyclic g...

  • Ans. 

    Implement a function to perform topological sorting on a directed acyclic graph (DAG).

    • Create a graph data structure to represent the DAG.

    • Use depth-first search (DFS) to perform topological sorting.

    • Maintain a visited array to keep track of visited nodes.

    • Return the topological ordering of the graph as an array of integers.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAAccolite interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice data structure 
Tip 2 : Do some projects
 

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Try not to add false information

Final outcome of the interviewRejected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Bounteous x Accolite Interview FAQs

How many rounds are there in Bounteous x Accolite Software Developer interview?
Bounteous x Accolite interview process usually has 2-3 rounds. The most common rounds in the Bounteous x Accolite interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Bounteous x Accolite Software Developer 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 Python, SQL, Computer science, Debugging and HTML.
What are the top questions asked in Bounteous x Accolite Software Developer interview?

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

  1. 1. Write a code to split an array of integers into two subarray where both the ...read more
  2. To write code to build up a binary tree from scratch (implement a BST) and then...read more
  3. 2. find unique character in a window of k size in a str...read more
How long is the Bounteous x Accolite Software Developer interview process?

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

Recently Viewed

INTERVIEWS

ENTRI SOFTWARE

No Interviews

JOBS

Honeywell Technology Solutions

No Jobs

SALARIES

Providence Global Center

SALARIES

Skilldzire Technologies

INTERVIEWS

Bounteous x Accolite

No Interviews

SALARIES

Providence Global Center

SALARIES

98thPercentile

SALARIES

Skilldzire Technologies

INTERVIEWS

Providence Global Center

No Interviews

SALARIES

ENTRI SOFTWARE

Tell us how to improve this page.

Bounteous x Accolite Software Developer Interview Process

based on 21 interviews

3 Interview rounds

  • Coding Test Round
  • Technical Round - 1
  • Technical Round - 2
View more
Bounteous x Accolite Software Developer Salary
based on 127 salaries
₹3.8 L/yr - ₹15 L/yr
10% more than the average Software Developer Salary in India
View more details

Bounteous x Accolite Software Developer Reviews and Ratings

based on 22 reviews

3.3/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.0

Salary

3.8

Job security

3.3

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 22 Reviews and Ratings
Software Developer

Bangalore / Bengaluru

2-3 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
564 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Delivery Manager
431 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
211 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Delivery Manager
153 salaries
unlock blur

₹0 L/yr - ₹0 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