I applied through an employee referral. The process took 2 weeks. I interviewed at Mortgage Magic (Dhaka) in Jan 2025
Interview
they ask me about basic front end and also some question on data structure and algorithom spacally tree related question.ask about pointer and use of it and deep drive on it.overall the interview process wes well decorated
Interview questions [1]
Question 1
What will be the output produced by the following C code:
int main()
{
int array[5][5];
printf("%d",( (array == *array) && (*array == array[0]) ));
return 0;
}