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 Software Developer Intern Interview Questions, Process, and Tips

Updated 31 May 2022

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 ...read more
  • Q2. 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 ...read more
  • Q3. 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 ...read more
View all 6 questions

Jupiter Money Software Developer Intern Interview Experiences

3 interviews found

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Timings: it was late night. I started the test at 10 pm

  • 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...
  • Ans. 

    Check if a binary tree is a Partial Binary Search Tree (BST) based on specific properties.

    • Traverse the tree in level order and check if each node satisfies the properties of a Partial BST.

    • Use recursion to check if the left and right subtrees are also Partial BSTs.

    • Compare the data of each node with its children to ensure the BST properties are maintained.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, the outp

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was the interviw round.
the environment was good.
the interviewer was very nice to me.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list.

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

    • Iterate through both input linked lists simultaneously, comparing and adding nodes to the result list.

    • Handle cases where one list is empty or both lists are empty.

    • Ensure the final merged list is sorted in ascending order.

    • Use constant space complexity and linear time complexity for the solution.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - Intern in BengaluruEligibility criterianoneJupiter Money interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Spring Boot with java, Operating Systems, Database Management System, Amazon Web ServicesTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Please have a strong hold on data structures mainly linked lists, arrays, maths, stacks, trees
Tip 2 : Must explore about DBMS. Means SQL, writing efficient queries, about indexing and other SQL backend process.
Tip 3 : Should work on spring boot. try build some project using spring boot with java (Gradle) as Jupiter's backend tech is mainly based on spring boot with java.

Application resume tips for other job seekers

Tip 1 : Mention only those skills on which you have worked on properly. no need to flood the resume with skills about which you need a little.
Tip 2 : Must mention the links of projects which you have worked on.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview 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

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

I appeared for an interview 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

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.
  • Ans. 

    Search for target element in a rotated sorted array.

    • Use binary search to find the pivot point where rotation happens.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle cases where the target element is on the left or right side of the pivot.

  • Answered by AI
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
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Jun 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. DSA Round & Introduction Round
  • Q2. DP Question related to subsequence
Round 2 - Technical 

(2 Questions)

  • Q1. Design Parking Lot
  • Ans. 

    Design a parking lot system with multiple levels and spots for cars.

    • Create a class for ParkingLot with attributes like levels, spots per level, etc.

    • Implement methods for parking a car, removing a car, checking availability, etc.

    • Consider implementing a ticketing system for tracking parked cars.

    • Utilize data structures like arrays, lists, or maps to manage parking spots efficiently.

  • Answered by AI
  • Q2. Sort Numbers with large file
  • Ans. 

    Use external sorting algorithm like merge sort to efficiently sort numbers in a large file.

    • Break the large file into smaller chunks that can fit into memory

    • Sort each chunk individually using a sorting algorithm like merge sort

    • Merge the sorted chunks back together to get the final sorted result

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Easy doable questions ( can be completed in 30 mins)

Round 2 - Technical 

(1 Question)

  • Q1. Basic DSA, OOPS, SQL questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Complex and hard DSA problems( Dynamic programming questions) to be written on paper.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA thoroughly

I appeared for an interview in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

The online round had 2 coding questions and one question of a regular expression.

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    Find all pairs of elements in an array that add up to a given target.

    • Iterate through the array and for each element, check if the complement (target - current element) exists in a hash set.

    • If the complement exists, add the pair to the result. If not, add the current element to the hash set.

    • Handle cases where the same element is used twice in a pair (e.g., target = 6, array = [3, 3]).

  • Answered by AI
  • Q2. 

    Increasing Subsegment Problem Statement

    Given a sequence ARR consisting of N integers, your task is to identify the longest subsegment of ARR, where you can change at most one number to make the subsegmen...

  • Ans. 

    Find the longest subsegment where at most one number can be changed to make it strictly increasing.

    • Iterate through the array and keep track of the longest increasing subsegment with at most one change.

    • If a number violates the increasing order, try changing it and check if the subsegment becomes strictly increasing.

    • Update the length of the longest subsegment found so far.

    • Return the length of the longest subsegment for e

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

First 10 minutes started with the Introduction. Then he asked about my projects. He seemed interested in my projects and asked a lot of questions about them. He asked questions related to Node Js, React Js, Mongo DB, AWS as all these were mentioned in my Resume. Around 25 minutes was completed explaining each and everything.

Then he started with the coding questions. I was allowed to share my screen and use any of my favourite text editors. I chose ‘VS Code’.

I was able to solve 2 coding questions very easily. I got stuck in the puzzle as I didn’t solve any puzzles before. I was able to come up with different approaches, but they weren’t the most optimal. He tried giving me a lot of hints but still wasn’t able to solve it. I had a positive can-do attitude throughout, and I was really close to solving it.

