Upload Button Icon Add office photos

Filter interviews by

Moniepoint Interview Questions and Answers

Updated 17 Apr 2025
Popular Designations

11 Interview questions

A Senior Engineer was asked 2mo ago
Q. How do you review Java inheritance loops during code review?
Ans. 

Reviewing Java inheritance loops involves identifying and resolving circular dependencies in class hierarchies.

  • Check for circular dependencies: Ensure that no class inherits from another in a way that creates a loop.

  • Use UML diagrams: Visualize class relationships to identify potential inheritance loops.

  • Refactor if necessary: If a loop is found, consider using composition over inheritance to break the cycle.

  • Example...

View all Senior Engineer interview questions
A Technical Support Engineer was asked
Q. Write a query showing the percentage of completed transactions.
Ans. 

Query to show the percentage of completed transactions

  • Use COUNT() function to count total transactions

  • Use SUM() function to count completed transactions

  • Calculate percentage by dividing completed transactions by total transactions and multiplying by 100

View all Technical Support Engineer interview questions
A Technical Support Engineer was asked
Q. Six plays A, B, C, D, E, and F are staged on six days of the week starting from Monday to Saturday. Play C is staged on Tuesday. Plays A, F, and B are staged one after the other in the same order. Play D is...
Ans. 

Play E is staged on Saturday.

  • Play C is staged on Tuesday.

  • Plays A, F, and B are staged one after the other.

  • Play D is not staged on Monday or Wednesday.

View all Technical Support Engineer interview questions
A Technical Support Engineer was asked
Q. You are in charge of the mobile banking application of a bank, which runs a microservice architecture, and at a particular time 4 different services (Transfer, Airtime, Bill Payment, Login) of the applicati...
Ans. 

I would prioritize identifying the root causes of each service outage and work on restoring them one by one.

  • Prioritize identifying the root causes of each service outage

  • Work on restoring the services one by one

  • Communicate with relevant teams to coordinate efforts

  • Implement monitoring and alerting systems to prevent future outages

View all Technical Support Engineer interview questions
A Technical Support Engineer was asked
Q. How would you prove that the light inside a refrigerator turns off when the door is closed?
Ans. 

To prove that the bulb in a refrigerator actually goes off upon closing the door, you can use a simple test involving observation and a manual switch.

  • Open the refrigerator door and observe the bulb is on.

  • Manually press the switch that is triggered when the door is closed to simulate the door being closed.

  • Observe that the bulb turns off when the switch is pressed, indicating that it does go off when the door is clo...

View all Technical Support Engineer interview questions
A Technical Support Engineer was asked
Q. Tell me about the tools you use.
Ans. 

I use a variety of tools such as remote desktop software, ticketing systems, knowledge bases, and diagnostic tools.

  • Remote desktop software (e.g. TeamViewer, AnyDesk)

  • Ticketing systems (e.g. Zendesk, Jira)

  • Knowledge bases (e.g. Confluence, SharePoint)

  • Diagnostic tools (e.g. Wireshark, Ping)

View all Technical Support Engineer interview questions
A Technical Support Engineer was asked
Q. Write a SELECT query that selects all the data from a table named cards where the pan column has values that start with the number ‘4’ and the active_percentage column values are not 20, 50, 60, or 70.
Ans. 

Selects records from 'cards' where 'pan' starts with '4' and 'active_percentage' is not 20, 50, 60, or 70.

  • Use the SQL SELECT statement to retrieve data from the 'cards' table.

  • Utilize the LIKE operator to filter 'pan' values starting with '4'. Example: '4%'

  • Use the NOT IN clause to exclude specific 'active_percentage' values. Example: NOT IN (20, 50, 60, 70)

  • Combine conditions using the WHERE clause to ensure both cr...

View all Technical Support Engineer interview questions
Are these interview questions helpful?
A Technical Support Engineer was asked
Q. Could you type in the chatbox a sample LEFT JOIN selecting all columns of all records from a table called agents and corresponding columns in the second table called wallets, where wallet_id is a column sha...
Ans. 

Sample SQL LEFT JOIN query to select all columns from agents and wallets, ordered by created_on.

  • Use LEFT JOIN to include all records from agents and matching records from wallets.

  • Select all columns using * from both tables.

  • Filter results to the earliest records using ORDER BY created_on.

  • Limit the results to 200 records using LIMIT 200.

View all Technical Support Engineer interview questions
A Scrum Master was asked
Q. Describe a scenario on how you would set up work, tasks, and projects from start to finish.
Ans. 

Setting up work in Scrum involves defining tasks, prioritizing them, and ensuring team collaboration throughout the project lifecycle.

  • Define the project vision and goals with stakeholders.

  • Create a product backlog with user stories, e.g., 'As a user, I want to log in to my account.'

  • Prioritize the backlog using techniques like MoSCoW or the Kano model.

  • Plan sprints by selecting high-priority items from the backlog fo...

