Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Motilal Oswal Financial Services Team. If you also belong to the team, you can get access from here

Motilal Oswal Financial Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Motilal Oswal Financial Services Learning and Development Lead Interview Questions and Answers

Updated 9 Dec 2024

Motilal Oswal Financial Services Learning and Development Lead Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. How can we create a learning roadmap for the entire organization across all levels and functions
  • Q2. How to promote discovery learning and peer to peer learning

Interview Preparation Tips

Interview preparation tips for other job seekers - Great organization

Interview questions from similar companies

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Hard

Timings: Early morning 7am (60 mins )
Subsection 1 (30 mins): MCQ round having 30 questions of 11th and 12th Math (complex numbers, trigonometry, calculas), Probability (Expectancy, bayes theorem, other probability question), Coding (Input/Output Question, Time complexity, Stack Push and Pop, Prefix, Postfix).
Subsection 2 (30 mins): 2 Coding Question 1 easy level (Find max in array), other was medium level (Find all the elements in tree which are at same level, where level is depth of smallest path from root to leaf)

Questions were different for each candidate

  • Q1. 

    Maximum Number by One Swap

    You are provided with an array of N integers representing the digits of a number. You are allowed to perform an operation where you can swap the values at two different indices ...

  • Ans. Brute Force

    The idea is to generate all the possible numbers by trying all the possible combinations of indices. We will run two nested loops to generate all numbers and inside the inner loop with we will have to compare the array, we get after swapping with the maximum number we get till this step.

    1. Let’s say we have a given array ARR.
    2. Let’s take an integer array of size N say MAX initialized to ARR, MAX[N] = ARR.
    3. Iterate ...
  • Answered Anonymously
  • Q2. 

    Find Paths in Binary Tree

    Kevin has sketched a series of integers, forming a diagram that represents a binary tree. Challenged by a friend, Kevin needs to find all paths from the root to the leaf where th...

  • Ans. Depth First Search and Backtracking

    The basic idea is to perform Depth First Search on the given binary Tree and keep track of the current sum and whenever reached the lead node check if the sum becomes equal to the ‘K’ then pick this path, otherwise just backtrack to the previous node and exclude the value of this leaf node from the current sum.

     

    We are here using a helper function that is recursive in nature and i...

  • Answered Anonymously
Round 2 - Video Call 

Round duration - 30 minutes
Round difficulty - Medium

Interviewer greeted me and told this round is only on Probability.(This was scheduled same day at 3pm)
He asked Following Probability questions:
Q1: What is Random variable?
Q2: What is Sample space?
Q3: What is Conditional Probability? followed by a Numerical on it.
Q4: What is a Normal Distribution?
Q5: What is Bayes theorem? followed by a numerical on it.
Q6: probability of car accident in one hour is 1/4. What is the probability of accident in half hour?
Q7: Two die are thrown, what is the probability of getting multiple of 3. 
Q8: There is 10 Black socks in drawer, 10 white socks. What is the minimum number of socks we need to pick out such that we get a pair?

Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Interviewer greeted me and told this round is only on Basic DSA.(This was scheduled same day at 3:30pm)
He asked Following questions:
Q1: Introduction and Explain your resume?
Q2: What if we have one class (which has array functionality) and other class (stack) which we will inherit from array class what could possibly go wrong here?
Q3: What is Static data member in Classes?
Q4: What is Static member function in Classes? Can static member functions call normal data member of classes?
Q5: you are given a 2D grid, each index has some value associated with it. From Bottom right cornor you need to find a path till Top left cornor where you can get maximum sum of values from index occuring on the path, You can go in Up direction, Left direction or diagonal up-left direction? 

I was asked for approach (No coding was done on compiler)

  • Q1. 

    Paths in a Matrix Problem Statement

    Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...

  • Ans. Recursion

    The basic idea to solve this problem is to use recursion. Recursively call function   for next row ( row+1,col ) and next column ( row, col+1 ). If the row is equal to M-1 or the column is equal to N-1, then recursion is stopped.

     

    Algorithm:

    • Take an array or vector ‘path’, which will store the path we have to print.
    • Start from the index (row, col) = (0,0).
    • Add mat(row, col) to  ‘path.’
    • Recursively ca...
  • Answered Anonymously
Round 4 - Video Call 

(2 Questions)

Round duration - 15 minutes
Round difficulty - Easy

This round happened around 5pm in evening, i got the call from the interviewer to join Zoom call immediately. In this round (it was kind of rapid fire round on DSA,)
Following questions were asked:
Q1: Introduce yourself and explain your resume.
Q2: What is your favorite data structure and why? I said it is Deque, as it is can be helpful in many questions
Q3: Explain what are segment trees. Also give a question were we can use them.
Q4: What are tries, and give one application of tries.
Q5: Given one array you need to give approach to find out all the permutation of the elements in it. (I gave recursive approach)
Q6: Given the same array and value k, you need to tell if sum of subset can be equal to k. (This question is modification of 0/1 Knapsack. I explained the recursive approach)

