Upload Button Icon Add office photos

Filter interviews by

JUSPAY Interview Questions, Process, and Tips

Updated 22 Dec 2024

Top JUSPAY Interview Questions and Answers

View all 14 questions

JUSPAY Interview Experiences

Popular Designations

21 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 Graph Questions Were asked of difficulty medium to hard.

Round 2 - Case Study 

Hackathon round which revolved around multithreading

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

Basic aptitude,sql ques

Round 2 - Assignment 

Visualizing the dataset information

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)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Assignment 

Txn flow analysis and drop outs

Round 2 - Technical 

(2 Questions)

  • Q1. SQL query for specific case
  • Ans. 

    SQL query to retrieve specific data based on a condition

    • Use SELECT statement to specify the columns to retrieve

    • Use WHERE clause to specify the condition for filtering the data

    • Use JOIN clause to combine data from multiple tables if needed

  • Answered by AI
  • Q2. 5 coins problem
Round 3 - One-on-one 

(2 Questions)

  • Q1. Analytical skills and approach
  • Q2. Product thinking in few aspects

Skills evaluated in this interview

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 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 - One-on-one 

(1 Question)

  • Q1. Case study round guesstimates
Round 3 - Coding Test 

Hackathon based on Haskell language

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

JUSPAY interview questions for popular designations

 Software Developer

 (5)

 Product Manager

 (2)

 SDE

 (2)

 Software Developer Intern

 (2)

 Associate Product Manager

 (1)

 Data Analyst

 (1)

 Front end Developer

 (1)

 Product Solution Engineer

 (1)

I applied via Campus Placement

Round 1 - Coding Test 

It was a hard level test.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions asked from R language.
  • Q2. Assessment given on R language.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and listen to them carefully.

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

Get interview-ready with Top JUSPAY Interview Questions

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

It had some coding questions related to graph.

  • Q1. 

    Dijkstra's Shortest Path Problem Statement

    You are given an undirected graph with V vertices (numbered from 0 to V-1) and E edges. Each edge connects two nodes u and v and has an associated weight represe...

  • Ans. 

    The question is about finding the shortest path distance from a source node to all vertices in an undirected graph.

    • The graph is represented by the number of vertices and edges, followed by the edges and their distances.

    • The task is to find the shortest path distance from the source node (0) to all other nodes.

    • If a node is disconnected from the source node, print the maximum positive integer value (2147483647).

    • Implement ...

  • Answered by AI
  • Q2. 

    Path Existence in Directed Graph

    Given a directed and unweighted graph characterized by vertices 'V' and edges 'E', determine if a path exists from a specified 'source' vertex to a 'destination' vertex. T...

  • Ans. 

    The task is to check if there exists a path from a given source vertex to a destination vertex in a directed and unweighted graph.

    • Read the number of test cases.

    • For each test case, read the number of vertices and edges.

    • Read the edges of the graph.

    • Read the source and destination vertices.

    • Implement a graph traversal algorithm (e.g., BFS or DFS) to check if a path exists from the source to the destination.

    • Print 'true' if a

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Hard

The round was really tough only 1 coding question was asked

  • Q1. 

    Encode N-ary Tree to Binary Tree Problem Statement

    You are provided with an N-ary tree constituted of 'N' nodes, where node '1' is the head of the tree. Your task is to encode this N-ary tree into a binar...

  • Ans. 

    The task is to encode an N-ary tree into a binary tree and then decode the binary tree back into the original N-ary tree.

    • Encode the N-ary tree by representing each node as a binary tree node with its first child as the left child and subsequent children as the right child.

    • To decode the binary tree, traverse the binary tree and for each node, create a new N-ary tree node with its left child as the first child and subseq...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. Eligibility criteriaPassouts 2020/2021JUSPAY interview preparation:Topics to prepare for the interview - Strings, Arrays, Sorting algorithms, Linked List, Loops, Sliding windows, Graphs, Trees, OOPS, DSA, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 2 projects
Tip 2 : Complete competitive programming
Tip 3 : Practice more interview Questions particular to the company applying to

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Try to wrap resume in one page

Final outcome of the interviewRejected

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was late evening. Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Q2. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

Interview Preparation Tips

Eligibility criteriaAbove 6 CGPAJUSPAY 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 : Do some projects.
Tip 2 : Practice dynamic programming.
 

Application resume tips for other job seekers

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

Final outcome of the interviewRejected

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 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 (4)

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening. Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. DFS

    The idea is to do a depth-first search to find all the cycles which are formed and calculate the length of the largest cycle. We are treating the array as a graph of directed edges. Whenever we get into any of the cells in the cycle, using dfs we will visit all the subsequent cells in the cycle. Out of all the cycles, we will return the cycle of maximum length.

    The steps are as follows:

    • Initialize a boolean array ‘vis...
  • Answered Anonymously
  • Q2. 

    Ninja and the Maze Problem Statement

    Ninja is stuck in a maze represented as a 2D grid. He can move in four directions (Up, Down, Left, Right) until he hits a wall ('1'). Once stopped, he can choose a new...

  • Ans. Depth First Search
    • Ninja can move in at most four directions i.e left, right, up, and down.
    • We will take a 2-D array ‘directions’ of size 4 x 2  in which the first column denotes the shift in the horizontal direction and the second column denotes a shift in the vertical direction.

        We will store all the four directions { (0,1) (0,-1) ( 1,0) ( -1,0 ) )} in 2-d array.

    • In each direction, Ninja continues to m...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY 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 : Do some projects.
Tip 2 : Practice dynamic programming.
 

Application resume tips for other job seekers

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

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

TPA Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2021

I applied via campus placement at Aligarh Muslim University (AMU) and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 3 graph questions, learn a thon,followed by interview binary tree,linked list,arrays

Interview Preparation Tips

Interview preparation tips for other job seekers - try to be prepared for grilling in dsa

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening . Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. DFS

    The idea is to do a depth-first search to find all the cycles which are formed and calculate the length of the largest cycle. We are treating the array as a graph of directed edges. Whenever we get into any of the cells in the cycle, using dfs we will visit all the subsequent cells in the cycle. Out of all the cycles, we will return the cycle of maximum length.

    The steps are as follows:

    • Initialize a boolean array ‘vis...
  • Answered Anonymously

Interview Preparation Tips

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

Tip 1 : Do some projects
Tip 2 : Be good in data structure
 

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Don't try to add false things.

Final outcome of the interviewRejected

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

JUSPAY Interview FAQs

How many rounds are there in JUSPAY interview?
JUSPAY interview process usually has 2-3 rounds. The most common rounds in the JUSPAY interview process are Coding Test, Technical and Aptitude Test.
How to prepare for JUSPAY 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 JUSPAY. The most common topics and skills that interviewers at JUSPAY expect are AWS, B2B Sales, Distribution System, IT Sales and Kubernetes.
What are the top questions asked in JUSPAY interview?

Some of the top questions asked at the JUSPAY interview -

  1. Develop two features to help Paytm cope up with loosing use...read more
  2. Estimate the number of UPI transactions per day in Mumb...read more
  3. how unordered set is implement...read more

Tell us how to improve this page.

JUSPAY Interview Process

based on 17 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 777 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
Freecharge Interview Questions
4.0
 • 53 Interviews
MagicPin Interview Questions
3.0
 • 49 Interviews
Mobikwik Interview Questions
4.1
 • 47 Interviews
BillDesk Interview Questions
3.2
 • 14 Interviews
Instamojo Interview Questions
3.7
 • 7 Interviews
View all

JUSPAY Reviews and Ratings

based on 12 reviews

2.9/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

2.6

Salary

2.9

Job security

2.9

Company culture

2.3

Promotions

3.0

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
30 salaries
unlock blur

₹10.2 L/yr - ₹21 L/yr

Softwaretest Engineer
20 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Product Engineer
16 salaries
unlock blur

₹15 L/yr - ₹22 L/yr

Software Development Engineer
16 salaries
unlock blur

₹12 L/yr - ₹35 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Explore more salaries
Compare JUSPAY with

Razorpay

3.6
Compare

Paytm

3.3
Compare

PhonePe

4.0
Compare

Payed

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