View all Scrum Master interview questions
A Senior Engineer was asked 2mo ago
Q. Explaining heap memory and new features of java 17
Ans. 

Heap memory in Java is used for dynamic memory allocation, while Java 17 introduces new features enhancing performance and usability.

  • Heap memory is where Java objects are stored during runtime, allowing for dynamic memory allocation.

  • Java 17 introduced 'Sealed Classes', which restrict class inheritance, enhancing security and maintainability.

  • The 'Pattern Matching for instanceof' feature simplifies type checks and c...

View all Senior Engineer interview questions

Moniepoint Interview Experiences

6 interviews found

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

I applied via Company Website and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Write a select query that selects all the data from a table named cards where the pan column has values that start or begin with the number ‘4’ and the active_percentage column has values not being one of...
  • Ans. 

    Selects records from 'cards' where 'pan' starts with '4' and 'active_percentage' is not 20, 50, 60, or 70.

    • Use the SQL SELECT statement to retrieve data from the 'cards' table.

    • Utilize the LIKE operator to filter 'pan' values starting with '4'. Example: '4%'

    • Use the NOT IN clause to exclude specific 'active_percentage' values. Example: NOT IN (20, 50, 60, 70)

    • Combine conditions using the WHERE clause to ensure both criteri...

  • Answered by AI
  • Q2. Could you type in the chatbox a sample LEFT JOIN selecting all columns of all records from a table called agents and corresponding columns in the second table called wallets, where wallet_id is a column sh...
  • Ans. 

    Sample SQL LEFT JOIN query to select all columns from agents and wallets, ordered by created_on.

    • Use LEFT JOIN to include all records from agents and matching records from wallets.

    • Select all columns using * from both tables.

    • Filter results to the earliest records using ORDER BY created_on.

    • Limit the results to 200 records using LIMIT 200.

  • Answered by AI
  • Q3. You are in charge of the mobile banking application of a bank, which runs a micro service architecture, and at a particular time 4 different services(Transfer, Airtime, Billpayment, Login) of the applicat...
  • Ans. 

    I would prioritize identifying the root causes of each service outage and work on restoring them one by one.

    • Prioritize identifying the root causes of each service outage

    • Work on restoring the services one by one

    • Communicate with relevant teams to coordinate efforts

    • Implement monitoring and alerting systems to prevent future outages

  • Answered by AI
  • Q4. Problem: You are asked to prove that the bulb in a refrigeraitor actually goes off upon closing the door of the refrigerator, how can you prove this.
  • Ans. 

    To prove that the bulb in a refrigerator actually goes off upon closing the door, you can use a simple test involving observation and a manual switch.

    • Open the refrigerator door and observe the bulb is on.

    • Manually press the switch that is triggered when the door is closed to simulate the door being closed.

    • Observe that the bulb turns off when the switch is pressed, indicating that it does go off when the door is closed.

  • Answered by AI
  • Q5. Problem: Six plays A, B, C, D, E and F are staged on six days of the week starting from Monday to Saturday. Play C is staged on Tuesday. Plays A, F and B are staged one after the other in the same order. P...
  • Ans. 

    Play E is staged on Saturday.

    • Play C is staged on Tuesday.

    • Plays A, F, and B are staged one after the other.

    • Play D is not staged on Monday or Wednesday.

  • Answered by AI
  • Q6. Problem: How can you measure 4L of water with only a 5L cup and a 3L cup (assume that you have an unlimited supply of water).
Round 2 - Technical 

(3 Questions)

  • Q1. Write a query showing the percentage of completed transactions.
  • Ans. 

    Query to show the percentage of completed transactions

    • Use COUNT() function to count total transactions

    • Use SUM() function to count completed transactions

    • Calculate percentage by dividing completed transactions by total transactions and multiplying by 100

  • Answered by AI
  • Q2. Tell me about your recent role.
  • Q3. Tell me about the tools you use.
  • Ans. 

    I use a variety of tools such as remote desktop software, ticketing systems, knowledge bases, and diagnostic tools.

    • Remote desktop software (e.g. TeamViewer, AnyDesk)

    • Ticketing systems (e.g. Zendesk, Jira)

    • Knowledge bases (e.g. Confluence, SharePoint)

    • Diagnostic tools (e.g. Wireshark, Ping)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself.

Skills evaluated in this interview

Scrum Master Interview Questions & Answers

user image Anonymous

posted on 30 Aug 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2023. 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 - Technical 

