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 Senior Developer Interview Questions and Answers

Updated 20 Dec 2022

Bounteous x Accolite Senior Developer Interview Experiences

1 interview found

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

I applied via Hirect and was interviewed in Nov 2022. There were 5 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 - Technical 

(1 Question)

  • Q1. Java 8 question about Strings.
Round 3 - Technical 

(1 Question)

  • Q1. Diff between JDK,JVM,JRE. Equals and HashCode
  • Ans. 

    JDK is a development kit, JRE is a runtime environment, and JVM is a virtual machine. Equals compares object values, HashCode returns a unique integer for an object.

    • JDK includes JRE and development tools, while JRE includes JVM and necessary libraries

    • JVM is responsible for executing Java bytecode

    • Equals method compares the values of two objects, while == compares their references

    • HashCode method returns a unique integer ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Given 2 Nodes 1->9 ->0 1->0 Add both of them so resulting node would be 2->0->0 190 +10 = 200 Java 8 questions
  • Ans. 

    Add two linked lists representing numbers and return the resulting linked list.

    • Traverse both linked lists and add the corresponding digits, keeping track of carry.

    • Create a new node for each digit and update the carry for the next iteration.

    • If one list is longer than the other, add the remaining digits to the result.

    • Handle the case where the carry is not zero after all digits have been added.

    • Time complexity: O(max(m,n))...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Salary Expectations about the job
  • Ans. 

    I expect a competitive salary based on my experience, skills, and the responsibilities of the role.

    • I have extensive experience in senior developer roles and have consistently delivered high-quality work.

    • I have a strong understanding of various programming languages and frameworks.

    • I have successfully led and mentored teams in previous positions.

    • I am confident in my ability to contribute to the success of the company.

    • I a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on Java 8 as well as DSA(LinkedList, Stack) and learn about output questions

Skills evaluated in this interview

Senior Developer Jobs at Bounteous x Accolite

View all

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Exam was conducted on programmes. 10 questions were asked

Interview Questionnaire 

1 Question

  • Q1. Interview questions on .net technology

Interview Questionnaire 

1 Question

  • Q1. Focus mainly on Javascript basics and React or Angular.

I applied via Naukri.com and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked me questions related to my project on which i had work in my last company. And there were questions from core java , database, collections, Spring framework ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep your basic clear , You must have a clear understanding of the topics which you prepare for interview.keep your basic very strong .

I applied via Approached by Company and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Assignment 
Round 2 - Coding Test 

DSA

Round 3 - Group Discussion 

About Social changes

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Very basic questions

Interview Preparation Tips

Topics to prepare for ThoughtWorks Software Developer interview:
  • DSA
Interview preparation tips for other job seekers - Prepare DSA well and be well with Hands-on in coding

I appeared for an interview in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Mcq + Data structures questions

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array of integers, find the maximum sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Output:
    137
    Exp...
  • Ans. 

    Find the maximum sum of any contiguous subarray within an array in O(N) time complexity.

    • Use Kadane's algorithm to find the maximum sum subarray in O(N) time complexity

    • Initialize two variables: max_sum and current_sum to keep track of the maximum sum subarray

    • Iterate through the array and update current_sum by adding the current element or starting a new subarray

    • Update max_sum if current_sum is greater than max_sum

    • Return...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 70 minutes
Round difficulty - Medium

Standard System Design round

  • Q1. Design a Doctor Appointment System and provide some test cases.
Round 3 - Video Call 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Interview of DSA + OOPS + Databse(SQL query) + Operating System

  • Q1. 

    Left View of a Binary Tree

    Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

    Inpu...

  • Ans. 

    The task is to print the left view of a binary tree, which contains the nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the leftmost node at each level.

    • Use a queue to perform level order traversal.

    • Print the leftmost node at each level to get the left view of the binary tree.

  • Answered by AI
  • Q2. What is the difference between CHAR and VARCHAR2 data types in SQL?
  • Ans. 

    CHAR is fixed length while VARCHAR2 is variable length in SQL.

    • CHAR stores fixed length strings, padding with spaces if necessary.

    • VARCHAR2 stores variable length strings, not padding with spaces.

    • CHAR is faster for fixed length data, VARCHAR2 is more flexible for varying length data.

  • Answered by AI
  • Q3. What are the various types of constructors in C++?
  • Ans. 

    There are three types of constructors in C++: default constructor, parameterized constructor, and copy constructor.

    • Default constructor: Constructor with no parameters.

    • Parameterized constructor: Constructor with parameters.

    • Copy constructor: Constructor that initializes an object using another object of the same class.

    • Example: // Default constructor ClassName() {} // Parameterized constructor ClassName(int x, int y) :...

  • Answered by AI
  • Q4. What is the difference between overloading and overriding?
  • Ans. 

    Overloading is having multiple methods in the same class with the same name but different parameters, while overriding is implementing a method in a subclass that is already defined in the superclass.

    • Overloading involves multiple methods with the same name but different parameters.

    • Overriding involves implementing a method in a subclass that is already defined in the superclass.

    • Overloading is resolved at compile time ba...

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Hr round - normal hr questions + situational 

