Upload Button Icon Add office photos

Filter interviews by

Money Honey Financial Services Software Developer Interview Questions and Answers

Updated 4 Jul 2024

Money Honey Financial Services Software Developer Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Framework of mvc and web api ands oops
  • Ans. 

    MVC is a design pattern that separates an application into three main components: Model, View, and Controller. Web API is a framework for building HTTP services that can be consumed by a variety of clients. OOPs stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • MVC: Model represents the data, View displays the data to the user, and Controller handles user input and updates t...

  • Answered by AI
  • Q2. How to consume API
  • Ans. 

    To consume an API, you need to make HTTP requests to the API endpoints and process the response data.

    • Understand the API documentation to know the endpoints, request methods, and parameters.

    • Use tools like Postman or cURL to test the API endpoints before integrating them into your code.

    • Make HTTP requests (GET, POST, PUT, DELETE) to the API endpoints using libraries like Axios or Fetch in your code.

    • Handle the response dat...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Money Honey Financial Services Software Developer interview:
  • MVC WEBAPI
Interview preparation tips for other job seekers - Not any

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

11 Questions

  • Q1. Print all nodes at a distance k from a given node in binary tree?
  • Q2. RandN function : which generates random number in [1,2,3..N] with equal probability. Given rand5, write a code for rand7 using rand5
  • Ans. 

    Code for rand7 using rand5 function

    • Use rand5 twice to generate a number in [1,25] with equal probability

    • If the number is greater than 21, discard and try again

    • Otherwise, return (number mod 7) + 1

  • Answered by AI
  • Q3. Puzzle: Using all(8,8,3,3) and only operators(*,/,-,+), make 24
  • Q4. How do you implement LRU cache?
  • Ans. 

    LRU cache is implemented using a doubly linked list and a hash map.

    • Create a doubly linked list to keep track of the order of elements in the cache.

    • Create a hash map to store the key-value pairs of the cache.

    • When a new element is added, check if the cache is full. If it is, remove the least recently used element from the linked list and the hash map.

    • When an element is accessed, move it to the front of the linked list to...

  • Answered by AI
  • Q5. Your current project in Company? A lot of questions from CV? Discussion went on for about 15 minutes?
  • Q6. Then had a lot of questions around java script and java. About different design patterns and web services
  • Q7. A lot of questions around java, collections frameworks, multi threading and so on. (This took a good 25-30 minutes )
  • Q8. A strategy question. It would be asked depending on which team you are being interviewed for.Mine was some apple seller problem. Here knowledge of real world scenario helps. Advice is to observe things aro...
  • Q9. Write down function to select pivot element randomly in Quick Sort
  • Ans. 

    Function to randomly select pivot element in Quick Sort

    • Generate a random index within the range of the array

    • Return the element at the randomly generated index as the pivot

  • Answered by AI
  • Q10. He asked me what is a data structure and why do we use one. Explained him. He asked some real life example of stack and queue. All I could gave him was programming examples but when he insisted on real li...
  • Q11. As we were talking very much on each question. He felt like talking more and from tech he went around for some biggest learning from a mistake/biggest achievement of life kind of questions. There were oth...

Interview Preparation Tips

General Tips: I recently interviewed with Goldman Sachs, and had 4 rounds of interview with them at their campus in Bangalore.
Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Telephonic Call 

Round duration - 60 minutes
Round difficulty - Easy

The interviewer called my via phone and simultaneously provided me a link where I had to write the code for a given problem. It was scheduled at 12:30 pm, so timing was not an issue. It was a standard DP question involving a 2D matrix. The question was easy and I was able to code it within given time.

Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

The interviewer asked me two coding questions in this round.

  • Q1. Write an efficient program to find the sum of the contiguous subarray within a one-dimensional array of numbers that has the largest sum.
  • Ans. 

    Efficient program to find sum of largest contiguous subarray within a one-dimensional array.

    • Use Kadane's algorithm to find the maximum sum subarray in O(n) time complexity.

    • Initialize max_sum and current_sum to 0, iterate through array updating current_sum and max_sum.

    • Return max_sum as the result.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was on-site round at their Bangalore office. The interviewer was friendly and helpful. The interview held inside a conference room.

  • Q1. 

    DFS Traversal Problem Statement

    Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GR...

  • Ans. 

    DFS traversal problem to find connected components in an undirected and disconnected graph.

    • Use Depth First Search (DFS) algorithm to traverse the graph and find connected components

    • Maintain a visited array to keep track of visited vertices

    • Iterate through all vertices and perform DFS on unvisited vertices to find connected components

  • Answered by AI
Round 4 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

This was the next round of the onsite interviews. Took place in the same conference room as that of the previous round.

Round 5 - Face to Face 

Round duration - 60 minutes
Round difficulty - Easy

This was the third round of the onsite interview. 
 

Interview Preparation Tips

Professional and academic backgroundI completed Software Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - 1 in BangaloreGoldman Sachs interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Database, System Design, Operating SystemsTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Practice DP based questions as much as you can. Also, be confident during the interview about your solution. For practice, you can prefer Coding Ninjas and Geeks For Geeks.

Application resume tips for other job seekers

Keep it short. Mention the academic and professional projects you've done. Add your educational details properly with percentage or CGPA obtained.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

