Upload Button Icon Add office photos

Filter interviews by

Mitr Learning Media Interview Questions, Process, and Tips

Updated 3 Apr 2024

Top Mitr Learning Media Interview Questions and Answers

Mitr Learning Media Interview Experiences

Popular Designations

5 interviews found

I applied via Referral and was interviewed before Sep 2017. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What do you know about jQuery.
  • Ans. 

    jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal and manipulation, event handling, and animation.

    • jQuery is a JavaScript library that makes it easier to work with HTML documents.

    • It simplifies tasks like traversing and manipulating the DOM, handling events, and creating animations.

    • It provides a wide range of functions and methods to perform common web development tasks.

    • ...

  • Answered by AI
  • Q2. What are classes. Explain them and give a real world example.
  • Ans. 

    Classes are blueprints for creating objects in object-oriented programming. They define the properties and behaviors of an object.

    • Classes are used to create objects, which are instances of the class.

    • They encapsulate data and methods that operate on that data.

    • Classes promote code reusability and maintainability.

    • Real-world example: A class 'Car' can have properties like 'color', 'brand', and 'model', and methods like 'st

  • Answered by AI

Interview Preparation Tips

Round: MCQ Round.
Experience: Multiple Choice Questions based on Javascript, jQuery, HTML and CSS.

General Tips: It was a 1 day process. At the end of the day they handed me the offer letter.
Skills: Css, HTML, Jquery, Javascript, Communication, Analytical Skills
Duration: <1 week

Skills evaluated in this interview

Graduate Trainee Interview Questions asked at other Companies

Q1. Given an array, how do you get the count of pairs that sum to even
View answer (8)

BDM Interview Questions & Answers

user image Anonymous

posted on 4 Oct 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 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 - One-on-one 

(3 Questions)

  • Q1. Introduction about yourself was asked
  • Q2. Past experience in terms of company details and sales process
  • Q3. My understanding about the company and role
Round 3 - Assignment 

I had to create a PPT depicting my thought process on generating leads and approaching them with an intention of closing

Interview Preparation Tips

Interview preparation tips for other job seekers - Be humble and you would do wonder in the interview

BDM Interview Questions asked at other Companies

Q1. How will I sale a product which is higher in price than competition?
View answer (2)

Software Developer Interview Questions & Answers

user image manali mukadam

posted on 3 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Aptitude and coding questions both were included

Round 2 - Technical 

(3 Questions)

  • Q1. Patterns ans series questions were asked
  • Q2. Data types in Javascript
  • Ans. 

    Javascript has various data types including string, number, boolean, object, array, null, and undefined.

    • Data types in Javascript include string, number, boolean, object, array, null, and undefined.

    • Strings are sequences of characters enclosed in quotes.

    • Numbers can be integers or floating-point numbers.

    • Booleans represent true or false values.

    • Objects are collections of key-value pairs.

    • Arrays are ordered collections of val...

  • Answered by AI
  • Q3. Difference between let and var
  • Ans. 

    let is block scoped while var is function scoped in JavaScript.

    • let was introduced in ES6 while var has been around since the beginning of JavaScript.

    • Variables declared with let are only accessible within the block they are declared in.

    • Variables declared with var are accessible throughout the function they are declared in.

    • Using let can help prevent variable hoisting issues.

    • let is preferred over var for variable declarat

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

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

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept, programming
  • Q2. JavaScript , HTML5, css/scss
Round 2 - Technical 

(1 Question)

  • Q1. Modern JavaScript concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basics and fundamental concepts

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Mitr Learning Media interview questions for popular designations

 Software Engineer

 (1)

 Software Developer

 (1)

 Graduate Trainee

 (1)

 Intern

 (1)

 BDM

 (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 22 Jan 2022

I applied via Naukri.com and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Genral reasoning

Round 2 - Technical 

(1 Question)

  • Q1. F2F java oops concept basic html

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is the key and be technically prepared qith basics

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. What is the oops concept, why are you using that in any programming language?
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities and their interactions.

    • OOPs stands for Object-Oriented Programming.

    • It is used to organize and structure code for better readability, reusability, and maintainability.

    • OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Examples of OOPs languages include Java, Python, C++, and Ruby.

  • Answered by AI

I applied via Recruitment Consultant and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Let const var differ and accessibility also other
  • Ans. 

    Explaining the differences between const and var, their accessibility, and other related concepts.

    • const is a keyword used to declare a variable that cannot be reassigned.

    • var is a keyword used to declare a variable with function scope.

    • let is a keyword used to declare a variable with block scope.

    • Accessibility refers to the scope of a variable and where it can be accessed from.

    • Other related concepts include hoisting, clos

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interviews

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic .net concepts like oops concept, mvc architecture, mvc filters, we api basics.
Round 2 - Technical 

(1 Question)

  • Q1. Need to share the understandings based on the technology concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend the interview with confident and you will crack the interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Questions like rev string, Palindrome, Pattern

Round 2 - Group Discussion 

General Topics like OTT VS Theaters

Round 3 - HR 

(2 Questions)

  • Q1. About yourself?
  • Q2. Family Details, Education Details, Project details.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Nice,,,i like the interview process...

Round 2 - Coding Test 

I like the interview process...

Round 3 - Coding Test 

Nice i like the interview process...
..

Round 4 - Technical 

(2 Questions)

  • Q1. About our academics project
  • Q2. About recent technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient nd be smart

Mitr Learning Media Interview FAQs

How many rounds are there in Mitr Learning Media interview?
Mitr Learning Media interview process usually has 2-3 rounds. The most common rounds in the Mitr Learning Media interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Mitr Learning Media interview?
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 Mitr Learning Media. The most common topics and skills that interviewers at Mitr Learning Media expect are Javascript, Automation Testing, Communication Skills, HTML and Agile.
What are the top questions asked in Mitr Learning Media interview?

Some of the top questions asked at the Mitr Learning Media interview -

  1. What are classes. Explain them and give a real world examp...read more
  2. What do you know about jQue...read more
  3. Difference between let and ...read more

Tell us how to improve this page.

Mitr Learning Media Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Aptara Interview Questions
3.3
 • 62 Interviews
MPS Limited Interview Questions
3.6
 • 23 Interviews
Hurix Systems Interview Questions
3.7
 • 18 Interviews
Content Whale Interview Questions
3.7
 • 13 Interviews
QBS Learning Interview Questions
2.7
 • 5 Interviews
White Globe Interview Questions
2.7
 • 4 Interviews
MediaMonks Interview Questions
3.6
 • 3 Interviews
View all

Mitr Learning Media Reviews and Ratings

based on 59 reviews

2.9/5

Rating in categories

2.9

Skill development

2.8

Work-life balance

2.7

Salary

2.6

Job security

2.5

Company culture

2.3

Promotions

2.7

Work satisfaction

Explore 59 Reviews and Ratings
Software Developer
41 salaries
unlock blur

₹1 L/yr - ₹7.5 L/yr

Software Engineer
30 salaries
unlock blur

₹4 L/yr - ₹7.5 L/yr

Front end Developer
15 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Graduate Engineer Trainee (Get)
12 salaries
unlock blur

₹3.6 L/yr - ₹4.2 L/yr

Quality Control Specialist
9 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Mitr Learning Media with

Aptara

3.3
Compare

MPS Limited

3.6
Compare

Lionbridge Technologies

3.7
Compare

Crimson Interactive

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