Thoughtworks community discussion

  • Q1. Why should we hire you?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 7 CGPAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.

Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Tip 3 : Do at-least 2 good projects and you must know every bit of them.


 

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.

Tip 2 : Every skill must be mentioned.

Tip 3 : Focus on skills, projects and experiences more.


 

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Code pairing round - you will be given story where you need to add one API to the share repository. It is a simple problem but needs good understanding of the shared code. You should follow clean code pri...
  • Q2. Add one API to the existing repository
  • Ans. 

    The API allows users to retrieve weather data based on location.

    • Create a new endpoint that accepts a location parameter

    • Use a weather API service to fetch weather data based on the location

    • Return the weather data in a standardized format, such as JSON

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Project you are working on, do some changes to the project, how well you understand the project
  • Q2. Add some feature to the project
  • Ans. 

    The feature added to the project is a user authentication system.

    • Implement a login page with username and password fields.

    • Create a database table to store user credentials.

    • Hash and salt passwords for secure storage.

    • Implement password reset functionality.

    • Add user roles and permissions for access control.

  • Answered by AI

Skills evaluated in this interview

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

Hackerrank coding round.

Round 2 - Technical 

(1 Question)

  • Q1. Questions and coding testing your OOPS knowledge
Round 3 - Technical 

(1 Question)

  • Q1. Every tech stack, SQL, OOPS, JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - Be familiar with designing and writing better code follwing OOPS, YAGNI,DRY principles.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Test will be in hacker rank there would be a difficulty level between easy to medium

Round 2 - Technical 

(1 Question)

  • Q1. Question will be from data structure and easy to medium level of the programming laanguage question
Round 3 - HR 

(1 Question)

  • Q1. This is just to check your english ability

Bounteous x Accolite Interview FAQs

How many rounds are there in Bounteous x Accolite Senior Developer interview?
Bounteous x Accolite interview process usually has 5 rounds. The most common rounds in the Bounteous x Accolite interview process are Technical, Resume Shortlist and HR.
How to prepare for Bounteous x Accolite Senior 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 Javascript, XSLT, JMS, Open Source and SOAP.
What are the top questions asked in Bounteous x Accolite Senior Developer interview?

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

  1. Given 2 Nodes 1->9 ->0 1->0 Add both of them so resulting node would be 2->0->0...read more
  2. Diff between JDK,JVM,JRE. Equals and HashC...read more
  3. Java 8 question about Strin...read more

Tell us how to improve this page.

Bounteous x Accolite Senior Developer Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more
Bounteous x Accolite Senior Developer Salary
based on 5 salaries
₹16 L/yr - ₹28 L/yr
46% more than the average Senior Developer Salary in India
View more details

Bounteous x Accolite Senior Developer Reviews and Ratings

based on 3 reviews

2.6/5

Rating in categories

2.2

Skill development

3.0

Work-life balance

2.3

Salary

3.1

Job security

2.6

Company culture

1.4

Promotions

2.6

Work satisfaction

Explore 3 Reviews and Ratings
Developer / Senior Developer / Lead - .Net

Pune,

Bangalore / Bengaluru

6-12 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
1.5k salaries
unlock blur

₹6.9 L/yr - ₹29 L/yr

Software Engineer
565 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Associate Technical Delivery Manager
436 salaries
unlock blur

₹11 L/yr - ₹40 L/yr

Senior Test Engineer
206 salaries
unlock blur

₹4 L/yr - ₹17 L/yr

Technical Delivery Manager
146 salaries
unlock blur

₹16 L/yr - ₹60.4 L/yr

Explore more salaries
Compare Bounteous x Accolite with

Xoriant

4.1
Compare

CitiusTech

3.4
Compare

HTC Global Services

3.6
Compare

HERE Technologies

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