Upload Button Icon Add office photos

Filter interviews by

Bloomberg Senior Software Engineer Interview Questions and Answers

Updated 9 Feb 2024

Bloomberg Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

It was a very simple coding test and the interviewer was focused on understanding the tradeoffs and time complexity analysis rather than the solution itself. And also asked a lot of questions of the hashmap internals, ArrayList implementation which was off track to what the interview was for.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explain about the services in android
  • Ans. 

    Services in Android are components that run in the background to perform long-running operations.

    • Services can be used to play music in the background while the user interacts with other apps.

    • They can also be used to download files from the internet even when the app is not in the foreground.

    • Services can run indefinitely or be scheduled to run at specific times.

    • They can communicate with other components using broadcasts

  • Answered by AI
  • Q2. MVVM architecture

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Moderate questions
  • Q2. Asynchronous coding, async, mvc, sql, missing number program
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Coding and behavioral questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Make Kanbon board in react live coding
  • Ans. 

    Create a Kanban board in React during live coding interview

    • Use React components to represent different sections of the Kanban board (e.g. To Do, In Progress, Done)

    • Implement drag and drop functionality for moving tasks between sections

    • Utilize state management (e.g. useState) to track the tasks and their statuses

    • Style the board using CSS or a UI library like Material-UI

  • Answered by AI
  • Q2. Write unit testing for the same
  • Ans. 

    Unit testing is a software testing method where individual units or components of a software are tested in isolation.

    • Identify the unit to be tested

    • Write test cases to cover different scenarios

    • Use testing frameworks like JUnit or NUnit

    • Mock external dependencies for isolated testing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Front end development

Skills evaluated in this interview

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

(1 Question)

  • Q1. Previous role related technical questions
Round 2 - Technical 

(1 Question)

  • Q1. Same as round 1 from onsite team
Round 3 - HR 

(1 Question)

  • Q1. General HR questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I applied via Referral and was interviewed in Jan 2023. There were 2 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 

(5 Questions)

  • Q1. Java8 Features Questions about Stream functions and Lambda Expression
  • Q2. Microservices & Springboot (Sample code and Annotations)
  • Q3. DB Query to find duplicates in a table, keeping first duplicate in answer.
  • Ans. 

    DB query to find duplicates in a table, keeping first duplicate in answer.

    • Use GROUP BY clause to group the records by the column(s) that may have duplicates

    • Use HAVING clause to filter out groups with only one record

    • Use MIN or MAX function to select the first record in each group

    • Example: SELECT MIN(id), name, COUNT(*) FROM table GROUP BY name HAVING COUNT(*) > 1

  • Answered by AI
  • Q4. Springboot Profiles, Actuators and Response mapping.
  • Q5. Code to map Employee Object from List to Hashmap using Stream API functions.
  • Ans. 

    Code to map Employee Object from List to Hashmap using Stream API functions.

    • Create a List of Employee objects

    • Use stream() method to convert List to Stream

    • Use collect() method to convert Stream to HashMap

    • Use Collectors.toMap() method to create HashMap

    • Pass key and value mapping functions to toMap() method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - For few days got no response from HR, even after interview went very good.
- After a week following with HR, He mentioned not selected.
- Waste of time and effort.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. As python developer, basic questions asked and all concepts are to be explained to interviewwr with example
Round 3 - Technical 

(1 Question)

  • Q1. Sql and python interview questions to solve in code editor.
Round 4 - Technical 

(1 Question)

  • Q1. Related projects and my role into it
Round 5 - HR 

(1 Question)

  • Q1. HR explained about company policies and salary negotiation and notice period related things

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics of python and SQL and coding questions on python and SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2021.

Round 1 - Aptitude Test 

10 min aptitude test

Round 2 - Coding Test 

3 coding problem to solve on hackerrank

Round 3 - Coding Test 

Multiple choice test

Round 4 - Technical 

(1 Question)

  • Q1. Technical interview
Round 5 - HR 

(1 Question)

  • Q1. HR discussion and salary negotiations

