Upload Button Icon Add office photos

Filter interviews by

JUSPAY Software Developer Interview Questions and Answers

Updated 27 Aug 2024

JUSPAY Software Developer Interview Experiences

5 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

They have their own coding platform. The questions are basically from tree.

Round 2 - Coding Test 

Tree of space question

Round 3 - Technical 

(2 Questions)

  • Q1. Previous round question solution
  • Q2. System design was asked.

Interview Preparation Tips

Topics to prepare for JUSPAY Software Developer interview:
  • tree
  • graph
  • system design
Interview preparation tips for other job seekers - Should have good knowledge of tree ,graph and system design.
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

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

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

    You are given a maze consisting of N cells numbered from 0 to N - 1 and an array ‘arr’ of N integers in which arr[i] contains the cell number that can be reached from ‘i’th cell in one step. ...

  • 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 by CodingNinjas
  • Q2. Ninja and the Maze

    Ninja went to an amusement park and visited a maze. Now, he is stuck in the maze. He can go in any direction(Up, Down, Left, or Right) from this point, but he cannot change his direction...

  • 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 by CodingNinjas

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 & Answers

user image CodingNinjas

posted on 15 Sep 2021

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

    You are given a maze consisting of N cells numbered from 0 to N - 1 and an array ‘arr’ of N integers in which arr[i] contains the cell number that can be reached from ‘i’th cell in one step. ...

  • 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 by CodingNinjas

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

JUSPAY interview questions for designations

 Software Developer Intern

 (2)

 Software Engineer

 (1)

 React Developer

 (1)

 Front end Developer

 (1)

 SDE (Software Development Engineer)

 (1)

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

The coding round was 90 minutes with 2 question and the difficulty was mid-range and both were graph question

  • Q1. Rat In A Maze

    You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriacgpa above 7.5JUSPAY interview preparation:Topics to prepare for the interview - Python, data structure , algorithm, database , osTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice question and try to understand with using javascript
Tip 2 : The Elm Architecture. 
Tip 3 : Project matters

Application resume tips for other job seekers

Tip 1 : Have web development project
Tip 2 : learn purescript and node.js

Final outcome of the interviewRejected

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Solving normal Puzzles to test aptitude.

Round 2 - Coding Test 

Sample app was asked to create.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well domain specfic.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

That would be online Test with 12 questions MCQ and 1 coding question. 12 MCQ questions would be related to technology and bascis, coding question would alos be basic

Round 2 - Technical 

(5 Questions)

  • Q1. All Technical related, mostly related to swift ARC, Queues, Threading, unit test cases
  • Q2. Concepts of memory ARC in Swift
  • Ans. 

    Memory ARC in Swift manages memory by automatically deallocating objects when they are no longer needed.

    • ARC stands for Automatic Reference Counting

    • ARC keeps track of how many references exist to an object

    • When the reference count drops to zero, the object is deallocated

    • Weak references are used to avoid retain cycles

  • Answered by AI
  • Q3. Generics in Swift
  • Ans. 

    Generics in Swift allow you to write flexible, reusable functions and types that can work with any type.

    • Generics enable you to write functions and types that can work with any type, without specifying the actual type until the function or type is used.

    • You can define generic functions, methods, classes, structures, and enumerations in Swift.

    • Example: func swapTwoValues(_ a: inout T, _ b: inout T) { let temp = a; a = b; b...

  • Answered by AI
  • Q4. MVC vs MVVM in swift
  • Ans. 

    MVC focuses on separating data, presentation, and user interaction, while MVVM adds a ViewModel to handle logic and data binding.

    • MVC stands for Model-View-Controller, where the controller handles user input, the model manages data, and the view displays the data. Example: UIKit in iOS development.

    • MVVM stands for Model-View-ViewModel, where the ViewModel acts as an intermediary between the model and view, handling data ...

  • Answered by AI
  • Q5. Optionals, Protocols and Delegates, LifeCycle
Round 3 - Assignment 

An app with Login screen with authentication in MVVM

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA

JUSPAY Interview FAQs

How many rounds are there in JUSPAY Software Developer interview?
JUSPAY interview process usually has 2-3 rounds. The most common rounds in the JUSPAY interview process are Coding Test, Case Study and Technical.
What are the top questions asked in JUSPAY Software Developer interview?

Some of the top questions asked at the JUSPAY Software Developer interview -

  1. Previous round question solut...read more
  2. System design was ask...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 JUSPAY interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
JUSPAY Software Developer Salary
based on 14 salaries
₹7.8 L/yr - ₹27 L/yr
128% more than the average Software Developer Salary in India
View more details
Software Engineer
26 salaries
unlock blur

₹7.4 L/yr - ₹15 L/yr

Softwaretest Engineer
20 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Software Development Engineer
19 salaries
unlock blur

₹18 L/yr - ₹30 L/yr

Product Engineer
15 salaries
unlock blur

₹16 L/yr - ₹22 L/yr

Software Developer
14 salaries
unlock blur

₹7.8 L/yr - ₹27 L/yr

Explore more salaries
Compare JUSPAY with

Razorpay

3.6
Compare

Paytm

3.3
Compare

PhonePe

4.0
Compare

Payed

2.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview