Upload Button Icon Add office photos

Filter interviews by

Enrich Money Interview Questions and Answers

Updated 5 Apr 2025

Enrich Money Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Tell me about youself
  • Ans. 

    Dynamic Relationship Manager with a passion for building strong client connections and delivering tailored financial solutions.

    • Over 5 years of experience in client relationship management, focusing on understanding client needs and providing personalized service.

    • Successfully managed a portfolio of high-net-worth clients, increasing client satisfaction scores by 20% through proactive communication.

    • Skilled in identifying...

  • Answered by AI
  • Q2. Sales and marketing skill
  • Q3. How to sell a pen
  • Ans. 

    Selling a pen involves understanding the customer's needs and demonstrating the pen's unique features and benefits.

    • Identify the customer's needs: Ask questions to understand what they look for in a pen, e.g., 'Do you prefer a smooth writing experience?'

    • Highlight unique features: Discuss the pen's design, ink quality, or ergonomic grip, e.g., 'This pen has a gel ink that dries quickly.'

    • Create a sense of urgency: Suggest...

  • Answered by AI
  • Q4. Ask any questions to interviewer

Interview Preparation Tips

Interview preparation tips for other job seekers - You gain more knowledge about this company like shares and stocks.Work culture is not good.

Top trending discussions

View All
Data Science & Analytics
6d
xgabru
Verified Icon
·
works at
Carelon Global Solutions
My entire career is derailed’: Analyst says accidental file download led to termination and blacklisting
🤯 Accidental click, career lost? A chilling remote work warning. Just read a horrifying Hindustan Times story: an analyst's career was allegedly torpedoed – termination and blacklisting – by an accidental file download to their personal laptop while working remotely. This isn't just about IT policy; it's the terrifying reality of our digital lives. How many of us have had that gut-wrenching "oh no" moment from a misclick? It makes you wonder: How forgiving are company IT systems? What support is there for honest mistakes? Are we, remote workers, truly aware of every digital tripwire? http://nauk.in/Tmd2IOpH My heart goes out to this person. Imagine your entire future crumbling from one innocent click. It's a nightmare scenario that demands better clarity and empathy from employers. What are your thoughts on this?
FeedCard Image
Got a question about Enrich Money?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. What is your previous company ,how can you achieve target, how many days do you work, willing to travel, how can you face presser and many more

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls don't go for sales

I applied via Campus Placement and was interviewed before Apr 2021. There were 2 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 - HR 

(1 Question)

  • Q1. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - Best company for starting the career

I applied via Referral and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you deel with merchens(costumer) ?

Interview Preparation Tips

Interview preparation tips for other job seekers - First I explain prodect benefits and convenc to buy prodect.

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

Interview Questionnaire 

2 Questions

  • Q1. How to onboard merchant
  • Ans. 

    To onboard a merchant, we need to understand their business needs and provide them with a tailored solution.

    • Research the merchant's business and industry to understand their pain points and needs

    • Provide a personalized solution that addresses their specific needs

    • Offer training and support to ensure a smooth onboarding process

    • Communicate clearly and regularly to build trust and maintain a positive relationship

    • Follow up r...

  • Answered by AI
  • Q2. How to pitch merchant
  • Ans. 

    To pitch a merchant, understand their needs, offer a solution, and show the benefits of your product/service.

    • Research the merchant's business and identify their pain points

    • Offer a tailored solution that addresses their specific needs

    • Highlight the benefits of your product/service, such as increased revenue or improved efficiency

    • Provide social proof, such as customer testimonials or case studies

    • Be confident and enthusias...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Babababbababababbabanabbabahahhahahhahahahahhahahahahahhhhhahahahahahahahahhaahhahahhhhaoappwpwpsososoosososososoososososisiisisisisisjzthwozygwnpaus

I applied via Company Website and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About company

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to work ,work environment is good for future purpose,it was my first job and I did pretty well to my organization

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

There were questions related to DP and DFS.

 

  • Q1. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    Calculate the total amount of rainwater that can be trapped between given elevations in an array.

    • Iterate through the array and calculate the maximum height on the left and right of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

    • Sum up the trapped water at each bar to get the total trapped water for the entire array.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 mins
Round difficulty - Medium

At first, I was asked about the different projects that I have done so far. We had a detailed discussion on the same.
He also checked my OOP concepts

  • Q1. Can you describe the process of designing an LRU Cache from scratch during your System Design Round?
  • Ans. 

    Designing an LRU Cache involves implementing a data structure that stores a fixed number of items and removes the least recently used item when full.

    • Start by defining the data structure for the cache, typically using a combination of a hashmap and a doubly linked list.

    • Implement methods for getting and setting key-value pairs in the cache.

    • When a new item is added to the cache, check if it exceeds the maximum capacity. I...

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    Reverse a singly linked list by altering the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
  • Q3. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • If there are even elements, return the one that is farther from the head node

    • Handle edge cases like linked list of size 1 or empty list

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 mins
Round difficulty - Medium

It is HR + Technical round
asked about the Behavioural questions and how you justify yourself in an argument .questions related to current technology.
They gave me feedback on how well I had performed so far and gave me suggestions on what more can I do to further improve myself.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaGood ProjectsRazorpay interview preparation:Topics to prepare for the interview - Projects, Development, NoSQL, Data Structure, OOPS, DBMS, Algorithm.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be thorough about your projects
Tip 2 : Prepare Ds and Algo and Practice all standard questions 
Tip 3 : Know the complexities of the code that you’ve written.

Application resume tips for other job seekers

Tip 1 : Mention at least 2 projects.
Tip 2 : Don't make any silly spelling mistakes on resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Are these interview questions helpful?

Team Lead Interview Questions & Answers

KFintech user image Deepak Palle

posted on 30 Jun 2022

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. You will selected based on the employee working with Karvy
Round 2 - HR 

(1 Question)

  • Q1. Previous salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - I advice not Join Karvy worst company i ever worked .

Interview Questionnaire 

2 Questions

  • Q1. Coding skills checked
  • Q2. Get the 3rd highest salary from the table
  • Ans. 

    To find the 3rd highest salary, we can use SQL queries to retrieve distinct salary values and order them.

    • Use SQL query: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

    • This query selects distinct salaries, orders them in descending order, and skips the first two to get the third highest.

    • Ensure the table has enough distinct salaries; otherwise, the query may return NULL.

  • Answered by AI

Team Lead Interview Questions & Answers

PhonePe user image Bhanjakishore Das

posted on 20 Aug 2021

Interview Questionnaire 

1 Question

  • Q1. How can you achive a vast no of target?
  • Ans. 

    To achieve a vast number of targets, focus on setting clear goals, effective communication, delegation, motivation, and continuous monitoring.

    • Set clear and specific goals for each target

    • Communicate the targets clearly to the team

    • Delegate tasks and responsibilities effectively

    • Motivate and inspire the team to achieve the targets

    • Continuously monitor progress and provide feedback

    • Provide necessary resources and support to t...

  • Answered by AI

Enrich Money Interview FAQs

How to prepare for Enrich Money 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 Enrich Money. The most common topics and skills that interviewers at Enrich Money expect are NSE, Bse, Business Development, Revenue Generation and Stock Market.
What are the top questions asked in Enrich Money interview?

Some of the top questions asked at the Enrich Money interview -

  1. How to sell a ...read more
  2. Sales and marketing sk...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 342 Interviews
Bluestock ™ Interview Questions
4.5
 • 161 Interviews
Razorpay Interview Questions
3.6
 • 159 Interviews
KFintech Interview Questions
3.5
 • 150 Interviews
Revolut Interview Questions
2.6
 • 103 Interviews
Rupeek Interview Questions
3.7
 • 65 Interviews
ACKO Interview Questions
3.7
 • 55 Interviews
Yubi Interview Questions
3.3
 • 41 Interviews
View all

Enrich Money Reviews and Ratings

based on 29 reviews

3.6/5

Rating in categories

4.1

Skill development

3.2

Work-life balance

3.3

Salary

3.5

Job security

3.5

Company culture

2.9

Promotions

3.6

Work satisfaction

Explore 29 Reviews and Ratings
Unisex Hair Stylist

Pune

3-8 Yrs

Not Disclosed

Salon Manager

Mumbai

4-9 Yrs

Not Disclosed

Pedicurist

Navi Mumbai

2-7 Yrs

Not Disclosed

Explore more jobs
Relationship Manager
15 salaries
unlock blur

₹1.6 L/yr - ₹3.5 L/yr

Software Engineer
11 salaries
unlock blur

₹1.8 L/yr - ₹8.5 L/yr

Team Lead
5 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Graphic Designer
4 salaries
unlock blur

₹2.8 L/yr - ₹3.6 L/yr

Branch Manager
4 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Explore more salaries
Compare Enrich Money with

PhonePe

4.0
Compare

KFintech

3.5
Compare

Rupeek

3.7
Compare

Bluestock ™

4.5
Compare
write
Share an Interview