Upload Button Icon Add office photos

Filter interviews by

Money View SDE (Software Development Engineer) Interview Questions and Answers

Updated 27 Jan 2023

Money View SDE (Software Development Engineer) Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Jul 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 - Aptitude Test 

Quantitative based questions and 2 easy-medium Coding Questions (Tree & Arrays)

Round 3 - Coding Test 

Went through resume and 2 coding questions (medium) (rat in a maze and follow up question) (largest area in a histogram)

Round 4 - Coding Test 

One coding question (Sum Tree) and few SQL & DBMS queries.

Round 5 - HR 

(3 Questions)

  • Q1. Why do you want to join Money view
  • Q2. Tell me about your 5 year plan
  • Q3. Tell me about yourself and your hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - In BMS the company only opens for Circuital branches.

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before Apr 2022. There were 4 interview rounds.

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 - Technical 

(2 Questions)

  • Q1. Simple 3 questions of DSA with brute force to the optimal approach
  • Q2. 2 stacks, palindrome tricky, string question (simple)
Round 3 - One-on-one 

(2 Questions)

  • Q1. 2 stacks with optinal approach
  • Ans. 

    Implementing 2 stacks with optional approach

    • Two stacks can be implemented in a single array by dividing it into two halves

    • Optional approach can be implemented by using a third parameter to indicate which stack to use

    • Push and pop operations can be performed on both stacks independently

  • Answered by AI
  • Q2. Some hr interview question
Round 4 - HR 

(2 Questions)

  • Q1. Marital status discussion
  • Q2. Future discusssions about what i want nd plans

Interview Preparation Tips

Topics to prepare for Open Financial Technologies Private Limited SDE (Software Development Engineer) interview:
  • DSA
  • OS
  • DBMS
  • strings
Interview preparation tips for other job seekers - DSA kro mast raho, soft skills top notch is a must for cracking any interview

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.

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Use a set to store distinct elements for efficient processing.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substring...

  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Add skills iff you are sure

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where there are less than 3 elements in the array.

    • Consider edge cases like negative integers and duplicates.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Consider using a set to ensure distinct elements in the array.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Use the formula for finding the intersection point of two lines in 2D space.

    • Handle precision issues that may arise due to floating-point arithmetic.

    • Return -1.000000 -1.000000 if the lines do not intersect.

    • Ensure the lines 'AB' and 'PQ' are distinct.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Dec 2021.

Round 1 - Video Call 

Round duration - 90 Minutes
Round difficulty - Easy

Problem solving using SQL questions

Round 2 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Easy

A marketing campaign is run, how will you decide metrics to be tracked. Techincaly a KPI round

  • Q1. In a marketing campaign, how would you decide which metrics to track?
  • Ans. 

    Metrics selection based on campaign objectives, target audience, and key performance indicators.

    • Identify campaign objectives and goals

    • Consider target audience and their behavior

    • Select key performance indicators (KPIs) relevant to the campaign

    • Track metrics such as conversion rate, click-through rate, ROI, customer acquisition cost

    • Analyze data to measure success and make data-driven decisions

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

Social empathatic fit round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Data Analyst in BangaloreEligibility criteriaNoJupiter Money interview preparation:Topics to prepare for the interview - SQL, Tablea, Data Visualisation, Key Metrics for a Product, Data Visualisation using PythonTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : SQL logics to be understood completely
Tip 2 : A good running working logic of Python
Tip 3 : Basics of Dashboarding

Application resume tips for other job seekers

Tip 1 : One pager , single column resume which shows all your skills
Tip 2 : Mention all things that make you relevant for the job

Final outcome of the interviewSelected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2022. There were 6 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 - Aptitude Test 

Basic aptitude test to check the right skill set

Round 3 - Technical 

(1 Question)

  • Q1. Technical knowledge about the role, responsibilities, etc with various situation handling, decision making
Round 4 - One-on-one 

(1 Question)

  • Q1. One on one round with AVP on skill set and knowledge
Round 5 - One-on-one 

(1 Question)

  • Q1. One on one round with the CS head
Round 6 - HR 

(1 Question)

  • Q1. Final discussion on pay package, joining and other stuffs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for unlearn old things and get the new things
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 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 - Technical 

(1 Question)

  • Q1. 1 - Easy Medium Question. Discuss the approach with interviewer and then implement it. The code should work, thats important.
Round 3 - Technical 

(1 Question)

  • Q1. LLD round to design Chess.
Round 4 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Grilling on resume and past experience questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic SQL questions are asked in this round Some theory questions are asked as well

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on SQL
practice plenty of SQL and case study problems

Money View Interview FAQs

How many rounds are there in Money View SDE (Software Development Engineer) interview?
Money View interview process usually has 5 rounds. The most common rounds in the Money View interview process are Coding Test, Resume Shortlist and Aptitude Test.

Tell us how to improve this page.

Money View SDE (Software Development Engineer) Interview Process

based on 1 interview

Interview experience

4
  
Good
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
Jodo Interview Questions
3.6
 • 23 Interviews
indiagold Interview Questions
4.2
 • 22 Interviews
OneCard Interview Questions
3.5
 • 22 Interviews
Ocrolus East Interview Questions
3.5
 • 19 Interviews
View all
Money View SDE (Software Development Engineer) Salary
based on 8 salaries
₹13 L/yr - ₹36 L/yr
27% less than the average SDE (Software Development Engineer) Salary in India
View more details
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