The test was scheduled around 5 evening and it had 3 coding questions. First question was on Dynamic Programming and other was medium question and was easy and the third was based on graph. And there were 20 mcq questions on Data structures, DBMS and OS

  • Q1. 

    Matrix Word Search Problem

    Explanation: You are given an 'M' x 'N' matrix of characters named CHARACTER_MATRIX and a string WORD. Your task is to identify and list all the occurrences of the string within...

  • Ans. 

    Matrix Word Search Problem - Find occurrences of a given word in all eight possible directions within a matrix.

    • Iterate through each cell in the matrix and check for the starting character of the word.

    • For each occurrence of the starting character, check all eight directions for the complete word.

    • Keep track of the coordinates of each character in the word for each occurrence found.

    • Ensure boundaries are not crossed while ...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Normal Coding question on Graphs and some basics from DBMS

  • Q1. 

    Transitive Closure of Directed Graph Problem Statement

    Given a directed graph with 'V' vertices and 'E' edges, determine if a vertex i is reachable from vertex j for all pairs of vertices (i, j). A vertex...

  • Ans. 

    Determine reachability between all pairs of vertices in a directed graph.

    • Use Floyd Warshall algorithm to find transitive closure of the graph.

    • Initialize a V x V matrix with 1s on the diagonal and 0s elsewhere.

    • Update matrix by checking if there is a path from i to j through k.

    • Repeat the process for all vertices to get the transitive closure matrix.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

He asked me to read about Morse language in wikepedia and asked me to write a code on it i. e. If the input Morse code and in output we should get it in English

  • Q1. 

    Morse Code to English Problem Statement

    You are provided with a string of morse code(s) of length N. Your task is to convert this morse code into the corresponding alphanumeric code consisting of lowercas...

  • Ans. 

    Convert Morse code to alphanumeric code using a predefined table.

    • Iterate through the morse code string and convert each morse code to its corresponding alphanumeric character using the given table.

    • Join the converted characters to form the final alphanumeric string.

    • Handle spaces between morse code characters by adding a space in the final alphanumeric string.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Banasthali University. I applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7 CGPAGoldman Sachs interview preparation:Topics to prepare for the interview - Dynamic Programming, Data Structures, Algorithms, Pointers, OOPsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do all the questions of interview bit atleast twice for those who are not good in coding much. And simultaneously do mcqs from geeks for geeks especially from the topics Data structures, DBMS and Operating system
Tip 2 : Do go through all the dynamic programming questions from geeks for geeks. 
Tip 3 : Practice lot of questions from leetcode.

Application resume tips for other job seekers

Tip 1 : Always keep your resume short 
Tip 2 :Try to keep it on one page . And never put false things on resume and write only those topics that you have thorough knowledge

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Instahyre and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There were one medium and one easy coding question of DSA one of the array and another of string.

Round 2 - Technical 

(1 Question)

  • Q1. It was a good interview, where I was asked one easy DSA question, and asked many things related to API, requests types in API, errors code in the API, and bash scripts. It was 1.5 hours long interview.
Round 3 - One-on-one 

(1 Question)

  • Q1. It was the Hiring Manager round, where I was asked about the HLD of Phonepe.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 dp
2 dynamic graph

Round 2 - Technical 

(2 Questions)

  • Q1. Data structure and algorithms
  • Q2. Data structure and algorithm
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

OA was about dp and graph

Round 2 - Coding Test 

Was about dp graphs and sliding window

Interview Preparation Tips

Interview preparation tips for other job seekers - learn DSA hardcore
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The DSA round happens with pseudo code

Round 2 - Technical 

(2 Questions)

  • Q1. Question asked from my resume
  • Q2. How I implemented everything
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to join
  • Q2. Where do you see yourself in five years

Interview Preparation Tips

Interview preparation tips for other job seekers - I haven’t clear the second round
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Prepare well for machine coding rounds.

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

It was a coding test with 3 medium-hard questions

Round 2 - One-on-one 

(5 Questions)

  • Q1. Coding interview
  • Q2. Some question of graph
  • Q3. Some question of string
  • Q4. Some graph qquestion
  • Q5. Somerandom question

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared

Money Honey Financial Services Interview FAQs

How many rounds are there in Money Honey Financial Services Software Developer interview?
Money Honey Financial Services interview process usually has 1 rounds. The most common rounds in the Money Honey Financial Services interview process are Technical.
How to prepare for Money Honey Financial Services Software Developer 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 Money Honey Financial Services. The most common topics and skills that interviewers at Money Honey Financial Services expect are C#, Javascript, Ajax, CSS and HTML.
What are the top questions asked in Money Honey Financial Services Software Developer interview?

Some of the top questions asked at the Money Honey Financial Services Software Developer interview -

  1. Framework of mvc and web api ands o...read more
  2. How to consume ...read more

Tell us how to improve this page.

Money Honey Financial Services Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Money Honey Financial Services Software Developer Salary
based on 12 salaries
₹2 L/yr - ₹6 L/yr
56% less than the average Software Developer Salary in India
View more details

Money Honey Financial Services Software Developer Reviews and Ratings

based on 4 reviews

4.3/5

Rating in categories

4.8

Skill development

4.1

Work-life balance

4.2

Salary

4.4

Job security

3.9

Company culture

4.1

Promotions

3.9

Work satisfaction

Explore 4 Reviews and Ratings
Financial Advisor
98 salaries
unlock blur

₹1.1 L/yr - ₹6 L/yr

Investment Specialist
14 salaries
unlock blur

₹1.7 L/yr - ₹3.2 L/yr

Software Developer
12 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Back Office Executive
7 salaries
unlock blur

₹1 L/yr - ₹2.5 L/yr

Investment Advisor
6 salaries
unlock blur

₹1.5 L/yr - ₹2 L/yr

Explore more salaries
Compare Money Honey Financial Services with

HDB Financial Services

3.9
Compare

AU Small Finance Bank

4.2
Compare

Bajaj Finance

4.0
Compare

Equitas Small Finance Bank

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