I applied through a staffing agency. The process took 3 weeks. I interviewed at CoinDCX in Jun 2024
Interview
The R1 interview was re-scheduled several times. It covered fundamental topics like Flutter, object-oriented programming (OOP), and basic data structures with straightforward questions. No idea why he rejected. Overall okish experience.
Implement fix size queue using arrays. Remove the element from last and push each element and update the first element with number pushed.
Eg. Given array [ 3,4,2,7,8 ] push a number 0. Resultant array [0,3,4,2,7]