Upload Button Icon Add office photos

PhonePe

Compare button icon Compare button icon Compare
4.0

based on 2.1k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

PhonePe Backend Developer Interview Questions and Answers

Updated 4 Dec 2024

PhonePe Backend Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a machine coding round which revolves around designing a simple application primarily on OOPS

Round 2 - DSA 

(2 Questions)

  • Q1. Best time to sell stocks
  • Ans. 

    The best time to sell stocks is when the market is high and the stock has reached its peak value.

    • Sell when the stock has reached its peak value to maximize profits

    • Consider selling if the company's fundamentals have changed negatively

    • Sell if you need to rebalance your portfolio or have reached your financial goals

  • Answered by AI
  • Q2. Best time to sell stocks 2
  • Ans. 

    The best time to sell stocks is when the market is at a peak and the stock price is high.

    • Monitor market trends and stock performance regularly.

    • Consider selling when the stock reaches a new high or when you have achieved your profit goals.

    • Sell if there are negative news or events that could impact the stock price negatively.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Instahyre and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Machine Coding round on codesignal

Backend Developer Interview Questions Asked at Other Companies

asked in NoBroker
Q1. Print a Binary Tree in Vertical OrderGiven a binary tree, return ... read more
Q2. Reverse the rows of a matrixAs a part of its annual techno-cultur ... read more
asked in Simpplr
Q3. Print array SumGiven an array of length N, you need to find and p ... read more
Q4. Given 9 ball all of which weigh the same except for one, what is ... read more
asked in Simpplr
Q5. Remove Duplicates From StringYou are given a string (STR) of leng ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Java threads concepts and its usage
  • Q2. Data structures problems and design quentions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

I have to write code for a load balancer. The code should be testable and imahoild be thread safe

Interview Preparation Tips

Topics to prepare for Revolut Backend Developer interview:
  • Core Java
Interview preparation tips for other job seekers - Careful Attention to all the details should be given. Example like using list or set etc
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. General HR topics, hashmap compleity
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

-----.geeksforgeeks.org/replace-every-element-with-the-greatest-on-right-side/amp/



-----/

Interview Preparation Tips

Topics to prepare for Paytm Backend Developer interview:
  • DSA
  • Core java
  • Design Patterns
  • Spring Boot
Interview preparation tips for other job seekers - DSA , Design Patters , Core Java Concepts , Springboot
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Five advantages of spring boot Which java version you currently use? Features of the java version you use Output from the code Difference between this and super In order to update the string, which will be...
  • Ans. 

    Spring Boot offers advantages like rapid development, easy configuration, embedded servers, production-ready features, and more.

    • Rapid development: Spring Boot simplifies the setup and configuration of Spring applications, allowing developers to focus on writing business logic.

    • Easy configuration: Spring Boot provides auto-configuration, reducing the need for manual setup and boilerplate code.

    • Embedded servers: Spring Boo...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for PayPal Backend Developer interview:
  • Core Java
  • Spring Boot
  • Aspect oriented programming
  • Design Patterns
  • Exception handling
Interview preparation tips for other job seekers - Be prepared with core java concepts and the questions may come from the development side

Skills evaluated in this interview

Backend Developer Interview Questions & Answers

Slice user image Shubham Bhalerao

posted on 11 Jun 2024

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

A basic coding question was asked regarding a buisness logic.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, and practice your problem solving skills

I applied via LinkedIn and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1. Mininum cost to reach the last cell of a 2D matrix. Required moves are only downward or to the right direction
  • Ans. 

    Minimum cost to reach last cell of 2D matrix with only downward or right moves.

    • Use dynamic programming approach to solve the problem.

    • Calculate minimum cost for each cell by considering minimum cost of its adjacent cells.

    • Final answer will be the minimum cost to reach the last cell.

  • Answered by AI
  • Q2. Design a Stack that can support getMin functionality. Whenever it calls getMin on stack it should return the min element in the stack.
  • Ans. 

    Design a stack that supports getMin functionality to return the minimum element in the stack.

    • Create two stacks, one for storing the actual elements and another for storing the minimum elements.

    • Push elements onto both stacks simultaneously.

    • When popping an element, pop from both stacks.

    • To get the minimum element, peek at the top of the minimum stack.

  • Answered by AI
  • Q3. Design a TreeSet functionality
  • Ans. 

    TreeSet is a data structure that stores unique elements in sorted order.

    • TreeSet is implemented using a Red-Black tree

    • It provides O(log n) time complexity for basic operations like add, remove, and contains

    • It also provides methods like first(), last(), headSet(), tailSet(), and subSet()

    • TreeSet can be used to implement priority queues and sorting algorithms

  • Answered by AI
  • Q4. Design a ArrayList that supprorts all the existing funtions of a list plus getMax functionality also.
  • Ans. 

    Design an ArrayList with getMax functionality.

    • Create a custom ArrayList class that extends the existing ArrayList class.

    • Add a getMax() method that returns the maximum value in the list.

    • Override the add() method to keep track of the maximum value in the list.

    • Update the maximum value whenever an element is added or removed from the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Data Structures and algorithms. If you have industry experience you will be asked system design questions as well, migh as well prepare for that

Skills evaluated in this interview

I applied via Instahyre and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Find loop in linked list
  • Ans. 

    To find a loop in a linked list, we use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at a rate of one node per iteration and the other moving at a rate of two nodes per iteration.

    • If there is a loop in the linked list, the two pointers will eventually meet at some node.

    • To find the starting point of the loop, we reset one of the pointers to the head of the linked list and ...

  • Answered by AI
  • Q2. What challenging task you have done
  • Q3. System design related question
  • Q4. Explain your current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for data structures and algorithms from gfg.

Skills evaluated in this interview

PhonePe Interview FAQs

How many rounds are there in PhonePe Backend Developer interview?
PhonePe interview process usually has 1-2 rounds. The most common rounds in the PhonePe interview process are Coding Test.
What are the top questions asked in PhonePe Backend Developer interview?

Some of the top questions asked at the PhonePe Backend Developer interview -

  1. Best time to sell stock...read more
  2. Best time to sell sto...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 PhonePe interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 746 Interviews
FIS Interview Questions
3.9
 • 470 Interviews
PayPal Interview Questions
3.9
 • 205 Interviews
HighRadius Interview Questions
2.9
 • 176 Interviews
Fiserv Interview Questions
3.2
 • 165 Interviews
Razorpay Interview Questions
3.6
 • 150 Interviews
Visa Interview Questions
3.6
 • 133 Interviews
MasterCard Interview Questions
4.0
 • 127 Interviews
Angel One Interview Questions
3.9
 • 125 Interviews
View all
PhonePe Backend Developer Salary
based on 6 salaries
₹13 L/yr - ₹35 L/yr
160% more than the average Backend Developer Salary in India
View more details
Key Accounts Executive
643 salaries
unlock blur

₹3 L/yr - ₹7.6 L/yr

Territory Sales Manager
512 salaries
unlock blur

₹4.5 L/yr - ₹10.5 L/yr

Business Development Executive
487 salaries
unlock blur

₹1.1 L/yr - ₹4.5 L/yr

Business Development Associate
359 salaries
unlock blur

₹2.3 L/yr - ₹6 L/yr

Area Sales Manager
358 salaries
unlock blur

₹6.9 L/yr - ₹16 L/yr

Explore more salaries
Compare PhonePe with

Paytm

3.3
Compare

Google Pay

4.2
Compare

Amazon Pay

4.1
Compare

Mobikwik

4.0
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