Upload Button Icon Add office photos

Filter interviews by

Bloomberg SDE (Software Development Engineer) Interview Questions and Answers

Updated 29 Oct 2022

Bloomberg SDE (Software Development Engineer) Interview Experiences

1 interview found

I applied via Indeed and was interviewed in Apr 2022. 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 

(2 Questions)

  • Q1. Remove element from Linked List
  • Ans. 

    Removing an element from a linked list involves updating the pointers of the previous and next nodes.

    • Find the node to be removed by traversing the linked list.

    • Update the pointers of the previous and next nodes to skip the node to be removed.

    • Free the memory occupied by the removed node.

  • Answered by AI
  • Q2. Two city scheduling, edge cases were also asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for edge cases as well, for all the questions

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Feb 2023. 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 - Coding Test 

60 mins, 2 Coding questions general Leetcode medium ones

Round 3 - One-on-one 

(2 Questions)

  • Q1. Alien Dictionary with slight modification to sort list of words with some random order
  • Ans. 

    Sorting a list of words with a random order using an alien dictionary

    • Create a graph with nodes as characters and edges as the order of characters in words

    • Topologically sort the graph to get the correct order of characters

    • Use the order to sort the list of words

  • Answered by AI
  • Q2. Leetcode easy question based on math and arrays
Round 4 - One-on-one 

(1 Question)

  • Q1. Simple Binary search with some edge case handling on a straight forward problem
Round 5 - One-on-one 

(1 Question)

  • Q1. Hiring Manager round, discussion went on LP and one technical question based on stacks implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode mediums are a simlpe yet effective way to make most out of the technical discussions and dont be disheartened on rejections even in the very later stage of the process. This is something not in your control keep your head up high and evolve !

Skills evaluated in this interview

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 - Aptitude Test 

They ask us 40 mcqs and 2 coding questions. Mcqs are from networking,OS,DS,Ada and also have questions of general aptitude like direction,blood relation. Coding question are not easy both the questions are from Graph.

Round 3 - Technical 

(2 Questions)

  • Q1. Subnetting, Supernetting,IPv4,Linkedlist,
  • Q2. Find unique character from a string and optimize it
  • Ans. 

    Find unique character from a string and optimize it

    • Use a hash table to store the frequency of each character in the string

    • Iterate through the hash table to find the character with frequency 1

    • If there are multiple characters with frequency 1, return the first one

    • Optimization: Stop iterating through the hash table once a character with frequency 1 is found

  • Answered by AI
Round 4 - Case Study 

They give me a scenario like you have to go from place A to place B then what should You consider.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Data Structure and Ada. After coding student must have knowledge of Operating Systems and Networking

Skills evaluated in this interview

Round 1 - Aptitude Test 

NA

Round 2 - Technical 

(1 Question)

  • Q1. Questions based on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - hdhevwjebejehebdbdjdbejejejejejeb

Interview Questionnaire 

2 Questions

  • Q1. Full about python
  • Q2. What is recursion?
  • Ans. 

    Recursion is a programming technique where a function calls itself to solve a problem.

    • Recursion involves breaking down a problem into smaller subproblems and solving them recursively.

    • It requires a base case to stop the recursion and prevent infinite loops.

    • Recursion can be used to solve problems like traversing trees and sorting algorithms.

    • Examples of recursive functions include factorial, Fibonacci sequence, and binary...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare well with one oops concept

I applied via Campus Placement and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. WHAT IS ETHERENT,SWITCH,HUB?
  • Ans. 

    Ethernet is a networking technology used for LANs. Switches and hubs are devices used to connect multiple devices to a network.

    • Ethernet is a protocol used for communication between devices on a network.

    • A switch is a networking device that connects devices on a network and directs data to its intended recipient.

    • A hub is a networking device that connects devices on a network and broadcasts data to all connected devices.

    • S...

  • Answered by AI
  • Q2. TYPES OF JOIN IN DBMS
  • Ans. 

    Types of join in DBMS

    • Inner join: returns only the matching rows from both tables

    • Left join: returns all the rows from the left table and matching rows from the right table

    • Right join: returns all the rows from the right table and matching rows from the left table

    • Full outer join: returns all the rows from both tables, with NULL values in the columns where there is no match

    • Cross join: returns the Cartesian product of both

  • Answered by AI
  • Q3. PATTERN CODING PROBLEM
  • Ans. 

    Write a pattern coding problem using an array of strings.

    • Use loops to iterate through the array and print the pattern.

    • The pattern can be any shape or design.

    • Make sure to use proper spacing and formatting.

  • Answered by AI
  • Q4. BASIC QUERY

Interview Preparation Tips

Interview preparation tips for other job seekers - IT WAS EASY AND GOOD

Skills evaluated in this interview

I was interviewed in Aug 2021.

Interview Questionnaire 

1 Question

  • Q1. Os c c++ oops

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well basic topics
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 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 - Coding Test 

2 CODING QUESTIONS IN ONE HOIR TIME DURATION

Round 3 - Technical 

(2 Questions)

  • Q1. 1.BIT MANIPULATION 2. BASIC DYNAMIC PROGRAMMING QUESTION TOTAL TIME DURATION - 1HR
  • Ans. 

    Interview question on bit manipulation and basic dynamic programming

    • Be familiar with bitwise operators like AND, OR, XOR, and bit shifting

    • Understand how to use bit manipulation to solve problems like counting set bits or checking if a number is a power of 2

    • For dynamic programming, break down the problem into smaller subproblems and use memoization or tabulation to avoid redundant calculations

    • Practice solving coding pro...

  • Answered by AI
  • Q2. BASIC- OOPS, DBMS, COMPUTER NETWORKING QUESTIONS.

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE STANDARD DATA STRUCTURES QUESTIONS.
FOCUS ON BEST APPROACH

Interview Preparation Tips

Round: Test
Experience: The techinical aptitude test was above average level and had conceptual problem . Some good questions were there from C,C++.
persistent basically concentrates on every subject and now a days also concentrate more on software engineering.
C.C++,OS,DBMS,Computer Architecture,Networking and some microprocessor part was covered in those 60 quesn of technical.
Then 20 min for programming .Immediately after that 10 min for essay writing.
Tips: Most of the times we are prepared for interview but not for technica aptitude .
The test requires sound basic knowledge of each field ,do prepare software engg questions well .At least 45+ correct questions would give chance of next round if code done is correct .
The code is evaluated only if you qualify in tech apti.
File handling program may be tough and tricky one,rest all are easy.
Duration: 90 minutes
Total Questions: 60

Round: Technical Interview
Experience: tech 1 :
my project was in AI so related questions first ,he wanted a basic intro of all.
after seeing resume and mentioning of hackerrank and seeing all achievements started of the
Interviwer : So you are hacker ?
S : No not at all hacker i practise prog on hackerank.
I : so what are types of hackers
S : Black hat,white hat.
I : so can they be potential terrorsit
S :yes at times with wrong intention they are potential terrorist
asked me to explain eg and did it ,satisfied .
I : so introduce yourself
I : so tell me fuzzy logic
told him
I : tell me algorithms you know some brief intro
S : told him about A* algo,fleming bird algo,salesperson problem .(took lot of time)
I : explain me this project
S : told him some of conditions as all were not possible ,some talk on optimization of length of code etc.
I : So tell me about programming sites
S : told them all about codechef,hackerrank,spoj.
I : Now say i have char ch='n' my name starts with n say how will it get stored
I : so what all microprocessor has
I : how many type of interrupts , and in detail eg (I wasnt sure ,gave eg but told that i was not sure)
I : implement circular link list
I : insert element in circular link list.
I : constant variables,volatile variables.
I : What are stack and queue and thier application.
I : where are variables stored (dyanmic allocation and static with the global and static varoable he wanted)
I : now here comes puzzle from nowhere : 3 cans each full with capacity 3,5,7 liter make it 5,5,5
(I thought there might be some way and kept talking every moment ,is there large supply of water ,can we spill it all he denied)
so i couldnt do it then he asked whether i need another vessel and asked how much quantity ,i told 5.
he said consider it ,did it in seconds and so he again said that was way easy now do original problem .
I tried a lot he kept talking on mobile for 5 min (worst part).
I : so he asked me again some question on queue ,its implementation
I : then went to OS ,priority queue scheduling basic idea and code.
So i am finished with you .said thank you sir .

Tips: Yes everyone is tense for firts round ,but the interviewer are very friendly ,almost all of them .
They ask technical questions and check if you can go out of box in tech as well as thinking aspect.
Continous interaction with interviewer is must .

Round: Technical Interview
Experience: TECH 2:
I : so shivshankar introduce yourself.
I : What are all these sites and ranks ,explained him in detail .
I : area of intrest asked i told DS.
I : so find out middle of link list when no of nodes are not known.(did it) was happy for explanaiton.
I : reverse a link list i did interative and was expecting him to say for recurrsive ,again did it .
I : gave a array problem easy one
I : another probelm where he incremented array name ,so it was lvalue error (he gave no expression).
I : gave structure question .
I : asked for another resume and threw a paper with apti quesn on it ,did that just a hour before only .
I : asked about higher studies and why mathematics specialization only?
I : asked virtual function description and abstract class too .
I : graph implementation , dijkastras algo basic explanation ,if code is known then code too.
I : asked family background


Tips: This will be purely on data strcutures and algorithm if area of intrest is DS and algo ,if not it will be a mix of algo plus any other your favourite subject .
Many may get This round directly ,so if you perform in this round you go directly to HR.
so you face only one interview then 2.

Round: HR Interview
Experience: HR round :
In my case HR was bit diffrent ,all candidate had pure HR questions ,mine this round also went technical + HR with two diffrent interviewers.
HR1 : so shivshankar right ! introduce yourself .
HR1 : how was your day ,and here comes technical part i was again told to tell link list problem solutions all of them .
HR1 : what was your apti program how you implemented it ,told him all tricks and full method (very happy by explantion around 10 min explantion).
HR1 : some structure and union related questions ,like size of structure ,diffrence,classes struct diff etc.
HR1 : what you know about persi ,tell him somethings apart from ppt will be good ,and have contact in very company which you are giving.
HR1 : further education intrest ,why in that field.
HR1 : any time in engg disaggrement of decesion regarding project?
HR1 : any questions for me !! i asked about project for BE which persi sponsors.

now switched my interview to his friend
HR2 : again link list reverse question and some discussion on it .
HR2 : hashing discussion and collision resolving technique on hashing.
HR2 : that collision point again repeat and how you resolved it and some i2i discussion .
Hr2 : what all was in your project of i2i .
HR2 : queue application asked again .
HR2 : BE project basic idea ,platform and implementation idea .
HR2 : Why not further education
HR2 : family background .
he said it was nice talking to you ,dont look back start preparing for MPC we will meet soon in persistent.
Came forward to shake hands.

Tips: HR guys are very cool . Mostly candidates dont get rejected from HR. If selected for HR can assume that you are selected.
They co operate a lot and expect truth only and some info must be known about company.

General Tips: Be technically strong and have confidence ,all good will follow.
Skill Tips: Atleast one of C++ or java must be good with basics. Rest all try to make code for every problem of operating system and do geeksforgeeks.
Skills: Algorithm, Data Structures, Java, C++, Operating System, DBMS
College Name: Government College Of Engineering, Aurangabad
Motivation: This is core software company with lot of innovation ,thats all a programmer wants

I applied via campus placement at Institute of Technology, Banaras Hindu University and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

1 hr, 2 questions, Arrays prefix sum and slide window, Greedy and DP.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Basic Intro 2. Question regarding the greedy approach to filling gaps in the elements. You have been provided with 3 arguments of n, m, o, you can use at most those numbers of times "m", "n" and "o" an...

Interview Preparation Tips

Topics to prepare for Amazon SDE (Software Development Engineer) interview:
  • DSA
Interview preparation tips for other job seekers - Be confident and Share the thinking pattern with the interviewer

Bloomberg Interview FAQs

How many rounds are there in Bloomberg SDE (Software Development Engineer) interview?
Bloomberg interview process usually has 2 rounds. The most common rounds in the Bloomberg interview process are Resume Shortlist and Technical.
What are the top questions asked in Bloomberg SDE (Software Development Engineer) interview?

Some of the top questions asked at the Bloomberg SDE (Software Development Engineer) interview -

  1. Remove element from Linked L...read more
  2. Two city scheduling, edge cases were also as...read more

Tell us how to improve this page.

Senior Software Engineer
11 salaries
unlock blur

₹29.4 L/yr - ₹106.6 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

Analyst
6 salaries
unlock blur

₹15 L/yr - ₹23 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