Interviewer told me to wait for last HR round (I was on cloud 9 after listening to this as it was elimination round)

  • Q1. 

    Find Permutation Problem Statement

    Given an integer N, determine an array of size 2 * N that satisfies the following conditions:

    1. Each number from 1 to N appears exactly twice in the array.
    2. The distanc...
  • Ans. Brute Force

    The idea is to make an array with exactly two occurrences of each element from 1 to N. Then we will generate all possible permutations of this array and check if any permutation is valid or not.

    The steps are as follows:

    1. Let’s define a recursive function as generatePermutations(arr, answer, N,  start, end), where arr is the array containing the permutation, answer is array that will store the final answer...
  • Answered Anonymously
  • Q2. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. Recursion

    The idea is to generate all possible subsets and check if any of them sums up to ‘K’. This can be done through recursion.

     

    Here is the algorithm:

     

    subsetSumToK(N , K , ARR):

    1. Initialize integer variable ‘ANS’ = ‘helper(ARR, N, K)’. Here ‘helper’ is the recursive function that returns true/false.
    2. If ‘ANS’ is equal to 1 then:
      • Return true.
    3. Else:
      • Return false.

     

    helper(ARR, N, K):

    1. Base case: If ‘N’ is less tha...
  • Answered Anonymously
Round 5 - Video Call 

Round duration - 20 Minutes
Round difficulty - Easy

This round happened around 6:30pm in evening, i got the call from the interviewer to join Zoom call immediately. It was HR+(Probability mix round).
He asked me following questions:
Q1: Introduce and explain your resume.
As i was unable to solve 2 probability question in Round 2. The interviewer immediately asked me 2 probability questions back to back.
Q2: What is bayes theorem and a numerical on it.
Q3: If there is a frog which can go one step forward with probability 3/4. and one step backward with 1/4. What is expectancy to reach 7 steps forward.

I was unable to solve the last probability ques. Was on right track almost in end of interview.
2/18 students were selected for intern JPMC(Quant Research @ 1.5Lakhs stipend)

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Machine learning engineer in MumbaiEligibility criteriaAbove 7 CGPA, No criteria, Need two development projects on ResumeJP Morgan interview preparation:Topics to prepare for the interview - Probability and Statistics, Dynamic programming, Greedy Algorithm, Arrays, Strings, Trees, HeapTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Do Solve Probability questions on Expectancy, Conditional Probability, Bayes theorem and basic 12th level.
Tip 2 : Prepare your Introduction and Be very concise as interviews are of maximum 30 mins each
Tip 3 : Be very communicative and keep trying each question given till end. Never give up!

Application resume tips for other job seekers

Tip 1 : Do include Projects with Live link in resume
Tip 2 : Do Choose simple Format of Word, Don't include to much designing

Final outcome of the interviewRejected

Skills evaluated in this interview

Motilal Oswal Financial Services Interview FAQs

How many rounds are there in Motilal Oswal Financial Services Learning and Development Lead interview?
Motilal Oswal Financial Services interview process usually has 1 rounds. The most common rounds in the Motilal Oswal Financial Services interview process are One-on-one Round.
What are the top questions asked in Motilal Oswal Financial Services Learning and Development Lead interview?

Some of the top questions asked at the Motilal Oswal Financial Services Learning and Development Lead interview -

  1. How can we create a learning roadmap for the entire organization across all lev...read more
  2. How to promote discovery learning and peer to peer learn...read more

Tell us how to improve this page.

Motilal Oswal Financial Services Learning and Development Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 566 Interviews
Bajaj Finserv Interview Questions
4.0
 • 515 Interviews
ICICI Securities Interview Questions
3.9
 • 157 Interviews
Angel One Interview Questions
3.9
 • 133 Interviews
Kotak Securities Interview Questions
3.6
 • 115 Interviews
HDFC Securities Interview Questions
3.6
 • 102 Interviews
Bajaj Capital Interview Questions
3.8
 • 79 Interviews
Sharekhan Interview Questions
3.9
 • 78 Interviews
View all

Motilal Oswal Financial Services Learning and Development Lead Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

5.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
862 salaries
unlock blur

₹2 L/yr - ₹10.2 L/yr

Relationship Manager
815 salaries
unlock blur

₹1.5 L/yr - ₹6 L/yr

Senior Executive
659 salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Equity Advisor
551 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Financial Advisor
374 salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Explore more salaries
Compare Motilal Oswal Financial Services with

Edelweiss

3.9
Compare

ICICI Securities

3.9
Compare

HDFC Securities

3.6
Compare

Kotak Securities

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