I applied through a staffing agency. The process took 2 weeks. I interviewed at Bloomberg in Aug 2016
Interview
Interviewer was cool and honest, I logged in hackerrank and interviewer called me on time and posted query on hacker rack, I had written the program but I was asked to improve the performance of the program but I had written by dividing the array howerver interviewer was expecting another way and I got rejected.
Interview questions [1]
Question 1
Given an array like [-1, 2, 3, 5, 4, 6] and it should print the 3 that is order of the array is equal to array element
I applied through a recruiter. The process took 1 day. I interviewed at Bloomberg (New York, NY) in Jul 2016
Interview
More specifically, this was for the role of NDIS Senior Software Developer. I received a HackerRank challenge with 3 questions and a 90 minute limit. The input arguments to the questions questions were worded in a misleading way, and I had to use trial-and-error to determine the correct input and/or output data types. I did fairly well as determined by the number and percentage of passing tests, but I received a rejection email anyway.
Interview questions [3]
Question 1
Given a positive integer N, write a function to return a list of the first N fibonacci numbers in order. For example, if N=5, the output list is 0 1 1 2 3.
GIven a list of strings, return a list of strings of equal length. For each input string, if it is an IPv4 address, output "IPv4". If an IPv6 address, output "IPv6". If neither, output "Neither".
Given a list of integers A and an integer k, return the number of unique pairs of integers in A that sum to k. For example, if A=[1 2 5 5 10 8 2] and k=10, the answer is 2, arrived as 5+5 or 2+8. There were 15 tests for this question, with at least the last two timing out, given that the implementation was not as efficient as possible.
I applied through an employee referral. The process took 2 weeks. I interviewed at Bloomberg (New York, NY) in Jul 2016
Interview
First a phone screen with live coding on Hackerrank. The onsite consisted of two rounds of technical interviews. Each round had two interviewers which asked questions in turn and again live coding on Hackerrank. Additional rounds with group managers if the previous ones went well.
Interview questions [1]
Question 1
Get the kth element of two sorted array. Can you do better than linear time complexity?