Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Best of Breed Software Solutions Team. If you also belong to the team, you can get access from here

Best of Breed Software Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Best of Breed Software Solutions Interview Questions and Answers

Updated 4 Feb 2022

Best of Breed Software Solutions Interview Experiences

Popular Designations

3 interviews found

I was interviewed before Feb 2021.

Round 1 - Coding Test 

Basic Java Multiple choice Questions and few coding problems

Round 2 - Technical 

(1 Question)

  • Q1. They will ask to explain the coding part and also ask you to write some coding and SQL.
Round 3 - HR 

(1 Question)

  • Q1. Standard questions that is to be found in any HR round

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through in your basics and remember to be polite

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview Questionnaire 

2 Questions

  • Q1. Generally the questions asked are " Are you ready to work, what is your commitment to work, willing to travel etc. They do not ask question that will put you in uncomfortable situation. They want to select...
  • Q2. How will you rate yourself ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be ready to accept responsibilities

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

I applied via Referral and was interviewed before Feb 2021. There were 3 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 - Coding Test 

Mixed programming language test bases on requirements

Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.
  • Q3. Why should we hire you?

Interview Preparation Tips

Topics to prepare for Best of Breed Software Solutions Application Support Executive interview:
  • Java
  • Javascript
  • SQL
  • PLSQL
  • JSP
Interview preparation tips for other job seekers - Need atleast some basic knowledge to survive

Application Support Executive Interview Questions asked at other Companies

Q1. What about social media?
View answer (1)

Interview questions from similar companies

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They just gave me an assessment with a few questions to test my subject knowledge

Round 2 - One-on-one 

(1 Question)

  • Q1. They asked me all the general questions and a few technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - As long as you are updated in your field of study, you will crack it.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
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 

(2 Questions)

  • Q1. What is a pointer to pointer
  • Ans. 

    A pointer to pointer is a variable that stores the memory address of another pointer variable.

    • It is used to create dynamic data structures like linked lists and trees.

    • It allows multiple levels of indirection.

    • It is denoted by ** in C and C++.

    • Example: int **ptr;

    • Example: ptr = &p; where p is a pointer variable.

  • Answered by AI
  • Q2. Class, object, inheritance, polymorphism,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on pointers,work on ds, study network analysis, learn more about the job and company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Normal question about past experience
  • Q2. When you can join and all
Round 2 - Assignment 

SQL test on Select query, insert, create

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

(2 Questions)

  • Q1. What are the main principles of the Java
  • Ans. 

    Main principles of Java include object-oriented programming, platform independence, and automatic memory management.

    • Object-oriented programming: Java is based on classes and objects, allowing for encapsulation, inheritance, and polymorphism.

    • Platform independence: Java code can run on any platform that has a Java Virtual Machine (JVM) installed.

    • Automatic memory management: Java uses garbage collection to automatically m

  • Answered by AI
  • Q2. What is the different between == and equals method
  • Ans. 

    The == operator compares the memory addresses of two objects, while the equals method compares the content of two objects.

    • The == operator is used to compare the memory addresses of two objects in Java.

    • The equals method is used to compare the content of two objects in Java.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will return false, but str1.equals(str2) will return true

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?

Best of Breed Software Solutions Interview FAQs

How many rounds are there in Best of Breed Software Solutions interview?
Best of Breed Software Solutions interview process usually has 3 rounds. The most common rounds in the Best of Breed Software Solutions interview process are Coding Test, HR and Technical.
How to prepare for Best of Breed Software Solutions 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 Best of Breed Software Solutions. The most common topics and skills that interviewers at Best of Breed Software Solutions expect are FI, Finacle CRM, Finacle Scripting, SSO and Unix Shell Scripting.
What are the top questions asked in Best of Breed Software Solutions interview?

Some of the top questions asked at the Best of Breed Software Solutions interview -

  1. They will ask to explain the coding part and also ask you to write some coding ...read more
  2. standard questions that is to be found in any HR ro...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
NexTurn Interview Questions
4.2
 • 26 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Monotype Interview Questions
3.8
 • 23 Interviews
View all

Best of Breed Software Solutions Reviews and Ratings

based on 54 reviews

3.6/5

Rating in categories

4.0

Skill development

3.6

Work-life balance

3.2

Salary

3.4

Job security

3.4

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 54 Reviews and Ratings
Software Engineer
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Support Engineer
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Oracle Database Administrator
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Best of Breed Software Solutions with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Diverse Lynx

3.8
Compare

Pitney Bowes

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