(2 Questions)

  • Q1. - Experience with Agile transformation and forming teams - Metrics and the ones available in Jira - Tools you use - How to ensure there is no spillover and team is melting sprint goal
  • Ans. 

    Experience with Agile transformation, metrics in Jira, tools used, and ensuring team meets sprint goal

    • I have experience leading Agile transformations and forming high-performing teams through coaching and training

    • I am familiar with metrics available in Jira such as burndown charts, velocity, and sprint reports

    • I use tools like Jira, Trello, and Slack to facilitate communication and collaboration within the team

    • To ensure...

  • Answered by AI
  • Q2. - Scenario on how to set up work/tasks/projects from start to finish
  • Ans. 

    Setting up work in Scrum involves defining tasks, prioritizing them, and ensuring team collaboration throughout the project lifecycle.

    • Define the project vision and goals with stakeholders.

    • Create a product backlog with user stories, e.g., 'As a user, I want to log in to my account.'

    • Prioritize the backlog using techniques like MoSCoW or the Kano model.

    • Plan sprints by selecting high-priority items from the backlog for the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with how you have helped teams or organisation with their agile transition. And be prepared on how you would ensure right sizing of work to ensure team meets sprint their goal.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

  • Q1. Explaining heap memory and new features of java 17
  • Ans. 

    Heap memory in Java is used for dynamic memory allocation, while Java 17 introduces new features enhancing performance and usability.

    • Heap memory is where Java objects are stored during runtime, allowing for dynamic memory allocation.

    • Java 17 introduced 'Sealed Classes', which restrict class inheritance, enhancing security and maintainability.

    • The 'Pattern Matching for instanceof' feature simplifies type checks and castin...

  • Answered by AI
  • Q2. Code review of Java inheritance loops
  • Ans. 

    Reviewing Java inheritance loops involves identifying and resolving circular dependencies in class hierarchies.

    • Check for circular dependencies: Ensure that no class inherits from another in a way that creates a loop.

    • Use UML diagrams: Visualize class relationships to identify potential inheritance loops.

    • Refactor if necessary: If a loop is found, consider using composition over inheritance to break the cycle.

    • Example: If ...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic questions on work background
Round 2 - Coding Test 

There are 2 coding and 1 sql and 6 java questions

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

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

  • Q1. They just give a HackerRank test in the first round
  • Q2. They will ask HLD and LLD in the next round

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go to work here the culture is horrible
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jun 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 - Personality Assessment 

(3 Questions)

  • Q1. Briefly explain about yourself
  • Ans. Give a little history about yourself, regarding to the job youre looking for.
  • Answered Anonymously
  • Q2. Why you choose to work with the company.
  • Ans. Whats your interest in the company and what you know you can do to help.
  • Answered Anonymously
  • Q3. Your superpowers and flaws/weak points.
  • Ans. What best energies you and what weighs you down in business.
  • Answered Anonymously
Round 3 - Case Study 

What's your expertise and level of experience.

Interview Preparation Tips

Topics to prepare for Moniepoint Manager Sales & Marketing interview:
  • Sales
  • Marketing
  • CRM
  • Team Management
  • Project Management
Interview preparation tips for other job seekers - No job is greater, what makes you different is your unique approach to the job offer.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Moniepoint?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All Technical quetions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared technically
Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Jun 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. General HR questions and some current related topic

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak till recruiter stops you

Interview Questionnaire 

1 Question

  • Q1. Java c c++

Interview Questionnaire 

1 Question

  • Q1. Your past exp?

Moniepoint Interview FAQs

How many rounds are there in Moniepoint interview?
Moniepoint interview process usually has 2-3 rounds. The most common rounds in the Moniepoint interview process are Technical, Resume Shortlist and Personality Assessment.
How to prepare for Moniepoint 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 Moniepoint. The most common topics and skills that interviewers at Moniepoint expect are Financial Services, Coding, Backend, Health Insurance and System Design.
What are the top questions asked in Moniepoint interview?

Some of the top questions asked at the Moniepoint interview -

  1. You are in charge of the mobile banking application of a bank, which runs a mi...read more
  2. Could you type in the chatbox a sample LEFT JOIN selecting all columns of all r...read more
  3. Problem: Six plays A, B, C, D, E and F are staged on six days of the week start...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 6 interview experiences

Difficulty level

Easy 40%
Moderate 60%

Duration

Less than 2 weeks 60%
2-4 weeks 20%
More than 8 weeks 20%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

Moniepoint Reviews and Ratings

based on 6 reviews

2.7/5

Rating in categories

2.7

Skill development

2.3

Work-life balance

3.9

Salary

2.5

Job security

2.3

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 6 Reviews and Ratings
Cloud Engineer

Remote

2-5 Yrs

Not Disclosed

Engineering Manager - R&D

Remote

8-10 Yrs

Not Disclosed

Engineering Manager - R&D

Bangalore / Bengaluru

8-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
4 salaries
unlock blur

₹44 L/yr - ₹79 L/yr

Data Engineer
3 salaries
unlock blur

₹11 L/yr - ₹39 L/yr

Explore more salaries
Compare Moniepoint with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview