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

Filter interviews by

Jupiter Money Interview Questions, Process, and Tips

Updated 22 Oct 2024

Top Jupiter Money Interview Questions and Answers

View all 27 questions

Jupiter Money Interview Experiences

Popular Designations

29 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 29 May 2022

I was interviewed 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

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

The online test was for 2 hrs in which 5 coding questions were asked. 3 questions were pretty easy and 2 were of medium difficulty level. I was able to solve all 5 questions.

  • Q1. 

    Shortest Path in an Unweighted Graph

    The city of Ninjaland is represented as an unweighted graph with houses and roads. There are 'N' houses numbered 1 to 'N', connected by 'M' bidirectional roads. A road...

  • Ans. 

    Implement a function to find the shortest path in an unweighted graph from a given start house to a destination house.

    • Use Breadth First Search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Maintain a queue to explore neighboring houses and keep track of visited houses to avoid revisiting them.

    • Return the path once the destination house is reached.

    • Example: For input N=8, M=9, S=1, T=8 and roads (1, 2),...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It started with the introduction and then we had a discussion on the projects I had made. He asked for several Backend and Database concepts like locking in DB, sessions, etc as I had mentioned backend internship in my resume. It took around half an hour.

Then he gave me a coding question based on the graph

  • Q1. 

    Capture Region Problem Statement

    You are given a matrix having N rows and M columns. Each cell of the matrix contains either 'X' or 'O'. Your task is to flip all the regions of 'O' that are completely sur...

  • Ans. 

    Given a matrix with 'X' and 'O', flip all 'O' regions completely surrounded by 'X' to 'X'.

    • Iterate through the matrix and identify 'O' regions completely surrounded by 'X'.

    • Use DFS/BFS to mark all 'O's in the surrounded region.

    • Update the matrix by flipping all marked 'O's to 'X'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Madan Mohan Malaviya University Of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteriaGood PH score on ElitmusJupiter Money interview preparation:Topics to prepare for the interview - Array, Graphs, Dynamic Programming, Operating System, Database Management SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice 250+ standard quality questions.
Tip 2 : Do some good real-life projects in Front-end or Backend Development
Tip 3 : Try to find an internship that will not only enhance your development skills but also increase your resume selection chances.

Application resume tips for other job seekers

Tip 1 : Add quality projects (2 will be sufficient)
Tip 2 : Add your coding profile links.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Jupiter Money Software Developer Intern Interview Questions and Answers

Q1. Partial BST Problem Statement Check if a given binary tree is a Partial Binary Search Tree (BST). A Partial BST adheres to the following properties: The left subtree of a node contains only nodes with data less than or equal to the node’s ... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Jupiter Money Interview Questions and Answers for Freshers
illustration image

I applied via LinkedIn and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - Assignment 

Testing Excel knowledge and Operations experience

Round 2 - One-on-one 

(1 Question)

  • Q1. In depth process knowledge, Previous experience, future Outlook about company as well as self.
Round 3 - One-on-one 

(1 Question)

  • Q1. Operations experience and why I was willing to work with company

Interview Preparation Tips

Interview preparation tips for other job seekers - Study the job description well and be prepared for what you have to answer. Go through mock interviews with friends before actually appearing for real interview to be prepared.

Operations Manager Interview Questions asked at other Companies