Feedback: He told me I performed well and asked if I had any questions for him. I asked for the solution to the puzzle. He explained to me the solution and I told him that I will practice puzzles.

Around 5-6 students got selected for 2nd Interview.

  • Q1. 

    Move Zeros To Left

    You are provided an array ARR of integers. Your task is to rearrange this array such that all elements with zero values are moved to the left, and all non-zero elements follow them, pre...

  • Ans. 

    Rearrange array with zeros on the left and non-zeros on the right while maintaining original order.

    • Iterate through the array from right to left, moving non-zero elements to the end of the array.

    • Track the index where non-zero elements should be placed.

    • Fill the beginning of the array with zeros and the rest with non-zero elements in their original order.

  • Answered by AI
  • Q2. 

    Maximum Sum of Disjoint Pairs with Specific Difference

    Given an array of integers and a number K, your task is to form pairs of elements from the array such that the absolute difference between them is st...

  • Ans. 

    Find maximum sum of disjoint pairs with specific difference in an array.

    • Sort the array in non-decreasing order.

    • Iterate through the array and form pairs with absolute difference less than K.

    • Keep track of the sum of disjoint pairs to maximize it.

    • Return the maximum sum obtained.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 35 minutes
Round difficulty - Medium

It started with a brief Introduction and in-depth discussions on projects. He also asked me a lot of questions about my previous internship. He asked me some behavioural questions as well.

I was able to solve the question, and he did not ask me any other questions. This round was really short for me and was finished in around 35 minutes, well before time. I asked about my feedback, and he told me that the ‘HR’ will get back to me. I thought he was not satisfied with my answers and I will be rejected though I gave very good answers to every question.

3 students got selected for the next round. I think he was satisfied and did not want to waste more time asking questions.

  • Q1. 

    Polynomial Simplification Problem Statement

    You are provided with two arrays representing the coefficients and degrees of a polynomial expression. Your task is to simplify this polynomial into its general...

  • Ans. 

    Simplify a polynomial expression by combining like terms and arranging them in descending order of degrees.

    • Iterate through the coefficients and degrees arrays to combine like terms

    • Create a new array to store the simplified polynomial in descending order of degrees

    • Return the simplified polynomial array

  • Answered by AI
Round 4 - HR 

Round duration - 60 minutes
Round difficulty - Medium

It started with an introduction and discussion on projects. He seemed very curious about my project and went ahead to cross-question every functionality. We discussed everything and how the code works. He asked me a lot of questions on ‘Socket’ as my project mentioned it.

HR-related questions such as:
Why do you want to join the company?
Where do you see yourself in the next 5 years?
What are your strengths and weakness?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lovely Professional University. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPAAcko interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Puzzles, Project, Mock InterviewsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must know the standard algorithms (eg: searching, sorting)
Tip 2 : Practise mock interviews with your friends

Application resume tips for other job seekers

Tip 1 : Project with the deployed link and Github link
Tip 2 : Don't put information which is not relevant to the job profile

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Dec 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Easy

  • Q1. 

    Move Zeros to Left Problem Statement

    Your task is to rearrange a given array ARR such that all zero elements appear at the beginning, followed by non-zero elements, while maintaining the relative order of...

  • Ans. 

    Rearrange an array such that all zero elements appear at the beginning, followed by non-zero elements, maintaining relative order of non-zero elements.

    • Iterate through the array and move all zero elements to the left side of the array while maintaining the relative order of non-zero elements.

    • Use two pointers approach to swap elements efficiently.

    • Ensure to solve the problem in linear time and constant space complexity.

    • Ex...

  • Answered by AI
  • Q2. 

    Rat in a Maze Problem Statement

    Given a maze of size N * N with a rat placed at the top-left corner, find and print all possible paths that the rat can take to reach the bottom-right corner. The rat can m...

  • Ans. 

    Find and print all possible paths for a rat to reach the bottom-right corner of a maze.

    • Create a recursive function to explore all possible paths in the maze.

    • Keep track of the current path and mark visited cells.

    • Return the paths as matrices with 1 for cells in the path and 0 for others.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

