Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by M2P Fintech Team. If you also belong to the team, you can get access from here

M2P Fintech Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 84 Reviews

Filter interviews by

M2P Fintech Software Development Engineer 1 Interview Questions and Answers

Updated 18 Jan 2025

M2P Fintech Software Development Engineer 1 Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Coding Test 

Medium level leetcode questions

Round 2 - System design 

(1 Question)

  • Q1. Split wise low level design
Round 3 - High level system design 

(1 Question)

  • Q1. Not sure what the questions are

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid interviewing here; do so only if your goal is to obtain an offer letter. Join this place only as a last resort. It is advisable not to accept an offer.

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was a coding round of ReactJS and JS

Round 2 - Technical 

(1 Question)

  • Q1. Design Stopwatch in HTML CSS and JS

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and tell if you are not comfortable in particular language.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write code for advance surrying in js

Round 2 - Coding Test 

Implement custom hook for api call

Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic questions arounf my previous work
  • Q2. Technical questions around performance and code optimization
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic puzzles of medium complexity level. No improvement required

Round 2 - Coding Test 

DSA questions of easy level. Asked for memory optimisations.

Round 3 - Technical 

(1 Question)

  • Q1. High level system design of wallet payment system, took example of paytm. This was hld questions so just basic components
Round 4 - One-on-one 

(2 Questions)

  • Q1. Low level system design of parking lot system
  • Ans. 

    Design a parking lot system at a low level

    • Divide system into components like parking spots, ticketing system, payment system

    • Implement data structures like queues for managing parking spots

    • Use algorithms like least recently used for spot allocation

    • Consider scalability and performance in design

  • Answered by AI
  • Q2. Review of one of my projects at past company

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were rude sometimes, seems like they are interviewing just for the sake of spending an hour. They did not look serious about actually testing the skillset, not much questions just hmm hmm.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

75 min test with 18 Java theory questions

Round 2 - Technical 

(5 Questions)

  • Q1. Synchronized keyword usage
  • Ans. 

    The synchronized keyword in Java is used to control access to shared resources in a multithreaded environment.

    • Synchronized keyword can be used to synchronize access to critical sections of code to prevent race conditions.

    • It can be applied to methods or code blocks to ensure only one thread can access them at a time.

    • Example: synchronized void myMethod() { // code }

    • Example: synchronized(this) { // code }

  • Answered by AI
  • Q2. Message Queue types
  • Q3. Thread Contention
  • Q4. Java Profiling Tools
  • Q5. Abstract classes

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour , 1 medium and 1 hard
FInd Kth smallest element
Find Peak element

Round 2 - Technical 

(1 Question)

  • Q1. Parking Lot System design
  • Ans. 

    Design a parking lot system with features like parking, unparking, and checking availability.

    • Design classes for ParkingLot, ParkingSpot, Vehicle, etc.

    • Implement methods for parking a vehicle, unparking a vehicle, and checking spot availability.

    • Consider using data structures like HashMap or ArrayList to manage parking spots.

    • Include features like ticket generation, fee calculation, and spot reservation.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and say what the intereviewer wants

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Lazy loading and eager loading in Java in context of Singleton class
  • Ans. 

    Lazy loading defers the initialization of an object until it is actually needed, while eager loading initializes the object immediately.

    • Lazy loading is commonly used in Singleton pattern to delay the creation of the instance until it is requested.

    • Eager loading initializes the Singleton instance at the time of class loading.

    • Lazy loading can help improve performance by only creating the instance when needed, while eager ...

  • Answered by AI
  • Q2. Connect master and slave instances of a DB in spring boot project
  • Ans. 

    Use Spring Boot configuration to connect master and slave instances of a DB

    • Configure multiple data sources in application.properties or application.yml file

    • Use @Primary annotation for the master data source and @Qualifier annotation for the slave data source

    • Define separate DataSource, JdbcTemplate, and EntityManager beans for each data source

    • Use @Transactional annotation with the appropriate data source to specify whic

  • Answered by AI
  • Q3. Global Exception handler in Spring boot
  • Ans. 

    Global exception handler in Spring Boot handles all exceptions thrown by the application.

    • Global exception handler can be implemented using @ControllerAdvice annotation in Spring Boot.

    • It allows centralized exception handling for all controllers in the application.

    • You can define methods annotated with @ExceptionHandler to handle specific exceptions.

    • Global exception handler can return custom error responses or redirect to

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. One leetcode easy-medium problem
  • Q2. Java, springboot and oops question
Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. System design questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR didnt reach out post interviews
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Aks about the few questions of dsa
  • Q2. Ask about the design system
Round 2 - Technical 

(1 Question)

  • Q1. Ask about the design system
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Machine coding: Design in-memory document search
Round 2 - Technical 

(1 Question)

  • Q1. HLD: Design a ad-click aggregation service
  • Ans. 

    Design an ad-click aggregation service for tracking and analyzing ad clicks.

    • Use a distributed system to handle high volume of ad click data

    • Implement real-time processing for immediate insights on ad performance

    • Utilize a database to store aggregated ad click data for reporting and analysis

  • Answered by AI

Skills evaluated in this interview

M2P Fintech Interview FAQs

How many rounds are there in M2P Fintech Software Development Engineer 1 interview?
M2P Fintech interview process usually has 3 rounds. The most common rounds in the M2P Fintech interview process are Coding Test.
What are the top questions asked in M2P Fintech Software Development Engineer 1 interview?

Some of the top questions asked at the M2P Fintech Software Development Engineer 1 interview -

  1. Not sure what the questions ...read more
  2. Split wise low level des...read more

Tell us how to improve this page.

M2P Fintech Software Development Engineer 1 Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 764 Interviews
PolicyBazaar Interview Questions
3.6
 • 338 Interviews
PhonePe Interview Questions
4.0
 • 302 Interviews
PayPal Interview Questions
3.9
 • 208 Interviews
HighRadius Interview Questions
2.9
 • 180 Interviews
Fiserv Interview Questions
3.1
 • 168 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.6
 • 137 Interviews
MasterCard Interview Questions
4.0
 • 132 Interviews
View all
M2P Fintech Software Development Engineer 1 Salary
based on 18 salaries
₹6 L/yr - ₹18 L/yr
27% less than the average Software Development Engineer 1 Salary in India
View more details
Software Engineer
36 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Software Developer
36 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Software Development Engineer
33 salaries
unlock blur

₹4.5 L/yr - ₹11.8 L/yr

Software Development Engineer II
31 salaries
unlock blur

₹8.6 L/yr - ₹34.8 L/yr

Software Development Engineer 1
18 salaries
unlock blur

₹6 L/yr - ₹18 L/yr

Explore more salaries
Compare M2P Fintech with

Razorpay

3.6
Compare

Paytm

3.3
Compare

PhonePe

4.0
Compare

Payed

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