Upload Button Icon Add office photos

Filter interviews by

Money View Backend Developer Interview Questions and Answers

Updated 30 Oct 2024

Money View Backend Developer Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

There was a coding question of string level was Easy to Medium and we can also expect SQL query in this

Round 2 - Low Level Design Round 

(2 Questions)

  • Q1. Design Book My Show
  • Q2. Project Discussion
Round 3 - Behavioral 

(2 Questions)

  • Q1. I Expected the HLD in this but for freshers there is no HLD only DSA, that was N- Queen Problem
  • Q2. Project Discussion that's it
Round 4 - HR 

(2 Questions)

  • Q1. Basic HR Questions
  • Q2. It's easy round

Interview Preparation Tips

Interview preparation tips for other job seekers - Walk through with DB concepts and SQL queries
prepare low level design questions
and prepare leetcode Easy to Medium questions
Good to go now!
all the best!

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2023. There were 4 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 - Coding Test 

Hackerearth Coding Test

Round 3 - Technical 

(2 Questions)

  • Q1. Technical Round with Senior Software Engineer around Java, DSA and APIs
  • Q2. 1. Check Valid Parenthesis, 2. Given a problem design your own API and suitable URL for it Discussions about implementation and designing of the above two questions
Round 4 - One-on-one 

(2 Questions)

  • Q1. One-on-one round with Project manager
  • Q2. Architecture and System design round, but interviewer given me Java Coding , some basic question and asked some questions on SQL then in the middle of the interview he told that we are not going forward wi...

Interview Preparation Tips

Topics to prepare for OneCard Backend Developer interview:
  • Data Structures
  • Algorithms
  • REST API
  • Java
  • Database
Interview preparation tips for other job seekers - Please the availability of the interviewers first then schedule a call. Candidates really do hard work and reach for the final interviews hoping to have atleast a proper interview. If anyone is already selected for the role, don't schedule an interview at all. Even did not received any updates yet.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

There are 3 questions. basic to medium level.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Introduction about yourself
  • Q2. Explain about your projects
  • Q3. Solve a Coding problem
  • Q4. Walk through project code
  • Ans. 

    I will walk through a project code to explain its structure and functionality.

    • Start by explaining the overall architecture of the project

    • Discuss the main components/modules and their interactions

    • Explain any key algorithms or data structures used

    • Highlight any design patterns or best practices implemented

    • Provide examples of specific code snippets to illustrate your points

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jul 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 - Technical 

(2 Questions)

  • Q1. Microservices architecture
  • Q2. High scale system design
  • Ans. 

    Designing high scale systems involves careful planning for scalability, reliability, and performance.

    • Identify the key components of the system and their interactions

    • Use distributed systems and microservices architecture for scalability

    • Implement caching mechanisms to improve performance

    • Utilize load balancing and horizontal scaling to handle increased traffic

    • Monitor system performance and implement auto-scaling mechanism

  • Answered by AI
Round 3 - Coding Test 

Optimise SQL queries to transmit large datasets and check for resiliency

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong technical skills and good communication is a must

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Introduction to yourself?
  • Ans. 

    I am a dedicated and experienced customer service associate with a passion for helping others.

    • I have worked in customer service for 5 years, providing support and resolving issues for customers

    • I am skilled in active listening and problem-solving, ensuring customer satisfaction

    • I have received multiple commendations for my excellent communication skills

    • I am proficient in using customer service software and handling high ...

  • Answered by AI
  • Q2. Writing skills on a random given topic
  • Q3. How much can you do in terms of collection
  • Ans. 

    I am confident in my ability to effectively collect payments and resolve any issues that may arise.

    • I have experience in collections and am familiar with various payment methods

    • I am skilled in communicating with customers to resolve payment issues

    • I am able to work with customers to set up payment plans if necessary

    • I am knowledgeable about relevant laws and regulations regarding collections

    • I am able to maintain accurate

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be considered that you have confidence and will be able to do the given task throughout the week.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Does Java support pass by reference?
  • Ans. 

    Yes

    • Java uses pass by value for all variables, including object references.

    • When an object reference is passed as an argument, a copy of the reference is passed, not the actual object.

    • Modifying the reference inside the method will not affect the original reference outside the method.

    • However, modifications to the object's state inside the method will be visible outside the method.

  • Answered by AI
  • Q2. Explain Singleton Pattern
  • Ans. 

    Singleton pattern restricts the instantiation of a class to a single object.

    • Singleton pattern ensures that only one instance of a class exists throughout the application.

    • It provides a global point of access to the instance.

    • Commonly used in scenarios where a single instance needs to coordinate actions across the system.

    • Example: Database connection manager, logger, configuration manager.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

