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 Engineer Interview Questions, Process, and Tips

Updated 13 Dec 2024

Top Bounteous x Accolite Software Engineer 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
  • Q2. 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. ...read more
  • Q3. Total time: 110 mins 1. Find missing and duplicate numbers from given array(algo, code, optimization, dry run, complexity analysis) 2. Flatten Binary tree to Linked List ...read more
View all 41 questions

Bounteous x Accolite Software Engineer Interview Experiences

40 interviews found

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

(2 Questions)

  • Q1. Java core features and advantages
  • Ans. 

    Java is a popular programming language known for its platform independence and object-oriented features.

    • Platform independence allows Java code to run on any platform without recompilation

    • Object-oriented features like encapsulation, inheritance, and polymorphism make code modular and reusable

    • Java has a vast standard library with built-in support for networking, I/O, and concurrency

    • Java is highly secure with features lik...

  • Answered by AI
  • Q2. DBMS types and features known
  • Ans. 

    DBMS types include relational, NoSQL, object-oriented, and hierarchical. Each has unique features and use cases.

    • Relational DBMS: structured data, ACID compliance, SQL queries (e.g. MySQL, Oracle)

    • NoSQL DBMS: unstructured data, flexible schema, horizontal scaling (e.g. MongoDB, Cassandra)

    • Object-oriented DBMS: data stored as objects, supports inheritance and polymorphism (e.g. db4o)

    • Hierarchical DBMS: data organized in a t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with all the skills mentioned in resume and ve confident

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

One coding question was asked to solve along with aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Conditions for a deadlock
  • Ans. 

    Conditions for a deadlock in software engineering

    • Deadlock occurs when each process in a set is waiting for an event that only another process in the set can cause

    • Four conditions for a deadlock: mutual exclusion, hold and wait, no preemption, circular wait

    • Example: Process A holds resource X and waits for resource Y, while Process B holds resource Y and waits for resource X

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - there were 3 technical interviews.you must have high knowledge in coding.

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Coding Test 

There are two coading questions one easy and one medium

Round 2 - Technical 

(1 Question)

  • Q1. 2 easy coading questions
Round 3 - Technical 

(1 Question)

  • Q1. Oops+ two coading questions
Round 4 - Technical 

(1 Question)

  • Q1. One medium coading questions
Round 5 - HR 

(1 Question)

  • Q1. Checking fluency and articulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Do easy medium leetcode questions daily minimum one or two questions
Round 1 - MCQ 

(1 Question)

  • Q1. OOPS, C++, Data Structures, Algorithms, and Aptitude were asked in this round.
Round 2 - Coding Test 

This round had only one question and the time given was 60 mins, it was a medium-level Question based on Arrays. The question was given in the form of a story just like we get on platforms like Codechef and we had to provide an optimized solution with given and hidden test cases getting the correct output.

Round 3 - Technical 

(19 Questions)

  • Q1. Questions were based on LinkedList (Level – Easy) rest were asked questions based on Trees but again the level was Easy.
  • Q2. Two Questions based on Arrays
  • Q3. Questions on Sorting (Merge Sort implementation)
  • Q4. Questions on Inheritance, Pointers, Double Pointers.
  • Q5. 4 pillars of OOPS were asked
  • Q6. Encapsulation and its real-time examples
  • Ans. 

    Encapsulation is a mechanism of wrapping data and code together into a single unit.

    • Encapsulation helps in achieving data hiding and abstraction.

    • It provides better control over the data by making it private and accessible only through public methods.

    • Real-time examples of encapsulation include a car's engine, which is encapsulated and can only be accessed through the car's interface.

    • Another example is a mobile phone, whe...

  • Answered by AI
  • Q7. Inheritance and its disadvantages
  • Ans. 

    Inheritance allows a subclass to inherit properties and methods from a superclass, but it has some disadvantages.

    • Inheritance can lead to tight coupling between classes, making it difficult to modify the superclass without affecting the subclass.

    • Inheritance can also lead to the creation of deep class hierarchies, which can be difficult to understand and maintain.

    • Inheritance can result in code duplication if multiple sub...

  • Answered by AI
  • Q8. What is Runtime polymorphism
  • Ans. 

    Runtime polymorphism is the ability of an object to take on multiple forms during runtime.

    • It is achieved through method overriding

    • It allows for more flexibility and extensibility in code

    • It is a key feature of object-oriented programming

    • Example: Animal class with different subclasses such as Dog, Cat, and Bird

  • Answered by AI
  • Q9. Pair Sum Problem was asked
  • Q10. A tweak to the pair sum problem: there can be any number of elements that add up to the target
  • Ans. 

    The task is to find any number of elements in an array that add up to a given target.

    • Use a recursive approach to find all possible combinations of elements that add up to the target.

    • Start with the first element and recursively call the function with the remaining elements and the reduced target.

    • If the target becomes zero, add the current combination to the result.

    • If the target becomes negative or there are no more elem...

  • Answered by AI
  • Q11. Max multiplication of 3 numbers in an array
  • Ans. 

    Find the maximum multiplication of 3 numbers in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Check the product of first three elements and last two elements with the first element.

  • Answered by AI
  • Q12. Dutch national flag problem
  • Ans. 

    The Dutch national flag problem is a sorting problem that involves sorting an array of 3 distinct values.

    • The problem involves sorting an array of 3 distinct values: red, white, and blue.

    • The goal is to sort the array in-place, without using any additional data structures.

    • The solution involves using three pointers to keep track of the boundaries between the different values.

  • Answered by AI
  • Q13. Questions on the pointer, double-pointer, and LinkedList
  • Q14. Problem on stack implementation using linked list
  • Q15. Segregate 0's and 1's in array - Dutch National Flag Algo Again
  • Ans. 

    Segregate 0's and 1's in array using Dutch National Flag Algorithm

    • Use three pointers - low, mid, and high

    • low points to the first index of 1

    • mid points to the first index of unknown element

    • high points to the last index of 1

    • If arr[mid] is 0, swap arr[low] and arr[mid], increment low and mid

    • If arr[mid] is 1, increment mid

    • If arr[mid] is 2, swap arr[mid] and arr[high], decrement high

  • Answered by AI
  • Q16. Questions of CS fundamentals (databases, computer networks, operating systems) Average level questions like What are semaphores, Primary key vs Candidate Key, Normal forms of DBMS, etc
  • Q17. Project explanation and a few questions on it.
  • Q18. Mongo which NoSQL database- document-based, other NoSQL databases, virtual dom
  • Q19. Redux, pass values in props, NoSQL vs SQL, nodejs to be used where event loop, async Javascript
Round 4 - Technical 