First 10 minutes started with the Introduction. Then he asked about my projects. He seemed interested in my projects and asked a lot of questions about them.

  • Q1. 

    Matrix Chain Multiplication Problem Statement

    You are provided with a chain of matrices A1, A2, A3, ..., An. The goal is to determine the minimum number of scalar multiplications needed to multiply these ...

  • Ans. 

    The goal is to determine the minimum number of scalar multiplications needed to multiply a chain of matrices together.

    • Understand the matrix chain multiplication problem statement and how the dimensions of matrices are defined by the input array.

    • Implement a dynamic programming approach to find the minimum cost of matrix multiplication.

    • Consider the constraints provided and optimize the solution accordingly.

    • Test the solut...

  • Answered by AI
  • Q2. How would you design an application like Instagram?
  • Ans. 

    Designing an application like Instagram involves creating a platform for sharing photos and videos with social networking features.

    • Implement user profiles with the ability to upload, like, comment, and share photos/videos

    • Develop a news feed algorithm to display content based on user preferences and interactions

    • Include features like filters, hashtags, geotagging, and direct messaging

    • Integrate push notifications for like...

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BengaluruEligibility criteriaResume ShortlistingAcko interview preparation:Topics to prepare for the interview - Data Structures, OOPS, System Design, Dynamic Programming, Puzzles, Competitive CodingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Good understanding OOPS
Tip 2 : Practice standard Ds and Algo questions 
Tip 3 : Be confident

Application resume tips for other job seekers

Tip 1 : Resume should be one page.
Tip 2 : Don't mention those things your not confident of

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in May 2022.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was scheduled with the SDE-2, we started with the introduction than he jumped to the dsa questions. First question he asked me was leetcode 3 sum problem, we discussed the approach than I wrote the code for that problem. Second question was of arrays and maps I didn't remember the exact question but that was also some modified version of k sum subarray. Than he asked many questions related to oops, I answered most of them than he asked me for any qiuestions and we dropped the call.

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. 

    The task is to find all distinct triplets in an array that sum up to a specified number.

    • Iterate through all possible triplets using three nested loops.

    • Check if the sum of the triplet equals the target sum.

    • Print the triplet if found, else print -1.

  • Answered by AI
  • Q2. 

    K Sum Subset Problem Statement

    You are provided with an array arr of size N and an integer K. Your objective is to compute the maximum sum of a subset of the array such that this sum does not exceed K.

    E...

  • Ans. 

    Find the maximum sum of a subset of an array that does not exceed a given value K.

    • Sort the array in descending order to maximize the sum.

    • Iterate through the array and add elements to the sum until it exceeds K.

    • Return the sum obtained before exceeding K.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

This round was arranged with the Engineering Manager, we started with the introduction then he asked me to explain my project, I did that. After that he asked me one pattern question, I coded that than he asked me one more array question of finding mean, mode, median, I partially solved that question. Than he asked me for any questions and we dropped the call.

  • Q1. 

    Diamond Pattern Grid Problem

    Create a grid pattern of size R rows and C columns, where each cell contains a diamond-like shape of size S. The diamond shape is made with characters ‘/’ and ‘\’ for the bord...

  • Ans. 

    Create a grid pattern with diamond shapes of given size in each cell.

    • Iterate through each cell in the grid and construct the diamond shape based on the size provided.

    • Use 'e' for the outer space, '/' and '' for the borders, 'o' for the inner space of the diamond.

    • Adjust the positioning of characters based on the size of the diamond to create the desired pattern.

  • Answered by AI
  • Q2. 

    Mean, Median, and Mode Problem Statement

    Given an integer array ARR of size N, you need to compute the following three statistical measures:

    1. Mean: Implement the function mean() to calculate the mean o...
  • Ans. 

    Implement functions to calculate mean, median, and mode of an integer array.

    • Calculate mean by summing all elements and dividing by total count

    • Calculate median by sorting array and finding middle element(s)

    • Calculate mode by finding element with highest frequency, return smallest if multiple

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Agrasen Institute Of Technology. Eligibility criteriaNAMobiKwik interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Oops, Computer networks, Operating systems, projectsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 300 Questions from leetcode
Tip 2 : Prepare your project.

Application resume tips for other job seekers

Tip 1 : Add at least 4 projects.
Tip 2 : Add your coding profiles and GPA.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Fast track your campus placements

View all

Jupiter Money Software Developer Intern Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Customer Support Executive
14 salaries
unlock blur

₹3.8 L/yr - ₹6 L/yr

Customer Service Executive
14 salaries
unlock blur

₹5 L/yr - ₹6.4 L/yr

Software Development Engineer II
12 salaries
unlock blur

₹16.5 L/yr - ₹44 L/yr

Product Manager
12 salaries
unlock blur

₹12 L/yr - ₹39 L/yr

Senior Product Manager
9 salaries
unlock blur

₹38 L/yr - ₹62 L/yr

Explore more salaries
Compare Jupiter Money with

Rupeek

3.7
Compare

Razorpay

3.6
Compare

ACKO

3.7
Compare

Revolut

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