Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Jupiter Money Team. If you also belong to the team, you can get access from here

Jupiter Money Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 82 Reviews

Filter interviews by

Jupiter Money Software Developer Interview Questions, Process, and Tips

Updated 28 Sep 2023

Top Jupiter Money Software Developer Interview Questions and Answers

  • Q1. Shortest Path in a Binary Matrix Problem Statement Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to ...read more
  • 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 th ...read more
  • Q3. 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 ...read more
View all 6 questions

Jupiter Money Software Developer Interview Experiences

5 interviews found

Software Developer Interview Questions & Answers

user image Ali Mobasshir

posted on 28 Sep 2023

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

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

First round was coding round, where i was asked 2 DS algo questions, 1 was easy and other was of medium difficulty

  • Q1. 

    Shortest Path in a Binary Matrix Problem Statement

    Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to a destination cell, consisting only...

  • Ans. 

    First i explained the approach. when he was satisfied with the approach, I was asked to code it.

  • Answered Anonymously
Round 2 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Easy

I was asked to design url shortner

  • Q1. Can you explain how you would design a URL shortener?
  • Ans. 

    Tip 1 : First clearly ask the requirements of the problem.
    Tip 2 : Start with simple design and then narrow the constraints 
    Tip 3 : Explain the reasons begin ur choices of data structures/ DB

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

This was hiring manager round

  • Q1. Can you discuss a coding problem you encountered, your past projects, and any behavioral questions related to your experiences?
  • Ans. 

    Tip 1 : Prepare well about ur past projects, bcoz they will be asking it for sure
    Tip 2 : Be confident and humble
    Tip 3 : Be Genuine

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating System, DBMS, OOPSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and algo well(i prepared from GFG)
Tip 2 : Must know basics of DBMS and OS
Tip 3 : Be confident and genuine

Application resume tips for other job seekers

Tip 1 : Prepare resume iteratively
Tip 2 : show ur resume to seniors and ask for suggestions

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

I was interviewed 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. Sorting Based Approach

    The idea is to sort the array in non-decreasing order, and then return the third element from the back of the array.

     

    The steps are as follows :

    1. Sort the array in non-decreasing order.
    2. Return the third element from the back of the array.
    Space Complexity: O(logn)Explanation:

    O(1)

     

    We are not using any extra space. Thus, the overall space complexity will be O(1).

    Time Complexity: O(nlogn)Explan...
  • Answered Anonymously
  • 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. Brute Force
    1. Generate substrings of the given string such that substring having greater length will be generated first.
    2. To do this, run a loop where iterator ‘LEN’ will go from N to 1, where N is the length of the given string.
    3. Run a nested loop and fix an iterator ‘j’ that will point at the starting index of the substring.
    4. Get the substring from ‘j’ to ‘j’ + ‘LEN’.
    5. If the substring is a palindrome, return the substring (as ...
  • Answered Anonymously
  • 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. Mathematics

    The idea behind this approach is to derive the equation of both of the lines ‘AB’ and ‘PQ’ and check if the Slope of these two lines is equal or not. Following are the two cases:

    • If the slope of ‘AB’ and ‘PQ’ is the same that means they are parallel so we return -1.
    • Else there must a point where ‘AB’ and ‘PQ’ are intersecting.

    For a better understanding of this approach, Assume that we have two points which are...

  • Answered Anonymously

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 was interviewed 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. Sorting Based Approach

    The idea is to sort the array in non-decreasing order, and then return the third element from the back of the array.

     

    The steps are as follows :

    1. Sort the array in non-decreasing order.
    2. Return the third element from the back of the array.
    Space Complexity: O(logn)Explanation:

    O(1)

     

    We are not using any extra space. Thus, the overall space complexity will be O(1).

    Time Complexity: O(nlogn)Explan...
  • Answered Anonymously
  • 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. Brute Force
    1. Generate substrings of the given string such that substring having greater length will be generated first.
    2. To do this, run a loop where iterator ‘LEN’ will go from N to 1, where N is the length of the given string.
    3. Run a nested loop and fix an iterator ‘j’ that will point at the starting index of the substring.
    4. Get the substring from ‘j’ to ‘j’ + ‘LEN’.
    5. If the substring is a palindrome, return the substring (as ...
  • Answered Anonymously
  • 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. Mathematics

    The idea behind this approach is to derive the equation of both of the lines ‘AB’ and ‘PQ’ and check if the Slope of these two lines is equal or not. Following are the two cases:

    • If the slope of ‘AB’ and ‘PQ’ is the same that means they are parallel so we return -1.
    • Else there must a point where ‘AB’ and ‘PQ’ are intersecting.

    For a better understanding of this approach, Assume that we have two points which are...

  • Answered Anonymously

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

Jupiter Money interview questions for designations

 Software Developer Intern

 (3)

 Software Engineer

 (1)

 Backend Developer

 (1)

 Software Development Engineer

 (1)

 Senior Software Engineer

 (1)

 Front end Engineer

 (1)

 Sdet

 (1)

I was interviewed 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. Sorting Based Approach

    The idea is to sort the array in non-decreasing order, and then return the third element from the back of the array.

     

    The steps are as follows :

    1. Sort the array in non-decreasing order.
    2. Return the third element from the back of the array.
    Space Complexity: O(logn)Explanation:

    O(1)

     

    We are not using any extra space. Thus, the overall space complexity will be O(1).

    Time Complexity: O(nlogn)Explan...
  • Answered Anonymously
  • 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. Brute Force
    1. Generate substrings of the given string such that substring having greater length will be generated first.
    2. To do this, run a loop where iterator len will go from N to 1, where N is the length of the given string.
    3. Run a nested loop and fix an iterator j that will point at the starting index of the substring.
    4. Get the substring from j to j+len.
    5. If the substring is a palindrome, return the substring (As the substrin...
  • Answered Anonymously
  • 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. Mathematics

    The idea behind this approach is to derive the equation of both of the lines ‘AB’ and ‘PQ’ and check if the Slope of these two lines is equal or not. Following are the two cases:

    • If the slope of ‘AB’ and ‘PQ’ is the same that means they are parallel so we return -1.
    • Else there must a point where ‘AB’ and ‘PQ’ are intersecting.

    For a better understanding of this approach, Assume that we have two points which are...

  • Answered Anonymously

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

Get interview-ready with Top Jupiter Money Interview Questions

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Find Target Element in a rotating sorted Array.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Binary search algo quetion

Interview Preparation Tips

Interview preparation tips for other job seekers - na
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

20 MCQs + 2 Coding Question

Round 2 - One-on-one 

(1 Question)

  • Q1. Trapping Rain Water
Round 3 - Technical 

(1 Question)

  • Q1. Questions on time and space complexity
Round 4 - HR 

(1 Question)

  • Q1. General Discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. LLD HLD HM rounds
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Guwahati 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 

Mcqs based on cs fundamentals and 2_3 coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. 2-3 DSA questions to be written on paper in the interview itself
  • Q2. Merge 2 sorted Linked list into 1
  • Ans. 

    Merge two sorted linked lists into one.

    • Create a new linked list to store the merged list.

    • Compare the values of the nodes from both lists and add the smaller value to the new list.

    • Move the pointer of the list with the smaller value to the next node.

    • Repeat the comparison and addition until one of the lists is empty.

    • Add the remaining nodes from the non-empty list to the new list.

    • Return the new merged list.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. A full cv analysis interview round discussion on all the projects and team work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DSA quite well and make sure you know everything about your CV and must have some team work skills

Skills evaluated in this interview

Jupiter Money Interview FAQs

How many rounds are there in Jupiter Money Software Developer interview?
Jupiter Money interview process usually has 4 rounds. The most common rounds in the Jupiter Money interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Jupiter Money Software Developer interview?

Some of the top questions asked at the Jupiter Money Software Developer interview -

  1. 1 - Easy Medium Question. Discuss the approach with interviewer and then implem...read more
  2. LLD round to design Che...read more

Tell us how to improve this page.

Jupiter Money Software Developer Interview Process

based on 2 interviews

1 Interview rounds

  • Coding Test Round
View more

Fast track your campus placements

View all
Jupiter Money Software Developer Salary
based on 5 salaries
₹20 L/yr - ₹22.3 L/yr
158% more than the average Software Developer Salary in India
View more details

Jupiter Money Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Customer Service Executive
15 salaries
unlock blur

₹5 L/yr - ₹6.4 L/yr

Customer Support Executive
14 salaries
unlock blur

₹3.8 L/yr - ₹6 L/yr

Software Engineer
12 salaries
unlock blur

₹15.9 L/yr - ₹28 L/yr

Product Manager
10 salaries
unlock blur

₹13 L/yr - ₹40 L/yr

Product Designer
8 salaries
unlock blur

₹10.3 L/yr - ₹30 L/yr

Explore more salaries
Compare Jupiter Money with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
Compare

Payed

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