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

Filter interviews by

M2P Fintech Senior Software Engineer Interview Questions and Answers

Updated 30 Aug 2024

M2P Fintech Senior Software Engineer Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Normal DSA round from hacker rank

Round 2 - Coding Test 

DSA round from hacker rank or leetcode

Round 3 - Technical 

(1 Question)

  • Q1. With hiring manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghosted after all rounds of interview.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

I was interviewed with m2p virtually. One of the worst interview experience yet. Interviewer was inexperience. He remembered one solution for the problem and not ready to accept any other solution which is better

Question: Given root node and two other node of binary tree. Find the distance between them

Interview Preparation Tips

Interview preparation tips for other job seekers - Not waste your time in interviewing here until unless yo don't have any other option.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Tips: Have a good grasp of DS algo, java, etc.(Here CGPA doesn't matter)

General Tips: Do’s and Don’ts :
1. Be confident and to be confident prepare well.
2. Set the priority of your companies 
3. Don't start preparation at end. Don't ignore the content of resume.

Be confident and start preparation as soon as possible.
College Name: IIT Kanpur

I applied via Recruitment Consultant and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Hackkerrank (3 questions 90 (LC-Medium &Easy)).
  • Q2. Round 1 DS&Alog Problem solving (LC- Medium) .Round 2 DS & Algo LC-Medium.Round 3 design LinkedIn Data modelling and HLD. Round 4 HLD+LLD+Data modelling for restaurant reservation system.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Practice & Practice.Be prepared for a System design interview.Trust me it will be easy
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Easy question from leetcode.
Round 3 - One-on-one 

(1 Question)

  • Q1. Just normal questions based on resume and previous projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Codility Test with leetcode medium questions

Round 2 - Technical 

(4 Questions)

  • Q1. Built a react feature
  • Ans. 

    Built a react feature

    • Identify the specific feature to be built

    • Design the component hierarchy and state management

    • Implement the feature using React components and hooks

    • Test the feature for functionality and user experience

    • Refactor and optimize the code for performance

  • Answered by AI
  • Q2. Questions based around react
  • Q3. How to implement timer
  • Ans. 

    A timer can be implemented using a combination of system time and a loop that checks for elapsed time.

    • Get the current system time at the start of the timer

    • Enter a loop that continuously checks the difference between the current system time and the start time

    • When the desired time has elapsed, perform the desired action or trigger an event

  • Answered by AI
  • Q4. How to implement useEffect
  • Ans. 

    useEffect is a hook in React that allows you to perform side effects in functional components.

    • useEffect is used to handle side effects in React components.

    • It takes two arguments: a function and an optional array of dependencies.

    • The function inside useEffect is executed after the component renders.

    • The optional array of dependencies determines when the effect should run.

    • If the array of dependencies is empty, the effect r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Visa Senior Software Engineer interview:
  • React
Interview preparation tips for other job seekers - Good experience overall, rejected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Two string related questions were there. One was to use stream api and another one was just to do perform operations on top of that.

Round 2 - Technical 

(1 Question)

  • Q1. It was technical, mostly related to your tech stack and some questions on technology your are applying for
Round 3 - Behavioral 

(1 Question)

  • Q1. Some basic techno managerial round. Mostly to check problem solving skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be free and prepare your resume properly. Do not lie in resume. If you don’t know the answer that’s ok just be truthful.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is java multithreading
  • Ans. 

    Java multithreading is a feature that allows concurrent execution of multiple threads within a single process.

    • Multithreading in Java allows multiple threads to run concurrently within a single process.

    • Each thread has its own stack and executes independently, but shares the same memory space.

    • Java provides built-in support for multithreading through the java.lang.Thread class and java.lang.Runnable interface.

    • Multithreadi...

  • Answered by AI
  • Q2. Explain exception hierarchy
  • Ans. 

    Exception hierarchy is a way to organize and categorize different types of exceptions in a software system.

    • Exceptions are organized in a tree-like structure with a base class at the top and more specific exception classes below.

    • Base class usually is 'Exception' or 'Throwable', with more specific classes like 'IOException', 'NullPointerException', etc.

    • Subclasses can provide more specific information about the cause of t...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Given two sorted arrays, a (m elements, size m+n) and b (n elements, size n) merge both the arrays into the first array a.
  • Ans. 

    Merge two sorted arrays into the first array

    • Start from the end of both arrays and compare elements

    • Place the larger element at the end of the first array

    • Continue this process until all elements are merged

  • Answered by AI
  • Q2. Given a monolith architecture, how would you scale it to handle 3x the traffic and also improve response time on API's during peak hours by using cache
  • Ans. 

    To scale a monolith architecture and improve response time, use horizontal scaling and implement caching.

    • Implement horizontal scaling by adding more instances of the monolith application behind a load balancer

    • Use a distributed cache to store frequently accessed data and reduce database queries

    • Implement caching at different levels such as application-level caching, database query caching, and HTTP response caching

    • Use a ...

  • Answered by AI
  • Q3. Class design for a cache implementation, implement get(), put(), initialization methods
  • Ans. 

    Design a cache class with get(), put(), and initialization methods.

    • Define a class with a data structure to store key-value pairs.

    • Implement a get() method to retrieve a value from the cache based on a given key.

    • Implement a put() method to add or update a key-value pair in the cache.

    • Implement an initialization method to set the initial capacity and eviction policy of the cache.

    • Consider using a hash map or a linked list t...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Visa Senior Software Engineer interview:
  • Arrays
  • Trees

Skills evaluated in this interview

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

(1 Question)

  • Q1. Design an econmerce website
  • Ans. 

    Design an ecommerce website for online shopping

    • User-friendly interface for easy navigation

    • Secure payment gateway integration

    • Product categorization and search functionality

    • Customer reviews and ratings

    • Responsive design for mobile compatibility

  • Answered by AI

Skills evaluated in this interview

M2P Fintech Interview FAQs

How many rounds are there in M2P Fintech Senior Software Engineer interview?
M2P Fintech interview process usually has 2 rounds. The most common rounds in the M2P Fintech interview process are Coding Test and Technical.

Tell us how to improve this page.

M2P Fintech Senior Software Engineer Interview Process

based on 3 interviews

Interview experience

1
  
Bad
View more
M2P Fintech Senior Software Engineer Salary
based on 13 salaries
₹10.5 L/yr - ₹31 L/yr
31% more than the average Senior Software Engineer Salary in India
View more details
Software Developer
41 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Software Development Engineer
36 salaries
unlock blur

₹4.8 L/yr - ₹21.2 L/yr

Software Development Engineer II
34 salaries
unlock blur

₹8.7 L/yr - ₹34.4 L/yr

Software Engineer
26 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Software Development Engineer 1
19 salaries
unlock blur

₹6.5 L/yr - ₹18 L/yr

Explore more salaries
Compare M2P Fintech with

Fiserv

3.0
Compare

PhonePe

4.0
Compare

Broadridge Financial Solutions

3.9
Compare

KFintech

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