(17 Questions)

  • Q1. Explain the diamond problem in Cpp, and how to solve it.
  • Ans. 

    Diamond problem occurs in multiple inheritance when two base classes have a common method. It is solved using virtual inheritance.

    • Diamond problem occurs when a derived class inherits from two base classes that have a common method.

    • Virtual inheritance is used to solve the diamond problem.

    • Virtual inheritance ensures that only one instance of the common base class is created.

  • Answered by AI
  • Q2. What are the Dynamic-link library (DLL) in Cpp and its use?
  • Ans. 

    DLL is a library of executable functions and data that can be used by a Windows application.

    • DLLs are loaded at runtime and can be shared by multiple applications.

    • They allow for modular programming and reduce memory usage.

    • DLLs can be used for device drivers, system utilities, and application extensions.

    • Examples of DLLs include kernel32.dll, user32.dll, and msvcr100.dll.

  • Answered by AI
  • Q3. What are registers in Cpp?
  • Ans. 

    Registers are small, fast memory locations in a CPU that store data for quick access.

    • Registers are used to store data that is frequently accessed by the CPU.

    • They are faster than accessing data from RAM.

    • Registers are limited in number and size.

    • Examples of registers include the program counter, stack pointer, and general-purpose registers.

    • Register usage can be optimized for performance in code.

    • Accessing registers can be ...

  • Answered by AI
  • Q4. Can you make a constructor private in Cpp, if not what error will you get (Compile Time Error or Runtime Error)
  • Ans. 

    Yes, a constructor can be made private in C++ to restrict object creation outside the class.

    • Private constructors are used in Singleton design pattern to ensure only one instance of the class is created.

    • If a constructor is made private, it can only be accessed by the member functions of the class.

    • Attempting to create an object of a class with a private constructor outside the class will result in a compile-time error.

  • Answered by AI
  • Q5. What are function pointers and the differences between normal function and function pointers?
  • Ans. 

    Function pointers are pointers that point to the memory address of a function. They can be passed as arguments or returned from a function.

    • Function pointers allow for dynamic function calls at runtime

    • Function pointers can be used to implement callbacks

    • Function pointers can be used to implement polymorphism

    • Normal functions are called directly, while function pointers are called indirectly

    • Function pointers can be assigne...

  • Answered by AI
  • Q6. What are the ways to prevent Instantiation of Class?
  • Ans. 

    Ways to prevent instantiation of a class

    • Declare the class as abstract

    • Make the constructor private

    • Implement a static factory method

    • Throw an exception in the constructor

    • Use the Singleton pattern

  • Answered by AI
  • Q7. How to check for a loop in linked list?
  • Ans. 

    To check for a loop in a linked list, we use the Floyd's cycle-finding algorithm.

    • Create two pointers, slow and fast, and initialize them to the head of the linked list.

    • Move slow pointer by one node and fast pointer by two nodes.

    • If there is a loop, the two pointers will eventually meet.

    • If there is no loop, the fast pointer will reach the end of the linked list.

    • Time complexity of this algorithm is O(n) and space complexi

  • Answered by AI
  • Q8. Remove duplicates from Linked List. Both variants.
  • Ans. 

    Remove duplicates from Linked List. Both variants.

    • Variant 1: Using Hash Set to keep track of visited nodes and removing duplicates

    • Variant 2: Using two pointers to compare each node with all subsequent nodes and removing duplicates

    • Example: 1->2->3->2->4->3, Output: 1->2->3->4

  • Answered by AI
  • Q9. Reverse the linked list in groups of k
  • Ans. 

    Reverse a linked list in groups of k

    • Create a function to reverse a linked list

    • Iterate through the linked list in groups of k

    • Reverse each group using the function

    • Connect the reversed groups back together

    • Return the new head of the linked list

  • Answered by AI
  • Q10. Asked to print the 2nd smallest element in bst
  • Q11. Equal Sum Partition along with print that 2 arrays (DP + matrix printing)
  • Ans. 

    Equal Sum Partition problem with DP and matrix printing

    • The problem involves dividing an array into two subsets with equal sum

    • Dynamic programming can be used to solve this problem efficiently

    • A matrix can be used to keep track of the subsets

    • Printing the subsets can be done by backtracking through the matrix

  • Answered by AI
  • Q12. Delete Kth node from the end of the linked list in single iteration
  • Ans. 

    Delete Kth node from end of linked list in single iteration

    • Use two pointers, one to traverse the list and another to keep track of Kth node from end

    • Move both pointers simultaneously until the first pointer reaches the end

    • Delete the Kth node from end using the second pointer

  • Answered by AI
  • Q13. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists

    • Create a new linked list

    • Compare the first nodes of both lists and add the smaller one to the new list

    • Move the pointer of the added node to the next node in the list

    • Repeat until one of the lists is empty

    • Add the remaining nodes of the non-empty list to the new list

  • Answered by AI
  • Q14. Check if a linked list is circular or not
  • Ans. 

    To check if a linked list is circular, we can use Floyd's cycle-finding algorithm.

    • Create two pointers, slow and fast, and initialize them to the head of the linked list

    • Move slow pointer by one node and fast pointer by two nodes

    • If the linked list is circular, the fast pointer will eventually catch up to the slow pointer

    • If the linked list is not circular, the fast pointer will reach the end of the list

    • Time complexity: O(

  • Answered by AI
  • Q15. What is the difference between Binary Tree and Binary Search Tree
  • Ans. 

    Binary Tree is a tree data structure where each node has at most two children. Binary Search Tree is a binary tree with the property that the left subtree of a node contains only nodes with keys lesser than the node's key and the right subtree of a node contains only nodes with keys greater than the node's key.

    • Binary Tree can have any values in the nodes, while Binary Search Tree has a specific order of values.

    • Binary S...

  • Answered by AI
  • Q16. Separate negative and positive numbers in a linked list.
  • Ans. 

    Separate negative and positive numbers in a linked list.

    • Create two separate linked lists for positive and negative numbers

    • Traverse the original linked list and add nodes to respective lists

    • Join the two lists to get the final linked list with separated numbers

  • Answered by AI
  • Q17. Calculating the depth of a tree
  • Ans. 

    Calculating the depth of a tree

    • Depth of a tree is the maximum distance from the root node to any leaf node

    • Can be calculated recursively by finding the maximum depth of left and right subtrees

    • Base case is when the node is null, return 0

  • Answered by AI
Round 5 - HR 

(9 Questions)

  • Q1. 1. Introduction and my family background.
  • Q2. 2. What are your Strengths and Weaknesses?
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weaknesses include impatience and perfectionism.

    • Strength: Problem-solving - I enjoy analyzing complex problems and finding efficient solutions.

    • Strength: Adaptability - I am quick to learn new technologies and adapt to changing environments.

    • Strength: Teamwork - I work well in collaborative settings, valuing open communication and cooperation.

    • Weakness: ...

  • Answered by AI
  • Q3. 3. Tell us about your hobbies
  • Ans. 

    I enjoy hiking, playing guitar, and reading science fiction novels.

    • Hiking: I love exploring nature and challenging myself physically.

    • Playing guitar: I find it relaxing and enjoy learning new songs.

    • Reading science fiction novels: It allows me to escape into imaginative worlds and stimulates my creativity.

  • Answered by AI
  • Q4. 4. What are you passionate about?
  • Ans. 

    I am passionate about solving complex problems and creating innovative software solutions.

    • I enjoy tackling challenging coding problems and finding efficient solutions.

    • I am constantly learning and staying up-to-date with the latest technologies and programming languages.

    • I love collaborating with a team to brainstorm ideas and develop creative software solutions.

    • I am passionate about creating user-friendly and intuitive ...

  • Answered by AI
  • Q5. 5. The difference between hard work and smart work with an example.
  • Ans. 

    Hard work is putting in a lot of effort, while smart work is finding efficient ways to achieve the same result.

    • Hard work involves working long hours and putting in a lot of physical or mental effort.

    • Smart work involves finding innovative and efficient ways to accomplish tasks.

    • An example of hard work is studying for hours to prepare for an exam.

    • An example of smart work is using study techniques like spaced repetition to...

  • Answered by AI
  • Q6. 6. The problems faced by a person working in a team during my online internship and how would can you solve those problems if you were the team leader.
  • Ans. 

    The problems faced by a person working in a team during an online internship and how to solve them as a team leader.

    • Communication issues due to lack of face-to-face interaction

    • Difficulties in coordinating tasks and deadlines

    • Challenges in building trust and rapport among team members

    • Technical difficulties and connectivity issues

    • Misalignment of goals and expectations

    • Lack of accountability and responsibility

  • Answered by AI
  • Q7. 7. Tell me in brief about yourself and why should we select you?
  • Ans. 

    I am a highly skilled software engineer with a strong background in programming and problem-solving. I have a passion for creating efficient and innovative solutions.

    • I have a Bachelor's degree in Computer Science and extensive experience in software development.

    • I am proficient in multiple programming languages such as Java, C++, and Python.

    • I have a proven track record of successfully delivering complex projects on time...

  • Answered by AI
  • Q8. 8. If not engineering then what?
  • Ans. 

    I would have pursued a career in music.

    • I have been playing the guitar for over 10 years.

    • I have performed at local gigs and events.

    • I enjoy writing and composing my own music.

  • Answered by AI
  • Q9. 9. Asked about past Internships if any and projects on my resume.

Interview Preparation Tips

Topics to prepare for Bounteous x Accolite Software Engineer interview:
  • DSA: Arrays, Linked List, Trees
  • DP and Trees can also be asked s
Interview preparation tips for other job seekers - LeetCode is good for Practicing DSA questions.

Also, be confident and fluent while answering all the questions. Separately prepare for the HR round as well

Skills evaluated in this interview

Bounteous x Accolite interview questions for designations

 Senior Software Engineer

 (29)

 Associate Software Engineer

 (3)

 Software Testing Engineer

 (2)

 Software Development Engineer

 (1)

 Senior Software Engineer 2

 (1)

 Software Engineer Level 1

 (1)

 Software Developer

 (25)

 Software Analyst

 (1)

Round 1 - Aptitude Test 

Mcqs cs fundamentals

Round 2 - Coding Test 

Medium level coding question

Round 3 - Technical 

(1 Question)

  • Q1. Cs fundamentals, coding
Round 4 - Technical 

(1 Question)

  • Q1. Projects, system design
Round 5 - HR 

(1 Question)

  • Q1. Strengths, weakness, salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Cs fundamentals, coding, projects prepare on these. Medium level interviews oops java coding DSA linked list ,trees ,sorting. Basic coding knowledge, system design basics , projects discussion

Get interview-ready with Top Bounteous x Accolite Interview Questions

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 Resume 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
5
Excellent
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 Resume tips
Round 2 - HR 

(3 Questions)

  • Q1. Few questions from HR side
  • Q2. Why should we hire you
  • Q3. Why are you looking for this company

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be prepared . And all the best . Be prepared with DSA
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 Resume tips
Round 2 - Coding Test 

Consists of OS,DBMS,OOPS,CN + 1 coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Was Asked 3 leetcode medium questions
  • Q2. Later was asked about OOPS and DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Hard, Stay Fit. Be positive. Do leetcode consistently and try to give leetcode weekly contest.

I applied via Great Learning and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

20 MCQs were asked on eduthrill portal related to the technology I applied for.

Round 2 - Coding Test 

2 coding questions were asked. You can have whatever language you want from the list of languages they offer.

Round 3 - Technical 

(2 Questions)

  • Q1. Coding question: Given a string, find the number of occurences of each character.
  • Ans. 

    Count the number of occurrences of each character in a given string.

    • Create a dictionary to store the count of each character.

    • Iterate through the string and update the count in the dictionary.

    • Return the dictionary with character count.

  • Answered by AI
  • Q2. Coding question: Implement Merge Sort
  • Ans. 

    Merge Sort is a divide-and-conquer algorithm that recursively divides an array into two halves, sorts them, and then merges them.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. I was asked to give a brief Introduction!
  • Q2. Why do you want to join Accolite Digital?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in technical discussion and explain your approach thoroughly by typing in a text file. Explain cornet cases and don't jump to the most optimized solution directly.
In HR discussion, be engaged. Do your research beforehand, and ask all your doubts.

Skills evaluated in this interview

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

Some of the top questions asked at the Bounteous x Accolite Software Engineer 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 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.

Recently Viewed

SALARIES

Happiest Minds Technologies

INTERVIEWS

JSW Steel

No Interviews

INTERVIEWS

Bounteous x Accolite

No Interviews

SALARIES

K Raheja Corp

INTERVIEWS

JSW Steel

No Interviews

INTERVIEWS

JSW Steel

No Interviews

INTERVIEWS

Synechron

No Interviews

INTERVIEWS

K Raheja Corp

No Interviews

JOBS

9 to 6 Management Consultants

No Jobs

SALARIES

Happiest Minds Technologies

Tell us how to improve this page.

Bounteous x Accolite Software Engineer Interview Process

based on 22 interviews

5 Interview rounds

  • Technical Round - 1
  • Coding Test Round
  • Technical Round - 2
  • Technical Round - 3
  • HR Round
View more
Bounteous x Accolite Software Engineer Salary
based on 564 salaries
₹5 L/yr - ₹14.6 L/yr
8% more than the average Software Engineer Salary in India
View more details

Bounteous x Accolite Software Engineer Reviews and Ratings

based on 80 reviews

3.2/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.1

Salary

3.2

Job security

3.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 80 Reviews and Ratings
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