Upload Button Icon Add office photos

PhonePe

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

PhonePe Software Engineer Interview Questions, Process, and Tips

Updated 6 Dec 2024

Top PhonePe Software Engineer Interview Questions and Answers

PhonePe Software Engineer Interview Experiences

10 interviews found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via campus placement at Indian School of Mines (ISM), Dhanbad and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium to hard level

Round 2 - One-on-one 

(1 Question)

  • Q1. Dfs bfs in a graph

Software Engineer Interview Questions & Answers

user image tanisha mittal

posted on 27 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

4 question (1.5 hrs test) 400 points (100 points for question each)

Round 2 - Technical 

(2 Questions)

  • Q1. Calculate the no.of consecutive zeroes in a binary array
  • Ans. 

    Count consecutive zeroes in a binary array

    • Iterate through the binary array and keep track of the maximum consecutive zeroes encountered

    • Reset the count of consecutive zeroes when a non-zero element is encountered

    • Return the maximum consecutive zeroes found

  • Answered by AI
  • Q2. Return k pairs of subsets having sum=num
  • Ans. 

    Return k pairs of subsets with sum=num

    • Use a nested loop to iterate through all possible pairs of subsets

    • Check if the sum of the subsets equals the target num

    • Store the valid pairs in an array and return k pairs

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 3 sum problem and number of operations required to make 2 strings same
  • Ans. 

    3 sum problem involves finding 3 numbers in an array that add up to a target sum. Number of operations to make 2 strings same involves finding the minimum number of operations (insert, delete, replace) needed to transform one string into another.

    • For 3 sum problem, use a hashmap to store complements of each number and check if the complement exists in the hashmap while iterating through the array.

    • For number of operation...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Nearby app machine coding
Round 3 - Technical 

(1 Question)

  • Q1. Project and practices followed and hld for inshort
  • Ans. 

    I have experience working on projects using high-level design (HLD) practices.

    • Utilized UML diagrams to create HLD for projects

    • Followed industry best practices for software design

    • Collaborated with team members to ensure HLD aligns with project goals

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test was. good enough with leetfcode medium

Round 2 - Aptitude Test 

Coding test was good enogugh with leetcode medum

PhonePe interview questions for designations

 Senior Software Engineer

 (5)

 Software Development Engineer

 (2)

 Software Testing Engineer

 (1)

 Software Engineer Intern

 (1)

 Lead Software Engineer

 (1)

 Software Development Engineer II

 (3)

 Senior Software Engineer 2

 (2)

 Senior Software Engineer Testing

 (1)

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

I applied via campus placement at Vivekananda Institute of Technology, Karimnagar and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

1.5 hours, 4 coding questions: 1 math, 1 DP, 2 Graphs

Interview Preparation Tips

Topics to prepare for PhonePe Software Engineer interview:
  • Graph
  • Dynamic Programming
Interview preparation tips for other job seekers - prepare coding questions well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Assignment 

Alert notification and logging system

Round 2 - Assignment 

Snakes and Ladder problem

Round 3 - Coding Test 

2-3 coding questions were asked - from easy -> medium -> hard level. 1st and 2nd questions were around dynamic programming. Couldn't reach till third question since 1st two questions took time.

Interview Preparation Tips

Interview preparation tips for other job seekers - - Prepare Design patterns well
- Make sure you proactively drive interview and interviewer needs to provide minimal hints
- Practice easy and medium questions and increase your speed of solving questions

Software Engineer Jobs at PhonePe

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Leet code easy to medium level 4 questions
Round 2 - Technical 

(1 Question)

  • Q1. Had a walk through of last round problems n new problem on graph
Round 3 - Technical 

(1 Question)

  • Q1. This round was with a manager , who asked about my current company projects and architecture
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was for negotiations

Interview Preparation Tips

Topics to prepare for PhonePe Software Engineer interview:
  • Data Structures
  • Algorithms
  • Architecture

I applied via campus placement at Punjab Engineering College, Chandigarh and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

90 min long test, with 4 coding questions on data structures and algorithms, 2 of them being the medium and other medium-hard.

Round 2 - Technical 

(1 Question)

  • Q1. Distinct subsequences, leetcode problem link: leetcode.com/problems/distinct-subsequences

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, Be yourself, they are not looking for correct codes but good and concise approaches
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Types of REST API methods?
  • Ans. 

    Types of REST API methods include GET, POST, PUT, DELETE, PATCH, and more.

    • GET - Retrieve data from a server

    • POST - Create new data on a server

    • PUT - Update existing data on a server

    • DELETE - Remove data from a server

    • PATCH - Partially update data on a server

  • Answered by AI

Interview Preparation Tips

Topics to prepare for PhonePe Software Engineer interview:
  • RESTful webservices
  • SQL
  • Java

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Coding Test 

General Coding Assessment on CodeSignal

Round 2 - Technical 

(1 Question)

  • Q1. 1. Code walkthrough of online assessment round 2. One medium level DS Algo question 3. One medium level System Design question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and stay calm during the interview process.

PhonePe Interview FAQs

How many rounds are there in PhonePe Software Engineer interview?
PhonePe interview process usually has 2-3 rounds. The most common rounds in the PhonePe interview process are Technical, Coding Test and One-on-one Round.
How to prepare for PhonePe Software Engineer 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 PhonePe. The most common topics and skills that interviewers at PhonePe expect are Financial Services, MySQL, Application Development, Technical Documentation and Performance Tuning.
What are the top questions asked in PhonePe Software Engineer interview?

Some of the top questions asked at the PhonePe Software Engineer interview -

  1. 3 sum problem and number of operations required to make 2 strings s...read more
  2. calculate the no.of consecutive zeroes in a binary ar...read more
  3. project and practices followed and hld for insh...read more

Tell us how to improve this page.

PhonePe Software Engineer Interview Process

based on 9 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
PhonePe Software Engineer Salary
based on 260 salaries
₹15.5 L/yr - ₹56 L/yr
312% more than the average Software Engineer Salary in India
View more details

PhonePe Software Engineer Reviews and Ratings

based on 21 reviews

3.8/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

4.2

Salary

3.4

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 21 Reviews and Ratings
Software Engineer - Data Platform

Bangalore / Bengaluru

5-7 Yrs

₹ 9-90 LPA

Software Engineer

Bangalore / Bengaluru

2-4 Yrs

₹ 18-28.5 LPA

Software Engineer

Bangalore / Bengaluru

1-7 Yrs

₹ 6.5-90 LPA

Explore more jobs
Key Accounts Executive
631 salaries
unlock blur

₹3.4 L/yr - ₹8 L/yr

Territory Sales Manager
518 salaries
unlock blur

₹4.7 L/yr - ₹10.5 L/yr

Business Development Executive
486 salaries
unlock blur

₹1.5 L/yr - ₹5.1 L/yr

Business Development Associate
372 salaries
unlock blur

₹2.3 L/yr - ₹6 L/yr

Software Engineer
260 salaries
unlock blur

₹15.5 L/yr - ₹56 L/yr

Explore more salaries
Compare PhonePe with

Paytm

3.3
Compare

Google Pay

4.2
Compare

Amazon Pay

4.0
Compare

Mobikwik

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