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

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Had 2 data structure questions of easy and medium level.

Round 2 - One-on-one 

(1 Question)

  • Q1. Got 2 DSA questions with further modifications of medium level
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Moderate coding question

Round 2 - Assignment 

Assignment based on a app

Round 3 - Technical 

(2 Questions)

  • Q1. What is inheritance in java?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behavior from another class.

    • Inheritance allows for code reusability and promotes a hierarchical relationship between classes.

    • Subclasses can access the methods and fields of their superclass.

    • Example: class Dog extends Animal {} - Dog inherits properties and behavior from Animal class.

  • Answered by AI
  • Q2. Difference between OOP and POP
  • Ans. 

    OOP focuses on objects and classes, while POP focuses on procedures and functions.

    • OOP emphasizes data encapsulation and inheritance

    • POP emphasizes sequential execution of procedures

    • Example of OOP: Java, C++

    • Example of POP: C, Pascal

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Where do you see in next 5 years?
  • Q2. What is preferred job location

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

About 2 hours long interview in 3 sets one technical and 2 HR rounds

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

I applied via Referral and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Coding Test 

Java, HTML, CSS, BASIC aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Linked list code, core Java questions, project discussion
Round 4 - HR 

(1 Question)

  • Q1. Compensation discussion
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 Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Coding Test 

Core Java, HTML, CSS, BASIC aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Linked list coding, CORE JAVA, Project discussion
Round 4 - HR 

(1 Question)

  • Q1. Compensation discussion
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

SALARIES

Concentrix Corporation

INTERVIEWS

Money Honey Financial Services

No Interviews

INTERVIEWS

Money Honey Financial Services

No Interviews

SALARIES

Concentrix Corporation

SALARIES

Concentrix Corporation

SALARIES

Concentrix Corporation

INTERVIEWS

Money Honey Financial Services

No Interviews

SALARIES

Concentrix Corporation

LIST OF COMPANIES

Bill Gosling Outsourcing India

Locations

SALARIES

Concentrix Corporation

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 10 salaries
₹2.5 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

3.8/5

Rating in categories

4.4

Skill development

3.6

Work-life balance

3.8

Salary

3.6

Job security

3.0

Company culture

3.9

Promotions

3.3

Work satisfaction

Explore 4 Reviews and Ratings
Financial Advisor
97 salaries
unlock blur

₹1.1 L/yr - ₹4.5 L/yr

Investment Specialist
13 salaries
unlock blur

₹1.7 L/yr - ₹3.5 L/yr

Software Developer
10 salaries
unlock blur

₹2.5 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