Q1. That, if a student, who passed 12th and doesn't want to study further so how would you convince him to study more
View answer (5)

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. 

    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

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 a destination cell, consisting only of 1s. If no such path exists, retu... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jupiter Money interview questions for popular designations

 Software Developer

 (5)

 Data Analyst

 (4)

 Software Developer Intern

 (3)

 Risk Analyst

 (1)

 Software Engineer

 (1)

 Assistant Manager

 (1)

 Backend Developer

 (1)

 Software Development Engineer

 (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. 

    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

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 a destination cell, consisting only of 1s. If no such path exists, retu... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top Jupiter Money Interview Questions

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. 

    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

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 a destination cell, consisting only of 1s. If no such path exists, retu... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. 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 Resume tips
Round 2 - Coding Test 

Coding round was for 1 hour. 1 medium-difficulty coding question on Arrays was asked. The code could be written on our IDE. Interviewer was friendly and provided good hints and feedback.

Round 3 - LLD 

(1 Question)

  • Q1. Design a hotel booking management system
  • Ans. 

    A hotel booking management system to handle reservations, room availability, guest information, and payment processing.

    • Create a database to store information on rooms, reservations, guests, and payments

    • Develop a user interface for guests to search for available rooms and make reservations

    • Implement a payment gateway for secure transactions

    • Include features for managing room availability, cancellations, and guest check-in...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General HR questions about our expectations from the job

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
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 Resume 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

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (87)

I was interviewed in Feb 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Two DSA questions were asked in this round in 45 min.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Out...
  • Ans. 

    Find the maximum sum of any contiguous subarray within an array of integers.

    • Iterate through the array and keep track of the maximum sum of subarrays encountered so far.

    • Use Kadane's algorithm to efficiently find the maximum subarray sum.

    • Handle cases where all elements are negative by returning the maximum element in the array.

    • Example: For array [34, -50, 42, 14, -5, 86], the maximum subarray sum is 137.

  • Answered by AI
  • Q2. 

    Odd Occurrence Element Problem Statement

    Given an array of integers where each element appears an even number of times except for one element which appears an odd number of times, find the element that ap...

  • Ans. 

    Find the element that appears an odd number of times in an array of integers.

    • Iterate through the array and use XOR operation to find the element that appears odd number of times.

    • Keep a count of occurrences of each element using a hashmap.

    • Return the element that has an odd count of occurrences.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaM.tech and B.tech banches allowedJupiter Money interview preparation:Topics to prepare for the interview - maths, probability, stack, queue, linked list, pointers, algorithmsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice dsa from leetcode
Tip 2 : Compete in coding contests
Tip 3 : Do at least 2-3 projects

Application resume tips for other job seekers

Tip 1 : If you have some past experience, add it.
Tip 2 : Also add your projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Jupiter Money Software Developer Intern Interview Questions and Answers

Q1. Partial BST Problem Statement Check if a given binary tree is a Partial Binary Search Tree (BST). A Partial BST adheres to the following properties: The left subtree of a node contains only nodes with data less than or equal to the node’s ... read more
View answer (1)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Contribute & help others!
anonymous
You can choose to be anonymous

Jupiter Money Interview FAQs

How many rounds are there in Jupiter Money interview?
Jupiter Money interview process usually has 2-3 rounds. The most common rounds in the Jupiter Money interview process are One-on-one Round, Technical and HR.
How to prepare for Jupiter Money 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 Jupiter Money. The most common topics and skills that interviewers at Jupiter Money expect are HTML, Banking, CMS, Agile and Financial Services.
What are the top questions asked in Jupiter Money interview?

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

  1. What’s strategy will you develop to increase the sal...read more
  2. Creating a high level design of a message queue sys...read more
  3. why cx support what makes you join Jupi...read more
How long is the Jupiter Money interview process?

The duration of Jupiter Money interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

DESIGNATION

DESIGNATION

INTERVIEWS

HARMAN

No Interviews

SALARIES

Aspect Ratio

INTERVIEWS

Pratiti Technologies

No Interviews

INTERVIEWS

HARMAN

No Interviews

INTERVIEWS

Aspect Ratio

No Interviews

DESIGNATION

DESIGNATION

Tell us how to improve this page.

Jupiter Money Interview Process

based on 20 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 750 Interviews
PolicyBazaar Interview Questions
3.6
 • 346 Interviews
PhonePe Interview Questions
4.0
 • 299 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Revolut Interview Questions
2.5
 • 97 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
CRED Interview Questions
3.6
 • 36 Interviews
Upstox Interview Questions
3.7
 • 35 Interviews
LendingKart Interview Questions
3.2
 • 29 Interviews
Zerodha Interview Questions
4.1
 • 9 Interviews
View all

Fast track your campus placements

View all

Jupiter Money Reviews and Ratings

based on 87 reviews

3.3/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

3.4

Salary

3.0

Job security

3.1

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 87 Reviews and Ratings
Customer Support Executive
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Service Executive
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Manager
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Designer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Jupiter Money with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Mobikwik

3.7
Compare

Payed

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