Premium 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 Telecaller Interview Questions and Answers

Updated 15 Jul 2022

Motilal Oswal Financial Services Telecaller Interview Experiences

1 interview found

Telecaller Interview Questions & Answers

user image Anonymous

posted on 15 Jul 2022

I applied via Walk-in

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 - HR 

(1 Question)

  • Q1. Qualification and also about experience.
Round 3 - One-on-one 

(1 Question)

  • Q1. Experience and academic performance.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was great interview. Staffs are very good.

What people are saying about Motilal Oswal Financial Services

View All
blisteringlettuce
Verified Icon
5d
works at
Motilal Oswal Financial Services
Fair pay
Can anyone know what is the fair package for a CA with a 7 years of exp in tax. Thanks
Got a question about Motilal Oswal Financial Services?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. How can we provide finance to the customer
  • Ans. 

    Finance can be provided to customers through various loan options, credit facilities, and installment plans.

    • Offering personal loans with flexible repayment terms

    • Providing credit cards with attractive interest rates

    • Introducing installment plans for high-ticket items

    • Collaborating with financial institutions for special financing options

  • Answered by AI
  • Q2. What eligibility criteria should be met to qualify for a loan?
  • Ans. 

    To qualify for a loan, eligibility criteria typically include credit score, income, employment status, and debt-to-income ratio.

    • Good credit score (usually above 650)

    • Stable income and employment

    • Low debt-to-income ratio (usually below 43%)

    • Collateral or guarantor may be required for certain types of loans

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There may be some uncertainties, but it is manageable; you can secure an excellent job if you have confidence in this opportunity, and I am interested in it.

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 4 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 

(1 Question)

  • Q1. Profile based /process related
Round 3 - One-on-one 

(1 Question)

  • Q1. Profile based/Process related
Round 4 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Why are you looking for a change?
  • Q4. Compensation negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Sodexo/insurance/transport are on top of ctc

I applied via Referral and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do you have any experience?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.
Ask some questions about job role.

I applied via Walk-in and was interviewed in Aug 2019. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Why I want to switch?
  • Q2. About your self.
  • Q3. Explain corporate actions and it’s types with examples
  • Ans. 

    Corporate actions are events initiated by a company that can affect its stock price and shareholders.

    • Types of corporate actions include dividends, stock splits, mergers and acquisitions, spin-offs, and rights issues.

    • Dividends are payments made to shareholders from a company's profits.

    • Stock splits increase the number of shares outstanding while decreasing the price per share.

    • Mergers and acquisitions involve the combinat...

  • Answered by AI
  • Q4. What are bonds and it’s types
  • Q5. Types of swift and how it read it. Like its fields.
  • Ans. 

    Swift is a messaging system used for financial transactions. It has different types and fields for message processing.

    • Swift messages are categorized into 5 types - MT0xx, MT1xx, MT2xx, MT3xx, and MT9xx

    • Each type has its own set of fields for message processing

    • For example, MT103 is used for Single Customer Credit Transfer and has fields like Sender's Reference, Receiver's Reference, Amount, Currency, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always read your resume in and out.
Describe your current job well.
Always read about the job your applying.
Be confident and honest

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why should we hire you
  • Q2. You should hire me as I posses those skills which is needed for the role

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, smart and truthful towards interviewer

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Interview Questionnaire 

6 Questions

  • Q1. Effect of currency depreciation
  • Ans. 

    Currency depreciation can have various effects on the economy and businesses.

    • Currency depreciation can make exports cheaper and imports more expensive, leading to an increase in exports and a decrease in imports.

    • It can boost tourism as foreign visitors find the destination more affordable.

    • Currency depreciation can also increase the cost of imported goods and raw materials, potentially leading to inflation.

    • It can make f...

  • Answered by AI
  • Q2. Importance of Balance of Payment
  • Ans. 

    Balance of payment is important for assessing a country's economic health and its international transactions.

    • Balance of payment helps in understanding a country's trade position with the rest of the world.

    • It provides insights into the inflow and outflow of foreign currency, which impacts exchange rates.

    • A positive balance of payment indicates that a country is earning more from exports than spending on imports.

    • A negativ...

  • Answered by AI
  • Q3. Probability based questions
  • Q4. Your best quality
  • Ans. 

    My best quality is my ability to effectively communicate and collaborate with others.

    • Strong communication skills

    • Excellent interpersonal skills

    • Ability to work well in a team

    • Active listening

    • Conflict resolution

    • Empathy and understanding

    • Clear and concise verbal and written communication

    • Building positive relationships

    • Providing constructive feedback

    • Facilitating effective meetings

  • Answered by AI
  • Q5. How you handle stress
  • Ans. 

    I handle stress by prioritizing tasks, taking breaks, and practicing mindfulness.

    • I prioritize tasks based on deadlines and importance

    • I take short breaks to clear my mind and recharge

    • I practice mindfulness techniques such as deep breathing or meditation

    • I seek support from colleagues or supervisors when needed

  • Answered by AI
  • Q6. Calculate the total no.of accounts that a new bank card get.
  • Ans. 

    The total number of accounts a new bank card can get depends on various factors such as customer demand, marketing efforts, and eligibility criteria.

    • The number of accounts can vary based on the type of bank card (e.g., credit card, debit card)

    • Customer demand and marketing efforts play a significant role in acquiring new accounts

    • Eligibility criteria, such as credit score and income, may determine the number of accounts ...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Tips: Keep the resume short and to the point

Round: Test
Experience: Online test on the lines of common entrance exam with certain questions specific to finance field. And basically tested the general aptitude
Duration: 1 hour 30 minutes
Total Questions: 30

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

I appeared for an interview in Oct 2016.

Interview Questionnaire 

4 Questions

  • Q1. Select any five companies you would invest in and why given the required metrics.
  • Ans. 

    I cannot provide investment advice, but here are five companies that have shown strong financial performance in recent years.

    • Apple - consistently high revenue and profit margins

    • Amazon - dominant player in e-commerce and cloud computing

    • Microsoft - strong growth in cloud computing and enterprise software

    • Alphabet (Google) - diversified revenue streams and strong advertising business

    • Visa - dominant player in the payments i

  • Answered by AI
  • Q2. Questions based on case study.
  • Q3. Detailed discussions on the indian economy?
  • Q4. Brexit vote and how it would effect the indian economy?
  • Ans. 

    The Brexit vote could have both positive and negative effects on the Indian economy.

    • Positive effects: Increased trade opportunities with the UK, potential for attracting foreign investments from companies relocating from the UK.

    • Negative effects: Uncertainty in global markets leading to volatility in exchange rates, potential decline in exports to the UK.

    • Example: Indian IT companies may face challenges due to stricter i...

  • Answered by AI

Interview Preparation Tips

Round: Case Study Interview
Experience: We were first taught the basics of operations involved in working with an investment bank. Based on the workshop we were given a case study with a list of companies to select the one's which are potencial candidates for investments. We were all divided into groups of 5 students.

Round: Test
Experience: The test was basic. Economical aptitude requires prior knowledge of economics concepts. The review topicwas GST bill.
Duration: 1 hour
Total Questions: 41

Round: Stress Interview
Tips: It is important to be aware about the current events and economies.

Skills: Economic Affairs, Financial Economics, Knowledge On Current Affairs
College Name: Thapar University, Patiala

Motilal Oswal Financial Services Interview FAQs

How many rounds are there in Motilal Oswal Financial Services Telecaller interview?
Motilal Oswal Financial Services interview process usually has 3 rounds. The most common rounds in the Motilal Oswal Financial Services interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for Motilal Oswal Financial Services Telecaller 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 Motilal Oswal Financial Services. The most common topics and skills that interviewers at Motilal Oswal Financial Services expect are Banking, Cross Selling, Lead Generation, Outbound Calling and Outbound Sales.

Tell us how to improve this page.

Join Motilal Oswal Financial Services Our legacy of trust, integrity, and excellence; built over 37+ years

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 580 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
Bajaj Finserv Interview Questions
4.0
 • 538 Interviews
HSBC Group Interview Questions
3.9
 • 489 Interviews
American Express Interview Questions
4.1
 • 366 Interviews
BNY Interview Questions
3.8
 • 351 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
View all
Motilal Oswal Financial Services Telecaller Salary
based on 4 salaries
₹1 L/yr - ₹4.5 L/yr
47% more than the average Telecaller Salary in India
View more details
Relationship Manager
970 salaries
unlock blur

₹1.6 L/yr - ₹6.7 L/yr

Assistant Manager
843 salaries
unlock blur

₹2 L/yr - ₹8.2 L/yr

Senior Executive
647 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Equity Advisor
486 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Financial Advisor
351 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Explore more salaries
Compare Motilal Oswal Financial Services with

JPMorgan Chase & Co.

3.9
Compare

Wells Fargo

3.8
Compare

Citicorp

3.7
Compare

HSBC Group

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