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 Software Engineer Interview Questions and Answers for Freshers

Updated 13 Apr 2025

9 Interview questions

A Software Engineer was asked 9mo ago
Q. Write a function to traverse a binary tree and find the minimum value.
Ans. 

Use tree traversal to find the minimum number in a tree structure.

  • Start at the root node and compare it with its children to find the minimum value.

  • Use depth-first search or breadth-first search to traverse the tree.

  • Keep track of the minimum value found so far as you traverse the tree.

  • Consider implementing a recursive function to traverse the tree efficiently.

A Software Engineer was asked
Q. What is your understanding of OOPS concepts?
Ans. 

OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes, promoting code reusability and modularity.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class from an existing class, inheriting attributes and methods (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to pre...

Software Engineer Interview Questions Asked at Other Companies for Fresher

asked in Capgemini
Q1. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
asked in Capgemini
Q2. How can you cut a rectangular cake in 8 symmetric pieces in three ... read more
Q3. Split Binary String Problem Statement Chintu has a long binary st ... read more
asked in TCS
Q4. What is the reason that the Iterative Waterfall model was introdu ... read more
asked in Wipro
Q5. Knapsack Problem Statement There is a potter with a limited amoun ... read more
A Software Engineer was asked
Q. Write the code.
Ans. 

The question requires writing code, likely involving algorithms or data structures.

  • Understand the problem requirements clearly before coding.

  • Break down the problem into smaller, manageable parts.

  • Choose appropriate data structures (e.g., arrays, lists, trees).

  • Write pseudocode to outline your logic before actual coding.

  • Test your code with various inputs to ensure correctness.

A Software Engineer was asked
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reversing a linked list involves changing the direction of the pointers between nodes.

  • Iterate through the list while maintaining three pointers: previous, current, and next.

  • Set the current node's next pointer to the previous node.

  • Move the previous and current pointers one step forward.

  • Repeat until the end of the list is reached.

  • Example: For list 1 -> 2 -> 3, the reversed list will be 3 -> 2 -> 1.

A Software Engineer was asked
Q. Given a string, find all palindromic substrings.
Ans. 

Program to find all palindromic strings in a given string.

  • Iterate through the string and check for palindromic substrings using two pointers.

  • Add the palindromic substrings to an array of strings.

  • Return the array of palindromic strings.

A Software Engineer was asked
Q. Write an SQL query to find the second highest salary from an employee table.
Ans. 

SQL query to find the 2nd highest salary in a table.

  • Use ORDER BY and LIMIT to sort and select the 2nd highest salary.

  • Use subquery to avoid duplicates if necessary.

A Software Engineer was asked
Q. What is a finally block, and will it execute if System.exit() is called?
Ans. 

Finally is a block of code that executes after try-catch block. It will not execute if System.exit() is called.

  • Finally block is used to execute a block of code after try-catch block

  • It will execute even if an exception is thrown

  • Finally block will not execute if the JVM exits before the block is executed

  • System.exit() terminates the JVM and finally block will not execute

Are these interview questions helpful?
A Software Engineer was asked
Q. 

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 cannot loot two adjacent houses. Determin...

Ans. 

Determine the maximum amount of money a thief can steal from houses without looting two consecutive houses.

  • Create an array 'dp' to store the maximum money that can be stolen up to the i-th house.

  • Iterate through the houses and update 'dp' based on whether the current house is stolen or not.

  • Return the maximum value in 'dp' as the answer.

  • Example: For input N=4 and values=[6, 7, 1, 30], the output should be 36.

πŸ”₯ Asked by recruiter 5 times
A Software Engineer was asked
Q. 

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 gr...

Ans. 

Implement a function to perform topological sorting on a directed acyclic graph (DAG) and return any valid ordering.

  • Create a graph representation using adjacency list or matrix

  • Perform depth-first search (DFS) to find the topological ordering

  • Use a stack to keep track of the ordering

  • Return the ordering as an array of integers

Bounteous x Accolite Software Engineer Interview Experiences for Freshers

10 interviews found

Software Engineer Interview Questions & Answers

user image Ajay Shendage

posted on 4 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding TestΒ 

It was an easy-medium level exam. It included 2 questions.

Round 2 - TechnicalΒ 

(5 Questions)

  • Q1. There were 3 technical rounds and 1 hr round. I was asked about DSA, OOPS, Networking etc
  • Q2. You just focus on the DSA.
  • Q3. I was asked about the OOPS
  • Q4. I was asked for write the code
  • Ans. 

    The question requires writing code, likely involving algorithms or data structures.

    • Understand the problem requirements clearly before coding.

    • Break down the problem into smaller, manageable parts.

    • Choose appropriate data structures (e.g., arrays, lists, trees).

    • Write pseudocode to outline your logic before actual coding.

    • Test your code with various inputs to ensure correctness.

  • Answered by AI
  • Q5. I was asked for Networking
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2023.Β There were 4 interview rounds.

Round 1 - Coding TestΒ 

Dsa questions on graph and array

Round 2 - One-on-oneΒ 

(2 Questions)

  • Q1. Tree traversal to find minimum number
  • Ans. 

    Use tree traversal to find the minimum number in a tree structure.

    • Start at the root node and compare it with its children to find the minimum value.

    • Use depth-first search or breadth-first search to traverse the tree.

    • Keep track of the minimum value found so far as you traverse the tree.

    • Consider implementing a recursive function to traverse the tree efficiently.

  • Answered by AI
  • Q2. Queues question
Round 3 - One-on-oneΒ 

(2 Questions)

  • Q1. Array question for 2 pointer
  • Q2. Oops wuestions and project discussion
Round 4 - HRΒ 

(2 Questions)

  • Q1. General hr questions
  • Q2. Offer discussions

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before May 2022.Β There were 6 interview rounds.

Round 1 - Resume ShortlistΒ 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude TestΒ 

Online aptitude test

Round 3 - Coding TestΒ 

One coding question given

Round 4 - TechnicalΒ 

(1 Question)

  • Q1. Linked list reversal
Round 5 - TechnicalΒ 

(1 Question)

  • Q1. Oops concepts, Trees and BSTs were asked
Round 6 - HRΒ 

(1 Question)

  • Q1. Policies discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Very less projects
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume ShortlistΒ 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude TestΒ 

Basic of Programming and Aptitude

Round 3 - Coding TestΒ 

One program of Data Structures and Algorithm duration 1 hour

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your DSA skills for Getting to the next round

I applied via Naukri.com and was interviewed in Dec 2021.Β There were 5 interview rounds.

Interview QuestionnaireΒ 

4 Questions

  • Q1. Find 2nd max salary- SQL
  • Ans. 

    SQL query to find the 2nd highest salary in a table.

    • Use ORDER BY and LIMIT to sort and select the 2nd highest salary.

    • Use subquery to avoid duplicates if necessary.

  • Answered by AI
  • Q2. Basics of OOPS concept
  • Q3. What is finally and will it execute if System.exit() is called?
  • Ans. 

    Finally is a block of code that executes after try-catch block. It will not execute if System.exit() is called.

    • Finally block is used to execute a block of code after try-catch block

    • It will execute even if an exception is thrown

    • Finally block will not execute if the JVM exits before the block is executed

    • System.exit() terminates the JVM and finally block will not execute

  • Answered by AI
  • Q4. Find all palindromic strings in a string program
  • Ans. 

    Program to find all palindromic strings in a given string.

    • Iterate through the string and check for palindromic substrings using two pointers.

    • Add the palindromic substrings to an array of strings.

    • Return the array of palindromic strings.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up basic sql queries, basic programs on array and strings, be confident

Skills evaluated in this interview

I appeared for an interview in Oct 2020.

Round 1 - Coding TestΒ 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

1 coding question was given to be solved within 90 minutes. The platform was provided by Eduthrill. It was user friendly. Audio and Video was required to be ON in this round.

  • 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) and return any valid ordering.

    • Create a graph representation using adjacency list or matrix

    • Perform depth-first search (DFS) to find the topological ordering

    • Use a stack to keep track of the ordering

    • Return the ordering as an array of integers

  • Answered by AI
Round 2 - Video CallΒ 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

This round was a Technical Interview 1. The round started at 7:30 pm in the evening and ended at around 8:20 pm. The video call was conducted using Google Meet and the coding of the given question was done on any of the compiler of my choice by screen sharing.

  • 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 cannot loot two adjacent houses. Determi...

  • Ans. 

    Determine the maximum amount of money a thief can steal from houses without looting two consecutive houses.

    • Create an array 'dp' to store the maximum money that can be stolen up to the i-th house.

    • Iterate through the houses and update 'dp' based on whether the current house is stolen or not.

    • Return the maximum value in 'dp' as the answer.

    • Example: For input N=4 and values=[6, 7, 1, 30], the output should be 36.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from Indian Institute of Technology (Indian School of Mines), Dhanbad. I applied for the job as Software Engineer in HyderabadEligibility criteriaNo criteriaAccolite interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, DBMS, Operating System, PuzzlesTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Code as much as possible without looking at answers. Take help of hints after giving a proper attempt to the question. 
Tip 2 : Concepts of DSA should be strong and keep revising the topics. 
Tip 3 : Know the Time and Space conplexities of your code.

Application resume tips for other job seekers

Tip 1 : Make a ONE page resume. 
Tip 2 : Add links to show originality of your projects.
Tip 3 : Do not add false information just to fill the resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021.Β There were 4 interview rounds.

Interview QuestionnaireΒ 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Difficult and prepare more on ds and algos

I applied via Campus Placement and was interviewed in May 2021.Β There were 4 interview rounds.

Interview QuestionnaireΒ 

1 Question

  • Q1. Mainly focussed on DBMS,Data Structures

Interview Preparation Tips

Interview preparation tips for other job seekers - mainly focuses on algorithms

I applied via Campus Placement and was interviewed in May 2021.Β There was 1 interview round.

Interview QuestionnaireΒ 

1 Question

  • Q1. Dsa java oops dbms networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience.
You have to be very strong in DSA.

I applied via Referral and was interviewed before Aug 2021.Β There were 2 interview rounds.

Round 1 - TechnicalΒ 

(1 Question)

  • Q1. Basic Core Java questions oops concepts some sql queries
Round 2 - TechnicalΒ 

(1 Question)

  • Q1. Question on Data structure list and hasmap ,java collection

Interview Preparation Tips

Topics to prepare for Bounteous x Accolite Software Engineer interview:
  • Core java,
  • Collections
Interview preparation tips for other job seekers - Prepare core java ,oops , collection coding questions to print -1 in place of duplicate elements

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
Β·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Bounteous x Accolite?
Ask anonymously on communities.

Bounteous x Accolite Interview FAQs

How many rounds are there in Bounteous x Accolite Software Engineer interview for freshers?
Bounteous x Accolite interview process for freshers usually has 3-4 rounds. The most common rounds in the Bounteous x Accolite interview process for freshers are Technical, Coding Test and Resume Shortlist.
How to prepare for Bounteous x Accolite Software Engineer interview for freshers?
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 Data Structures, JSON, Java, Java Spring Boot and Javascript.
What are the top questions asked in Bounteous x Accolite Software Engineer interview for freshers?

Some of the top questions asked at the Bounteous x Accolite Software Engineer interview for freshers -

  1. What is finally and will it execute if System.exit() is call...read more
  2. Find all palindromic strings in a string prog...read more
  3. Tree traversal to find minimum num...read more
How long is the Bounteous x Accolite Software Engineer interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
4-6 weeks 50%
View more

Software Engineer Interview Questions from Similar Companies

Xoriant Software Engineer Interview Questions
4.1
Β β€’Β 32 Interviews
Tietoevry Software Engineer Interview Questions
4.2
Β β€’Β 18 Interviews
Apexon Software Engineer Interview Questions
3.3
Β β€’Β 14 Interviews
Globant Software Engineer Interview Questions
3.7
Β β€’Β 9 Interviews
Luxoft Software Engineer Interview Questions
3.7
Β β€’Β 8 Interviews
View all
Bounteous x Accolite Software Engineer Salary
based on 599 salaries
β‚Ή6 L/yr - β‚Ή14.1 L/yr
6% more than the average Software Engineer Salary in India
View more details

Bounteous x Accolite Software Engineer Reviews and Ratings

based on 82 reviews

3.3/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.2

Salary

3.2

Job security

3.1

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 82 Reviews and Ratings
Software Engineer

Gurgaon / Gurugram,

Bangalore / Bengaluru

4-6 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.7k salaries
unlock blur

β‚Ή6.1 L/yr - β‚Ή24.7 L/yr

Software Engineer
599 salaries
unlock blur

β‚Ή6 L/yr - β‚Ή14.1 L/yr

Associate Technical Delivery Manager
438 salaries
unlock blur

β‚Ή20.2 L/yr - β‚Ή36 L/yr

Senior Test Engineer
230 salaries
unlock blur

β‚Ή8.1 L/yr - β‚Ή17.5 L/yr

Technical Delivery Manager
126 salaries
unlock blur

β‚Ή28 L/yr - β‚Ή48.2 L/yr

Explore more salaries
Compare Bounteous x Accolite with

Xoriant

4.1
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare

HERE Technologies

3.8
Compare
write
Share an Interview