Arrise | Senior Software Engineer | Hyderabad
Summary
I interviewed at Arrise for a Senior Software Engineer role in Hyderabad. I faced two technical questions, one similar to Coin Change 2 and another on multithreading, but I was unfortunately rejected.
Full Experience
I interviewed at Arrise solutions Hyderabad last summer. It was virtual.
Round 1: Simialr to coin change 2. I relied on my memory to provide the DP solution and failed to debug when my code failed
Multithreaded program in Java to print nos. from a to b with 0 included. 0,a,a+1,0,a+2,a+3......and so on
I was inebriated on single malt so was not in the best state to code it up.
Verdict: Rejected
Interview Questions (2)
Coin Change 2 (Variation)
A dynamic programming problem similar to LeetCode's Coin Change 2, focusing on finding the number of combinations that sum up to a given amount using a set of coins.
Multithreaded Number Printer with Zero Interspersing
Write a multithreaded program in Java to print numbers from 'a' to 'b', interspersing '0's such that the sequence produced is: 0, a, a+1, 0, a+2, a+3, and so on.