Upload Button Icon Add office photos

Filter interviews by

Clear (1)

JUSPAY Product Solution Engineer Interview Questions and Answers

Updated 19 Dec 2024

JUSPAY Product Solution Engineer Interview Experiences

1 interview found

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

SQL, python, excel these are the things ask in 1st assesement

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Normal java and sql question
Round 3 - Technical 

(1 Question)

  • Q1. Sping boot and microservice

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

You should be familiar with core java features. Collections, converting one collection Array / Vector to other. Removing duplicates. Lambda chaining / Functional programming. Basic SQL - Joins, Aggregates etc.

Round 2 - One-on-one 

(1 Question)

  • Q1. Explain Architecture of applications you worked on. Justify use of components. System Design questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - No need to grind leet code here. But you should know how to solve day to day problems. Do projects end to end. You should know the backend well.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

(1 Question)

  • Q1. Diff between react and jQuery
  • Ans. 

    React is a modern JavaScript library for building user interfaces, while jQuery is a fast and concise JavaScript library for DOM manipulation.

    • React is component-based, promoting reusability and modularity.

    • React uses a virtual DOM for efficient updates, while jQuery directly manipulates the DOM.

    • React is declarative, making it easier to reason about the UI, while jQuery is imperative.

    • React is typically used for single-pa...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was about DS Algo and Java garbage collection,multithreading

Round 2 - Technical 

(2 Questions)

  • Q1. Low level design of rate limiter
  • Ans. 

    Rate limiter is a system that controls the rate of traffic sent or received by a network interface.

    • Implement a token bucket algorithm to track and limit the rate of requests

    • Use a sliding window algorithm to track the number of requests within a specific time frame

    • Consider using a distributed rate limiter for scalability and fault tolerance

  • Answered by AI
  • Q2. Springboot basics, java basics, future interfaces, basic sql queries

Skills evaluated in this interview

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

I was interviewed before Mar 2023.

Round 1 - Coding Test 

Was a tough oneto crack

Round 2 - Technical 

(3 Questions)

  • Q1. Asked about core Java domain and threds
  • Q2. Asked about Java domain and threads collection
  • Q3. Threads and collection
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

(1 Question)

  • Q1. Questions based on DSA
Round 3 - One-on-one 

(1 Question)

  • Q1. Java specific Interview
Round 4 - One-on-one 

(1 Question)

  • Q1. Hiring Manager Interview

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA, Java, System Design
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest Consecutive Sequence
  • Ans. 

    Find the length of the longest consecutive elements sequence in an array.

    • Sort the array to ensure consecutive elements are adjacent

    • Iterate through the array and keep track of the current consecutive sequence length

    • Update the longest consecutive sequence length as you iterate

  • Answered by AI
  • Q2. Core Java Questions
Round 2 - Technical 

(2 Questions)

  • Q1. Executor Service and it's code
  • Ans. 

    Executor Service is a framework provided by Java for managing and executing asynchronous tasks.

    • Executor Service allows you to easily create and manage threads for executing tasks.

    • It provides a way to control the number of threads used for executing tasks, which can help prevent resource exhaustion.

    • You can submit tasks to an Executor Service using methods like execute() or submit().

    • Executor Service can be used to execut...

  • Answered by AI
  • Q2. Core Java and Spring boot questions
Round 3 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Q2. Core Java questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Number of subset
  • Ans. 

    Calculate the number of subsets of a given set

    • The number of subsets of a set with n elements is 2^n

    • Include the empty set and the set itself in the count

    • For example, a set with 3 elements will have 2^3 = 8 subsets

  • Answered by AI
  • Q2. Remove kth node from end
  • Ans. 

    Remove the kth node from the end of a linked list.

    • Use two pointers, one to traverse the list and another to keep track of the kth node from the end.

    • Once the first pointer reaches the end, the second pointer will be at the kth node from the end.

    • Adjust the pointers to remove the kth node.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Whatsapp low level design
  • Ans. 

    Whatsapp low level design involves messaging, encryption, media sharing, and user authentication.

    • Use end-to-end encryption to secure messages

    • Implement message queues for real-time message delivery

    • Allow media sharing through file transfer protocols

    • Use OAuth for user authentication and authorization

  • Answered by AI
  • Q2. Lru implemention

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

JUSPAY Interview FAQs

How many rounds are there in JUSPAY Product Solution Engineer interview?
JUSPAY interview process usually has 1 rounds. The most common rounds in the JUSPAY interview process are Aptitude Test.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Freecharge

No Interviews

INTERVIEWS

JUSPAY

No Interviews

INTERVIEWS

CreditVidya

No Interviews

SALARIES

ITS Planners and Engineers

SALARIES

ITS Planners and Engineers

Tell us how to improve this page.

JUSPAY Product Solution Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
PhonePe Interview Questions
4.0
 • 299 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
MagicPin Interview Questions
3.0
 • 50 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
Tokopedia Interview Questions
4.0
 • 25 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
View all
JUSPAY Product Solution Engineer Salary
based on 5 salaries
₹11 L/yr - ₹13 L/yr
At par with the average Product Solution Engineer Salary in India
View more details
Software Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 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