I applied online. I interviewed at Usthaan Integrated Solutions
Interview
Asked few question from Recursion ,DP only coding. Aplied through Linkedin, contacted by HR, and Interview scheduled round 1 was simple few questions, round 2 was coding. and required good knowledge
Interview questions [1]
Question 1
// Online C++ compiler to run C++ program online
Your are given 2 positive integer x,y
4 ops
divide(x/11) if xi muple of 11
divide(x/5) if x is multiple of 5
x-- , x++
return min no of ops required to make x=y
x=26
y=1
26-> 25->5->5->1
op-3
x->54, y->2
54->55->5->1->2
op->4
//x->25, y->30
//op->5