I applied via Naukri.com and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(10 Questions)

  • Q1. What is Difference between let var const,
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scoping rules and behaviors.

    • let and const were introduced in ES6, while var has been around since the beginning of JavaScript.

    • let and const are block-scoped, while var is function-scoped.

    • Variables declared with const cannot be reassigned, while let and var can be.

    • const variables must be initialized when they are declared, while...

  • Answered by AI
  • Q2. Sql and Mongo related questions such as fetch 3rd highest salary from employee table?
  • Q3. What are the scope in javascript, describe each one.
  • Ans. 

    Scopes in JavaScript determine the accessibility of variables and functions.

    • Global scope: variables and functions declared outside any function are accessible globally

    • Local scope: variables and functions declared inside a function are only accessible within that function

    • Block scope: variables declared with let and const are only accessible within the block they are declared in

    • Function scope: variables declared with var...

  • Answered by AI
  • Q4. What is callback hell, what is Promises?
  • Ans. 

    Callback hell is a situation where nested callbacks make code unreadable. Promises are a solution to this problem.

    • Callback hell occurs when there are too many nested callbacks in asynchronous code

    • It makes the code difficult to read and maintain

    • Promises are a way to handle asynchronous operations without nested callbacks

    • Promises can be used to chain multiple asynchronous operations together

    • Promises have a resolve and re...

  • Answered by AI
  • Q5. What is express js and why it is used in web apps and what is body parser
  • Ans. 

    Express.js is a popular Node.js web framework used for building web applications. Body-parser is a middleware used to parse incoming request bodies.

    • Express.js is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.

    • It provides a way to handle HTTP requests and responses, routing, middleware, and more.

    • Body-parser is a middleware used to parse inc...

  • Answered by AI
  • Q6. What are arrow functions
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • They have a shorter syntax than traditional function expressions.

    • They do not have their own 'this' keyword.

    • They are not suitable for methods, constructors, or prototype methods.

    • Example: const add = (a, b) => a + b;

    • Example: const square = x => x * x;

  • Answered by AI
  • Q7. What is nodejs and difference between nodejs and javascript
  • Ans. 

    Node.js is a server-side JavaScript runtime environment.

    • Node.js is built on top of the V8 JavaScript engine from Google Chrome.

    • It allows developers to write server-side code in JavaScript.

    • Node.js has a non-blocking I/O model, making it efficient for handling large amounts of data.

    • Node.js has a vast library of modules available through npm (Node Package Manager).

  • Answered by AI
  • Q8. What is passport.js why it is used
  • Ans. 

    Passport.js is an authentication middleware for Node.js.

    • Passport.js provides a simple way to authenticate users with various authentication strategies such as local, OAuth, OpenID, etc.

    • It is highly customizable and can be integrated with any Node.js web application framework.

    • Passport.js maintains user sessions and provides a consistent API for authentication across different strategies.

    • Example: Using Passport.js with E...

  • Answered by AI
  • Q9. Difference between node and expressjs
  • Ans. 

    Node is a runtime environment for executing JavaScript code, while Express is a web application framework built on top of Node.

    • Node provides the platform for running JavaScript code outside of a web browser

    • Express is a lightweight framework that simplifies building web applications on top of Node

    • Express provides features like routing, middleware, and templating that make it easier to build web applications

    • Node and Expr...

  • Answered by AI
  • Q10. Why nodejs is single Threaded
  • Ans. 

    Node.js is single-threaded to optimize performance and simplify programming.

    • Node.js uses an event-driven, non-blocking I/O model.

    • This allows for efficient handling of multiple requests without creating new threads.

    • Node.js also uses a single event loop to manage all I/O operations.

    • This simplifies programming by eliminating the need for complex thread synchronization.

    • However, Node.js can still take advantage of multi-cor

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. A small data structures problem was given to solve
  • Q2. A small web api asked to build which includes crud operations
  • Q3. Question related to system design
  • Q4. What is Function hoisting
  • Ans. 

    Function hoisting is a JavaScript behavior where function declarations are moved to the top of their scope.

    • Function declarations are moved to the top of their scope during the compilation phase.

    • Function expressions are not hoisted.

    • Hoisting can lead to unexpected behavior and bugs if not understood properly.

  • Answered by AI
  • Q5. What is event loops and phases
  • Ans. 

    Event loop is a mechanism that allows JavaScript to perform non-blocking I/O operations.

    • Event loop is a loop that constantly checks the message queue and executes the next message if there is any.

    • Phases are the different stages of the event loop, such as timers, I/O callbacks, idle, and poll.

    • Event loop is crucial for Node.js to handle multiple requests simultaneously without blocking the main thread.

    • Example: setTimeout...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Persistent Systems Senior Software Engineer interview:
  • Nodejs
  • Javascript
  • SQL
  • MongoDB
  • REST API
  • Data Structures
Interview preparation tips for other job seekers - All the questions in the almost all the interviews will be repeatative so be prepared with theory questions. will be get many online interview question set on google.

Skills evaluated in this interview

Bloomberg Interview FAQs

How many rounds are there in Bloomberg Senior Software Engineer interview?
Bloomberg interview process usually has 1 rounds. The most common rounds in the Bloomberg interview process are Coding Test.
How to prepare for Bloomberg Senior 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 Bloomberg. The most common topics and skills that interviewers at Bloomberg expect are C++, Java and Software Engineering.

Tell us how to improve this page.

Bloomberg Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Bloomberg Senior Software Engineer Salary
based on 11 salaries
₹29.4 L/yr - ₹106.6 L/yr
300% more than the average Senior Software Engineer Salary in India
View more details

Bloomberg Senior Software Engineer Reviews and Ratings

based on 3 reviews

2.5/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.9

Salary

4.9

Job security

4.9

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
11 salaries
unlock blur

₹29.4 L/yr - ₹106.6 L/yr

Analyst
7 salaries
unlock blur

₹15 L/yr - ₹23 L/yr

Software Engineer
7 salaries
unlock blur

₹24 L/yr - ₹80 L/yr

Data Analyst
7 salaries
unlock blur

₹20 L/yr - ₹25.4 L/yr

Accounts Manager
5 salaries
unlock blur

₹22 L/yr - ₹38 L/yr

Explore more salaries
Compare Bloomberg with

Thomson Reuters

4.1
Compare

Financial Times

4.7
Compare

Forbes & Company

3.9
Compare

Morningstar

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