I applied online. The process took 1 day. I interviewed at athenahealth in Jan 2022
Interview
1st Round - easy array problem, an array is given, you have to check if it is sorted or not, if sorted return true else check if you can swap any number with it to make it sorted, we can do at most once swap only. if even after swapping array is unsorted return false.
Asked to explain Rabin Karp, KMP algorithms and how Red black tree works.
In the end, java questions were asked like internal working of hashmap, difference between volatile and atomic integer, how to make class immutable, wait vs join, what are future objects. what is patch request in REST, etc
Interview questions [1]
Question 1
easy array problem, an array is given, you have to check if it is sorted or not, if sorted return true else check if you can swap any number with it to make it sorted, we can do at most once swap only. if even after swapping array is unsorted return false.