Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by BlueBinaries Engineering and Solutions Team. If you also belong to the team, you can get access from here
3.1

based on 111 Reviews

Filter interviews by

BlueBinaries Engineering and Solutions Senior Software Engineer Interview Questions and Answers

Updated 16 May 2024

BlueBinaries Engineering and Solutions Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Domain related questions
  • Q2. Configuration pf stack

Interview questions from similar companies

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

(2 Questions)

  • Q1. Backend Questions regarding
  • Q2. UI Questions regarding Angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. 1) OOP Concepts
  • Q2. Difference between Abstract class and interface
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any of these.

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

    • Abstract classes are used to provide a common base for multiple classes, while interfaces are used to define a contract for ...

  • Answered by AI
  • Q3. Mysql Concepts and Mysql queries
  • Q4. Logical questions on Array and String Functions in PHP
  • Q5. File handling functions such as fread, fopen, fclose etc and logical string function questions on file data.
Round 2 - Technical 

(5 Questions)

  • Q1. All Scenario based questions
  • Q2. OOP Concepts in deep
  • Ans. 

    OOP Concepts refer to the principles of Object-Oriented Programming, including encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in different ways...

  • Answered by AI
  • Q3. Software design pattern related questions
  • Q4. Small Logical programs
  • Q5. Database queries in deep
  • Ans. 

    Database queries involve retrieving, updating, and manipulating data stored in a database.

    • Database queries are used to retrieve specific data from a database based on certain criteria.

    • Queries can also be used to update existing data or insert new data into the database.

    • SQL (Structured Query Language) is commonly used to write database queries.

    • Examples of database queries include SELECT, INSERT, UPDATE, and DELETE state

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse link list
  • Q2. Count number of digits
  • Ans. 

    Count the number of digits in a given string

    • Iterate through each character in the string

    • Check if the character is a digit using isdigit() function

    • Increment a counter if the character is a digit

    • Return the final count of digits

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Apache Kafka?
  • Ans. 

    Apache Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Apache Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It allows for the publishing and subscribing to streams of records, similar to a message queue.

    • Kafka is often used for log aggregation, stream processing, event sourcing, and real-time analytics.

    • It p...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. How do you manage stress?

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

It started with basic introduction, than move ahead with Java, Spring boot question in the end, he asked one leetcode medium question based on DP . Ques : Find a minimum number of jumps required to reach the end of the array, and each index , it can jump arr[index] time at max, you need to calculate minimum number of steps required to reach at the end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Java , Spring boot and Data structures
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Hacker rank coding tesr

Round 2 - Technical 

(2 Questions)

  • Q1. Relational database queries
  • Q2. Coding Question on JavaScript
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to be injected with their dependencies rather than creating them internally.

    • Dependency injection helps to decouple the code and improve testability and maintainability.

    • It promotes loose coupling by allowing objects to depend on abstractions instead of concrete implementations.

    • There are three common types of dependency injection: constructor injection, setter ...

  • Answered by AI
  • Q2. What is store procedure
  • Ans. 

    A stored procedure is a precompiled set of SQL statements that can be executed on a database server.

    • Stored procedures are used to encapsulate and execute complex database operations.

    • They can be written in various programming languages like SQL, PL/SQL, T-SQL, etc.

    • Stored procedures can accept input parameters and return output values.

    • They can be used to improve performance by reducing network traffic and optimizing quer...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have called for Face to Face discussion interview only asked 2 question. I have given correct answer all the time he was on call an dlookig into his system and then I got to know that I am rejected ..I have told my recruiter same and written email to her. I was curious to join SH but my interview process given me very bad impression.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Current role and responsibilities
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It will be a scenario based implementation

I applied via Approached by Company and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 1 What’s functional interface and benefits. 2 Transaction uses and different propagation level.
  • Ans. 

    Functional interface is an interface with only one abstract method. Benefits include lambda expressions and improved code readability.

    • Functional interface allows for the use of lambda expressions, which can simplify code and improve readability.

    • It also enables the use of method references, which can make code more concise.

    • Functional interfaces are used extensively in Java 8's Stream API.

    • Transaction uses include ensurin...

  • Answered by AI
  • Q2. Different isolation levels in transactions labels and purpose.
  • Ans. 

    Different isolation levels in transactions and their purpose.

    • Isolation levels determine how transactions interact with each other.

    • READ UNCOMMITTED: Allows dirty reads, can cause phantom reads.

    • READ COMMITTED: Prevents dirty reads, but allows non-repeatable reads.

    • REPEATABLE READ: Prevents dirty and non-repeatable reads, but allows phantom reads.

    • SERIALIZABLE: Prevents all three types of reads, but can cause deadlock.

    • Purpo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Never give up..

Skills evaluated in this interview

BlueBinaries Engineering and Solutions Interview FAQs

How many rounds are there in BlueBinaries Engineering and Solutions Senior Software Engineer interview?
BlueBinaries Engineering and Solutions interview process usually has 1 rounds. The most common rounds in the BlueBinaries Engineering and Solutions interview process are Technical.
What are the top questions asked in BlueBinaries Engineering and Solutions Senior Software Engineer interview?

Some of the top questions asked at the BlueBinaries Engineering and Solutions Senior Software Engineer interview -

  1. Domain related questi...read more
  2. Configuration pf st...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 BlueBinaries Engineering and Solutions interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
BlueBinaries Engineering and Solutions Senior Software Engineer Salary
based on 24 salaries
₹9.3 L/yr - ₹18.5 L/yr
15% less than the average Senior Software Engineer Salary in India
View more details

BlueBinaries Engineering and Solutions Senior Software Engineer Reviews and Ratings

based on 3 reviews

3.3/5

Rating in categories

2.7

Skill development

2.9

Work-Life balance

3.6

Salary & Benefits

2.9

Job Security

2.9

Company culture

2.7

Promotions/Appraisal

2.7

Work Satisfaction

Explore 3 Reviews and Ratings
Lead Engineer
40 salaries
unlock blur

₹10.2 L/yr - ₹25.3 L/yr

System Engineer
39 salaries
unlock blur

₹4.4 L/yr - ₹16 L/yr

Senior Systems Engineer
29 salaries
unlock blur

₹6.7 L/yr - ₹16 L/yr

Software Engineer
29 salaries
unlock blur

₹4 L/yr - ₹12.5 L/yr

Senior Engineer
25 salaries
unlock blur

₹8 L/yr - ₹19 L/yr

Explore more salaries
Compare BlueBinaries Engineering and Solutions with

Tech Mahindra

3.6
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview