Upload Button Icon Add office photos

Monotype

Compare button icon Compare button icon Compare

Filter interviews by

Monotype Interview Questions, Process, and Tips for Freshers

Updated 18 Jan 2025

Top Monotype Interview Questions and Answers for Freshers

Monotype Interview Experiences for Freshers

Popular Designations

5 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About Company and fonts
  • Q2. About the font history

Market Research Associate Interview Questions asked at other Companies

Q1. Tell me approximate number of people who are wearing shoes in delhi.
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Gave one problem of binary search?
  • Ans. 

    Binary search is a technique used to efficiently locate a target value within a sorted array.

    • Start by comparing the target value to the middle element of the array.

    • If the target value is less than the middle element, search the left half of the array.

    • If the target value is greater than the middle element, search the right half of the array.

    • Repeat the process until the target value is found or the subarray is empty.

  • Answered by AI
  • Q2. Asked some questions related to my projects
Round 2 - Behavioral 

(2 Questions)

  • Q1. Asked questions related to my projects
  • Q2. Built a simple web application to store the data and show it to the browser
  • Ans. 

    I would use a combination of HTML, CSS, and JavaScript to create a simple web application that stores and displays data.

    • Use HTML to create the structure of the web application

    • Use CSS to style the elements on the page

    • Use JavaScript to handle user interactions and store/retrieve data

    • Consider using a backend server (e.g. Node.js) to handle data storage and retrieval

    • Utilize AJAX to fetch data from the server asynchronously

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary related and some behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through referral on linkedin. Please try to cover all those coding related questions which may differ for every candidates. If you are good in development then show case your best projects.

Skills evaluated in this interview

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1.Javascript basics like ternary operator, difference between session and local storage, how to call APIs, some Jquery methods 2.How to make responsive designs using CSS 3.Working of React, different hook...
Round 3 - Technical 

(1 Question)

  • Q1. 2nd round was with the Director of Engineering. Mostly asked questions about yourself, from your resume and about projects

Interview Preparation Tips

Topics to prepare for Monotype Software Engineer Trainee interview:
  • HTML
  • CSS
  • Javascript
  • React.Js
  • Node.Js
  • DSA

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)

I applied via Approached by Company and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Coding Test 

It was a 1-hour interview.

there was 1 round of technical interviews and questions about DSA easy to medium from leetcode with optimization of code.

Round 2 - HR 

(2 Questions)

  • Q1. For the basic question you can google the top 10 Hr interview questions
  • Q2. What is monotype? what is your strength... etc
  • Ans. 

    Monotype is a typeface design company that creates and licenses fonts for digital and print media.

    • Monotype is a leading provider of typeface design and technology solutions.

    • It offers a wide range of fonts for various applications, including web, mobile, and desktop.

    • Some of the popular typefaces created by Monotype include Helvetica, Times New Roman, and Arial.

    • Monotype also provides font management software and services...

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. 30 min interview. it was based on your resume mentioning skills and job id skills they will check the soft skills that you mentioned on your resume and projects . note: please go through with your project...
  • Q2. Design a Que using any data STRUCTURE
  • Ans. 

    A queue can be designed using an array or linked list data structure.

    • A queue follows the FIFO (First In First Out) principle.

    • Elements are added to the rear end and removed from the front end.

    • Array implementation requires keeping track of front and rear indices.

    • Linked list implementation requires keeping track of only front and rear nodes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through with your resume projects and you mentoned on your resume.

Skills evaluated in this interview

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)

Monotype interview questions for popular designations

 Software Engineer Trainee

 (3)

 Market Research Associate

 (2)

 Software Developer

 (2)

 Senior Sdet Engineer

 (2)

 Research Associate

 (1)

 Senior Software Engineer

 (1)

 Executive

 (1)

 Software Developer Trainee

 (1)

Interview Questions & Answers

user image Anonymous

posted on 15 May 2015

Interview Preparation Tips

Round: Test
Experience: Online Test: NO negative marking (1.5 hrs. Test)
The test was conducted on Mettl and consisted of C (about 20 questions), C++(5 questions), Aptitude questions(about 10 questions) and programming problems.
1.char *str1 = “monotype”;
char *str2 = “monotype”;
if (str1==str2)
puts (“Same”);
else
puts(“Not same.”);2. One of them was something regarding scope of variables.3. From Linked lists quiz on geeksquiz: Q2 and Q4. GATE questions.C++ questions were purely conceptual. Aptitude questions were of mixed difficulty level. 3 programming problems and we had to do 2 (randomly assigned to us).a) Find and delete all occurrence of pattern ab ba (something like that) from a given string.b) Given a linked list and two integers M and N. Traverse the linked list such that you retain M nodes then delete next N nodes, continue the same till end of the linked list.
http://www.geeksforgeeks.org/delete-n-nodes-after-m-nodes-of-a-linked-list/c) One problem based on concept of finding “Next greater element”. (given on geeksforgeeks). Out of these, 1st and 3rd had to be run and compiled while 2nd to be submitted as plain text. They were manually checking it.
Duration: 90 minutes
Total Questions: 35

Round: Technical Interview
Experience: Technical interview (1.5-2 hrs approx., mine was 2.5 hrs. Long)It began with formal introduction.Questions asked were:1. Given a character string containing “How are you” and char*a =”Monotype”. Store “Monotype, How are you” in single statement. I suggested doing it by for loop but he was not satisfied by this and asked to do it using “sprintf” function.2. What is the use of pointers? How are 2D arrays stored in memory? Simulate 2D array using double pointers. I explained him *(*(a+2)+2) for a[2][2] but he was not satisfied with my answer. I finally did it by allocating memory for each 1D array using malloc and then creating an array of pointers to store the address of each such 1D array. This was correct.3. Discussion about Big and Little Endian pcs, how to find which PC is which, interconversion using bitwise operators.4. Coding problem to find how many times a number continuously appears in an array. Eg: 123333345, 3 appears
five times in O(n).5. Searching algorithm: binary search concept.6. Check if binary pattern of a number forms a palindrome using Bitwise operators.7. Memory map of a C program, heap memory.8. Definition vs declaration. You have two .c files each containing a function having only one statement of static variable declaration. Include those files in a new .c file and compile the project. Now he asked various questions based on this that were based on storage classes’ concept. I don’t remember the exact questions. 9. Rotation of bit pattern of a number. Edge cases were given like for a 32 bit number, if we have the numbering of bits’ index from RHS (opposite to what we generally do in arrays, start index 0,1….n-1 starting from left) and concerned bits lie from B9 to B0 i.e. Left most 22 bits are random and not required. Rotate so that B9->B8, B8->B7…B0->B9. Use bitwise operators.10. 25 horses are running in a race. 5 can run at a time. Find min races to find top three.Some more questions were there which I don’t remember. Questions like accessing array in spiral manner was asked from other student too. Logic and not the exact code was his priority.

Round: Technical Interview
Experience: Logical/Technical Round (approx. 45 minutes)He asked me about my college, branch and subjects that I know being a non-IT student. He asked me to explain what I know about Fluid mechanics, Heisenberg Principle, Atomic Models etc as I had said that I like Science. He then asked simple puzzles like calculating 15, 30, 45, 60 minutes by burning a rope. Correctly mark the labels on three fruit boxes having either orange, apple or a combination of both. You can pick only one at a time. What do you know about fonts, web fonts. I told him something about fonts family: Sans, Serif etc. (it was hinted in ppt that they will ask such things.) some questions from resume.

Round: HR Interview
Experience: HR interview(20-25 minutes)
Common HR questions from resume and as found on indiabix.com.

College Name: NA

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Everything HTML CSS SQL and core java
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Walk-in and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is interface ?
  • Ans. 

    An interface in software development defines a contract for classes to implement, specifying methods and properties.

    • Interfaces in programming languages like Java and C# allow for multiple inheritance by defining a set of methods that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • Interfaces are used to define common behavior that multiple classes c...

  • Answered by AI
  • Q2. Hat is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation promotes code reusability and makes the code easier to maintain.

    • Example: In a class representing a car, the variables lik...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with ur basics

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

10 apti questions and 10 technical mcq on cpp

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept question
  • Q2. Sql queries on join
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Oops topic and aptitude

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Very easy roundand is it a program to implement Parallel Merge Sort and can measure the performance

Round 3 - Coding Test 

Coding and decoding reasoning for the shield season is over now I am not sure

Interview Preparation Tips

Interview preparation tips for other job seekers - Learning in the morning and have a couple years back home

Monotype Interview FAQs

How many rounds are there in Monotype interview for freshers?
Monotype interview process for freshers usually has 2-3 rounds. The most common rounds in the Monotype interview process for freshers are Technical, Resume Shortlist and HR.
How to prepare for Monotype interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Monotype. The most common topics and skills that interviewers at Monotype expect are Market Research, Product Management, Product Marketing, Business Solutions and Machine Learning.
What are the top questions asked in Monotype interview for freshers?

Some of the top questions asked at the Monotype interview for freshers -

  1. Built a simple web application to store the data and show it to the brow...read more
  2. what is monotype? what is your strength... ...read more
  3. Gave one problem of binary sear...read more
How long is the Monotype interview process?

The duration of Monotype interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Monotype Interview Process for Freshers

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

Pitney Bowes Interview Questions
3.7
 • 21 Interviews
Dataflow Group Interview Questions
3.0
 • 14 Interviews
Emtec Interview Questions
4.3
 • 14 Interviews
V2soft Interview Questions
3.7
 • 12 Interviews
Tech Firefly Interview Questions
3.4
 • 6 Interviews
View all

Monotype Reviews and Ratings

based on 106 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.7

Salary

3.6

Job security

3.7

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 106 Reviews and Ratings
Senior Software Engineer
27 salaries
unlock blur

₹17 L/yr - ₹38 L/yr

Market Research Associate
24 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

Product Manager
22 salaries
unlock blur

₹24 L/yr - ₹38 L/yr

Software Engineer
21 salaries
unlock blur

₹11.1 L/yr - ₹19 L/yr

Market Research Specialist
15 salaries
unlock blur

₹7.8 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Monotype with

Pitney Bowes

3.7
Compare

Dataflow Group

3.0
Compare

Sapphire Software Solutions (India)

4.5
Compare

Sagitec Solutions

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview