Monotype Solutions India is a strategic center of excellence for Monotype and is a certified Great Place to Work®. It is based in NOIDA, Sector 125 (Delhi/NCR). The focus of this fast-growing center spans Market Research, Research in areas of Artificial Intelligence and Machine learning, Product Management, Product Development, Product Marketing, Revenue Marketing, Customer Success and Enterprise Business Solutions.
It has got a 4.1* rating on Glassdoor and is considered one of the best product-based companies. It is highly regarded for its work-life balance.
They provide good training as well which will be beneficial in future too. You can practice the below questions collected from Monotype Solutions Interview Experience for the interview. We have collected past frequently asked questions from Monotype Solutions Interview Experience for your reference.
Categories of Questions
Monotype Solutions Array Questions
Question 1. Length of the largest subarray with contiguous elements The problem “Length of the largest subarray with contiguous elements” states that you are given an integer array. The problem statement asks to find out the length of the longest contiguous sub-array of which elements can be arranged in a sequence (continuous, either ascending or descending). The numbers in the ...
Question 2. Largest area rectangular sub-matrix with equal number of 1’s and 0’s Problem Statement Given a binary matrix of size n x m. The problem is to find the largest area rectangular sub-matrix with equal number of 1’s and 0’s. Example Dimensions = 4 x 4 Matrix: 1 1 1 1 0 1 0 1 1 0 1 0 1 0 0 ...
Monotype Solutions Tree Questions
Question 3. Check if each internal node of a BST has exactly one child Problem Statement “Check if each internal node of a BST has exactly one child” problem states that you are given a preorder traversal of a binary search tree. And you need to find if all the non-leaf nodes contain only a single child. Here we also consider that all the ...
Question 4. Maximum Depth Of Binary Tree Problem Statement “Maximum depth of binary tree” problem states that you are given a binary tree data structure. Print the maximum depth of the given binary tree. Example Input 2 Explanation: Maximum depth for the given tree is 2. Because there is only a single element below the root (i.e. ...
Monotype Solutions Matrix Questions
Question 5. Largest area rectangular sub-matrix with equal number of 1’s and 0’s Problem Statement Given a binary matrix of size n x m. The problem is to find the largest area rectangular sub-matrix with equal number of 1’s and 0’s. Example Dimensions = 4 x 4 Matrix: 1 1 1 1 0 1 0 1 1 0 1 0 1 0 0 ...
Monotype Solutions Other Questions
Question 6. Find Nth Node Problem Statement In the “Find Nth Node” problem we have given a linked list to find the nth node. The program should print the data value in the nth node. N is the input integer index. Example 3 1 2 3 4 5 6 3 Approach Given a linked list ...