i
MathWorks
Filter interviews by
I applied via Campus Placement and was interviewed in Aug 2022. There were 3 interview rounds.
Math, Core CS concepts, DSA
GD on the EDG program at Mathworks
I was interviewed in Aug 2021.
Round duration - 60 minutes
Round difficulty - Medium
Timing: The test was conducted at around 6pm.
You and your friend Ninjax are engaged in a strategic game involving coins. Ninjax arranges 'N' coins in a linear sequence.
1. Each...
Determine the maximum amount you can win in a coin game by selecting coins strategically.
Start by understanding the rules of the game and the goal of maximizing winnings.
Consider the fact that you can choose either the first or last coin in each turn.
Think about how to ensure you make the best choice at each turn to guarantee the maximum win.
Examples: For the input 4 9 5 21 7, selecting coins in the order of 9 and 21 r
Given a Binary Search Tree (BST) of integers, your task is to convert it into a greater sum tree. In the greater sum tree, each node's value should be replaced with the sum...
Convert a Binary Search Tree into a Greater Sum Tree by replacing each node's value with the sum of all nodes' values greater than the current node's value.
Traverse the BST in reverse inorder (right-root-left) to visit nodes in descending order.
Keep track of the running sum of visited nodes and update each node's value with this sum.
Recursively apply the above steps to all nodes in the BST.
Example: For the input BST [4...
Tip 1 : Revision of important topics and questions is key
Tip 2 : You should have thorough knowledge of the tech stack you have used in your projects
Tip 1 : Highlight the important points in your CV. Could be some algorithm you implemented in your project or key frameworks you used.
Tip 2 : Try to have a single page resume with concise information highlighting your key achievements.
Tip 3 : Don't write anything you can't answer questions on.
I applied via Campus Placement and was interviewed before Feb 2023. There were 3 interview rounds.
Medium Leetcode problems around binary search and arrays.
The scope of driverless vehicles in India
I was interviewed in Jul 2021.
Round duration - 90 minutes
Round difficulty - Medium
The timing was around 12 noon.
Hackerrank environment was nice things were easily accessible.
The test included 52 MCQS and 2 Programming Questions.
Round duration - 30 Minutes
Round difficulty - Medium
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
Round duration - 30 Minutes
Round difficulty - Medium
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.
Round duration - 90 minutes
Round difficulty - Medium
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.
Your task is to implement a Stack data structure using a Singly Linked List.
Create a class named Stack
which supports the following operations, each in O(1...
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.
MathWorks interview questions for popular designations
I was interviewed in Jul 2021.
Round duration - 60 Minutes
Round difficulty - Easy
It was somewhere in the middle of the day and was around 60 mins long .
It consisted of three sections
one is aptitude
then other was related to comm skills related
and the last one was 2 coding question ( each have to be done in different programming language ).
Ninja is looking to hire 'ugly ninjas' whose numbers have all prime factors from a given list. Your task is to help him find the K-th ugly ninja.
You will be given an ar...
Find the K-th ugly ninja number using prime factors from a given list.
Generate ugly numbers using prime factors from PRIME_ARR
Keep track of the K-th ugly number
Return the K-th ugly number
You are given an array ARR
and a positive integer K
. Your task is to count the total number of pairs within the array whose sum is divisible by K
.
ARR = [4, 3...
Count pairs in an array whose sum is divisible by a given integer K.
Iterate through the array and calculate the remainder of each element when divided by K.
Store the remainders in a hashmap along with their frequencies.
For each remainder R, check if K - R is present in the hashmap and add the product of their frequencies to the count.
Return the total count of pairs whose sum is divisible by K.
Round duration - 30 Minutes
Round difficulty - Easy
It was a round with HR and these questions were asked
Tip 1 : Be consistent like never ever leave even a single day practice even if you have other commitments
Tip 2 : Follow one resource properly as there are tons of resources available but try to pick one only and start other only if you are finished with the first resource
Tip 3 : There is no set defined number for the number of question you have to do , just focus on the quality of questions . Eg : 1 good hard level problem >>>> 25 easy problems like sum of array etc.
Tip 1 : Try not to stuff your resume with fancy things like multiple small small projects
Tip 2 : Try to provide links for the project you are giving as it provides credibility of your work which you have shown.
Get interview-ready with Top MathWorks Interview Questions
I applied via Newspaper Ad and was interviewed in Aug 2022. There were 2 interview rounds.
Mathematical reasoning , aptitude test, psuedocode
I applied via Company Website and was interviewed before Oct 2022. There were 4 interview rounds.
Questions on data structures will be asked. Problem statement would be given to solve using an online editor.
More C++ object oriented concepts. Data structure problem of moderate difficulty level.
I was interviewed in Jul 2021.
Round duration - 90 minutes
Round difficulty - Medium
Round duration - 45 minutes
Round difficulty - Medium
Round duration - 45 minutes
Round difficulty - Medium
Leadership Role
Examples in the previous organization
Round duration - 45 minutes
Round difficulty - Hard
HDL coding
Tip 1 : You must be good at coding
Tip 2 : You must be able to explain you project well. They will me more interested to know your contribution in the project.
Tip 1 : No Tips Required
Tip 2 : You can follow any standard template just mention all your achievement well
I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.
C++, java, oops,dbms, cn
GD on company's program
I was interviewed before May 2021.
Round duration - 90 minutes
Round difficulty - Medium
This was a technical online test consisting of a variety of questions. A total of 45 questions had to be answered in 90 minutes.
The round was held in the computer lab of IIT Indore during the evening with a total of around 150 students.
The questions asked were based on OOPS concepts, C/C++, Java, Python, Aptitude and two Coding problems.
In the city of Berland, Bob and his wife visit the ‘Arcade’ mall every Friday. The mall has shops arranged in a line, and Bob can jump between these shops using trampolines...
Given an array or list ARR
consisting of N
integers, your task is to identify all distinct triplets within the array that sum up to a specified number K
.
A t...
Round duration - 60 minutes
Round difficulty - Medium
This was a technical interview with only one interviewer present and lasted for an hour. There were C++ OOPS conceptual questions, computer science theoretical question (OS, networking, DBMS) and a coding problem based on dynamic programming.
Given a 2-D matrix mat
with 'N' rows and 'M' columns, where each element at position (i, j) is mat[i][j]
, determine the length of the longest increasing...
Round duration - 30 minutes
Round difficulty - Easy
Tip 1 : Learn OOPS concepts in C++ in depth.
Tip 2 : Learn data structures and algorithms to solve coding problems.
Tip 3 : Know about your projects in detail.
Tip 1 : Have your projects with clear explanation.
Tip 2 : Be concise and on point.
Top trending discussions
The duration of MathWorks interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 24 interviews
Interview experience
based on 131 reviews
Rating in categories
Software Engineer
142
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Software Engineer
68
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Software Engineer
47
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Developer
30
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer2
27
salaries
| ₹0 L/yr - ₹0 L/yr |
Cadence Design Systems
Ansys Software Private Limited
National Instruments
Autodesk