OneCard user image Kishan KAVATHIYA (Kishu)

posted on 15 May 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Internal Implementation of HashMap
  • Ans. 

    HashMap is implemented using an array of linked lists to handle collisions.

    • HashMap stores key-value pairs in an array of linked lists

    • Hash function is used to determine the index of the array where the key-value pair will be stored

    • Collision handling is done by chaining, where multiple key-value pairs with the same hash value are stored in the same linked list

    • HashMap allows null keys and values

    • HashMap is not synchronized...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Scenarios base conding round

Round 2 - Coding Test 

Questions on strings in javascript.
Basic javascript and typescript.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on cloud technologies
Round 4 - HR 

(1 Question)

  • Q1. Cultural fit and salary related discussion
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions on data structures
Round 2 - Behavioral 

(1 Question)

  • Q1. Second round was Managerial Round. The interviewer basically had a conversation with me and asked some hr questions also.
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions

I applied via Job Portal and was interviewed in Apr 2022. There were 5 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 - Coding Test 

It was simple program of url shorting for registered and non registered users each request must have unique shortened url.

Round 3 - Technical 

(2 Questions)

  • Q1. Palindrome implementation and run time
  • Ans. 

    A palindrome is a word or phrase that reads the same backward as forward. Implementing it involves comparing the first and last characters and iterating towards the middle.

    • Implement a function that takes a string as input and returns true if it is a palindrome, false otherwise.

    • Use two pointers, one starting from the beginning and the other from the end, and compare the characters at each position.

    • If the characters matc...

  • Answered by AI
  • Q2. DSA and various algorithms and run time
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was one on one with VP of engineering. Basic q and a regarding role and responsibilities
Round 5 - HR 

(1 Question)

  • Q1. Relocation, Reason For job change, future plan, careers objective

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA and algorithms
In coding test they asked you explain code and if there is any improvement needed in code.

Skills evaluated in this interview

Money View Interview FAQs

How many rounds are there in Money View Backend Developer interview?
Money View interview process usually has 4 rounds. The most common rounds in the Money View interview process are Coding Test, Behavioral and HR.
How to prepare for Money View Backend 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 View. The most common topics and skills that interviewers at Money View expect are Backend, Big Data, Data Warehousing, Distribution System and Hadoop.
What are the top questions asked in Money View Backend Developer interview?

Some of the top questions asked at the Money View Backend Developer interview -

  1. I Expected the HLD in this but for freshers there is no HLD only DSA, that was ...read more
  2. Design Book My S...read more
  3. Project Discussion that's...read more

Tell us how to improve this page.

Money View Backend Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

CRED Interview Questions
3.5
 • 37 Interviews
Kissht Finance Interview Questions
3.9
 • 31 Interviews
Jupiter Money Interview Questions
3.3
 • 29 Interviews
Uni Cards Interview Questions
3.8
 • 24 Interviews
indiagold Interview Questions
4.2
 • 22 Interviews
Jodo Interview Questions
3.6
 • 22 Interviews
OneCard Interview Questions
3.5
 • 21 Interviews
Ocrolus East Interview Questions
3.5
 • 19 Interviews
View all
Money View Backend Developer Salary
based on 5 salaries
₹15 L/yr - ₹25.5 L/yr
127% more than the average Backend Developer Salary in India
View more details

Money View Backend Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Process Associate
91 salaries
unlock blur

₹1.8 L/yr - ₹4.1 L/yr

Collection Associate
29 salaries
unlock blur

₹2 L/yr - ₹3.7 L/yr

Team Lead
23 salaries
unlock blur

₹2.4 L/yr - ₹6.2 L/yr

Senior Brand and Marketing Manager
22 salaries
unlock blur

₹15 L/yr - ₹30 L/yr

Software Engineer
21 salaries
unlock blur

₹13 L/yr - ₹23 L/yr

Explore more salaries
Compare Money View with

Kissht Finance

3.9
Compare

Ocrolus East

3.5
Compare

KhataBook

3.4
Compare

Uni Cards

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