Tip 1 : Always check online for programming topics frequently asked in MathWorks interviews and practice them accordingly (Linked List, Stack, and Queue to be kept on priority).
Tip 2 : Make sure to be very good in at least one programming language (Excluding Python)
Tip 3 : Go through all your projects in depth which you might have done in past.
Tip 1 : Always keep your resume precise and avoid mentioning everything you know. Always try to add those topics and skills in your resume in which you are very confident (as in an interview they might grill you on those topics).
Tip 2 : Select only 2-3 major projects to add, which will justify your skillset which you might have added in your resume under the skills section.
The timing was around 12 noon.
Hackerrank environment was nice things were easily accessible.
The test included 52 MCQS and 2 Programming Questions.
They have given a conjugate symmetric function whose Fourier transform was asked. (Learn)
Tip 1 : Read Signal and Systems
Tip 2 : Practice questions related to conjugate symmetry.
Find Z transform of a given LTI system.
Tip 1 : read Z transform in signals and system and their properties.
The timing was morning
In GD they have asked to discuss the topic of Working alone Vs Working in a Team (Pros and Cons).
the timing was around 11 in the morning.
The HR round was online face to face like other rounds.
The questions in the HR round were very general
Tell me about yourself.
Tip 1 : Don't start with your name as they already know that.
Tip 2 : Go slow do not be in a hurry.
Tip 3 : try to include your educational background as well.
What is your biggest achievement so far? and many other variations of the same question.
Tip 1 : Do not fake! Be yourself. Bluffing during the HR interview should be avoided at all costs.
Tip 2 : Answer to the point and while answering, be honest and truthful.
This round was a Managerial round, and It happened around 1 noon.
This round will be taken by one of the managers in the Engineering Development Group in MathWorks.
The questions in this round will be similar to the HR round but questions will be more about your role in the company, and what you understand about the EDG (Engineering Development Group) program.
What do you understand by the EDG and what do we do here in EDG in MathWorks?
Tip 1 : Make sure to attend the pre-placement talk round and go to the MathWorks website to know in which area the company works.
Tip 2 : Try to make your answers crisp and to the point as managers will be taking this round.
This was the Technical round that happened around 2 the noon,
The questions in this round were related to my skills and the topics I have mentioned in my resume.
Some part of the interview was around my projects as well, after covering 1 hour of the technical interview they have asked me 2 programming questions.



getSize: Returns an integer. Gets the current size of the stack
isEmpty: Returns a boolean. Gets whether the stack is empty
push: Returns nothing. Accepts an integer. Puts that integer at the top of the stack
pop: Returns nothing. Removes the top element of the stack. It does nothing if the stack is empty.
getTop: Returns an integer. Gets the top element of the stack. Returns -1 if the stack is empty
I started with building the stack with the help of a linked list as this was one of the questions which I have practiced a day before.
and make sure to keep on explaining your code to the recruiter while writing your code.
I started with making a temporary node and then proceeded with making a linked list and also made the push and pop functions separately to build a stack.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?