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 Associate Manager Interview Questions and Answers

Updated 10 Sep 2024

PhonePe Associate Manager Interview Experiences

1 interview found

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

The topic was abstract

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and experienced professional with a strong background in management and leadership.

    • Over 5 years of experience in managing teams and projects

    • Proven track record of achieving targets and driving results

    • Strong communication and interpersonal skills

    • Ability to adapt to changing environments and handle pressure effectively

  • Answered by AI
  • Q2. Explain your internship
  • Ans. 

    Internship focused on marketing strategies and data analysis in a tech startup

    • Conducted market research to identify target audience

    • Assisted in creating social media campaigns to increase brand awareness

    • Analyzed data from marketing campaigns to measure effectiveness

    • Collaborated with team members to brainstorm new marketing ideas

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Associate Manager Jobs at PhonePe

View all

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

All about coding and solving questions

Round 2 - Technical 

(2 Questions)

  • Q1. All about coding questions in depth and follow up questions
  • Q2. Be good in coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Very supportive interviewer. Helps in between to make you comfortable

Interview Questionnaire 

2 Questions

  • Q1. DSA asked overall
  • Q2. Practise all dsa questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not that hard can be solved with practise

I applied via AngelList and was interviewed before Oct 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. What's your name? Previously working details
  • Q2. Your long term goals?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare hard guys they are much more expertise in their field
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 - Coding Test 

There was a Hackerearth test with two questions

Round 3 - Technical 

(2 Questions)

  • Q1. Some standard data structures question on array
  • Q2. Standard question on trees

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise on the standard data structures questions and a bit on api design and system design
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Anagram question
  • Q2. Sql join questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The Question was average, the interviewer had a fixed approach in mind, which he wanted to follow, but was friendly and trying to help. Overall a good experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your DSA well and dont forget to touch on the basics of programming, people often just study only DSA.

I applied via Referral and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Coding Test 

A coding test based on data structure and Algorithms.

Round 2 - Technical 

(2 Questions)

  • Q1. Question based on Projects in the resume
  • Q2. Data Structure and Algorithms Object oriented programming Database management system Operating system

Interview Preparation Tips

Topics to prepare for Airtel Payments Bank Software Engineer interview:
  • Data Structures
  • Algorithms
  • OOPS
Interview preparation tips for other job seekers - Prepare the DSA part very good and have a good knowledge of CS fundamental.

I applied via Campus Placement

Interview Preparation Tips

Round: Resume Shortlist
Experience: Initially test was conducted. But they also considered resume for shortlisting to interview. Even if you do test badly, resume will come to your rescue if it is good enough.
Tips: Test consists of both aptitude and coding. Basic coding skills in C will be sufficient to solve the coding questions.

General Tips: Interviewing people are very friendly during the interview. Concentrate on concepts like linked lists, basic problems on strongs.
Skill Tips: Any basic C programming book.
Skills: Basic Coding, Basic C/C++
Duration: 2.5
College Name: IIT Madras
Motivation: Diverse fields in which company is working.

I applied via Referral

Interview Questionnaire 

13 Questions

  • Q1. Which is my dream company?
  • Q2. What is my biggest achievement till date?
  • Ans. 

    My biggest achievement till date is successfully leading a team to develop and launch a new software product ahead of schedule.

    • Led a team of developers to create a new software product

    • Completed the project ahead of schedule

    • Received positive feedback from clients and stakeholders

  • Answered by AI
  • Q3. How would I handle conflicts with my team members?
  • Ans. 

    I would address conflicts directly and respectfully, seeking to understand the root cause and find a mutually beneficial solution.

    • Listen actively to understand the other person's perspective

    • Communicate clearly and respectfully

    • Identify the root cause of the conflict

    • Brainstorm potential solutions together

    • Be willing to compromise and find a mutually beneficial solution

  • Answered by AI
  • Q4. I have saved money from a year and bought my dream bike. It is the last round of Paypal interview today. I am on my way on the bike and it breaks down in a no parking zone. Suggest a win­win situation so...
  • Q5. What is success according to me?
  • Ans. 

    Success is achieving personal goals, feeling fulfilled, and making a positive impact.

    • Success is subjective and can vary from person to person.

    • It involves setting and achieving goals, both short-term and long-term.

    • Feeling fulfilled and content with one's accomplishments is a key aspect of success.

    • Making a positive impact on others or the world can also be a measure of success.

    • Success is not just about material wealth or...

  • Answered by AI
  • Q6. I was asked to write a code snippet from my project
  • Q7. Program to implement Dijkstra’s algorithm
  • Ans. 

    Dijkstra's algorithm finds the shortest path between nodes in a graph.

    • Create a graph with nodes and edges

    • Assign a tentative distance to each node

    • Set the initial node as current and mark it visited

    • For each neighbor of the current node, calculate the tentative distance

    • If the tentative distance is less than the current distance, update the distance

    • Mark the current node as visited and select the unvisited node with the sma...

  • Answered by AI
  • Q8. Program to reverse a singly linked list
  • Ans. 

    A program to reverse a singly linked list

    • Create a new empty linked list

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Return the new list

  • Answered by AI
  • Q9. Which algorithm would I use to sort a linked list and why? Subsequently, I was asked to explain the logic of merge sort
  • Q10. Suggest as many methods as possible for finding the nth largest element in an unsorted linked list
  • Ans. 

    Methods to find nth largest element in an unsorted linked list

    • Traverse the linked list and store elements in an array, sort the array and return the nth largest element

    • Use quickselect algorithm to find the nth largest element in O(n) time complexity

    • Implement a max heap and extract the nth largest element

    • Divide the linked list into smaller sublists and recursively find the nth largest element

    • Use merge sort to sort the l

  • Answered by AI
  • Q11. How would I explain the concept of prime number to an illiterate?
  • Ans. 

    A prime number is a number that is divisible only by 1 and itself.

    • A prime number has exactly two factors: 1 and itself.

    • Prime numbers cannot be divided evenly by any other number.

    • Examples of prime numbers include 2, 3, 5, 7, 11, 13, 17, etc.

  • Answered by AI
  • Q12. Give a few test cases for a bank transaction
  • Ans. 

    Test cases for a bank transaction

    • Transaction amount within account balance limit

    • Transaction amount exceeds account balance limit

    • Transaction to a valid account number

    • Transaction to an invalid account number

    • Transaction with correct transaction code

    • Transaction with incorrect transaction code

    • Transaction during bank working hours

    • Transaction outside bank working hours

  • Answered by AI
  • Q13. Design classes for educational institutions in a city
  • Ans. 

    Design classes for educational institutions in a city

    • Identify the main entities: schools, students, teachers, courses

    • Create a School class with attributes like name, address, and a list of students and teachers

    • Create a Student class with attributes like name, age, and a list of courses

    • Create a Teacher class with attributes like name, specialization, and a list of courses

    • Create a Course class with attributes like name, ...

  • Answered by AI

Interview Preparation Tips

Skills:
College Name: NA

Skills evaluated in this interview

PhonePe Interview FAQs

How many rounds are there in PhonePe Associate Manager interview?
PhonePe interview process usually has 2 rounds. The most common rounds in the PhonePe interview process are Group Discussion and One-on-one Round.
How to prepare for PhonePe Associate Manager 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, Medical Insurance, Wellness, stock broking and Operations.

Tell us how to improve this page.

PhonePe Associate Manager Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
HighRadius Interview Questions
2.9
 • 183 Interviews
Fiserv Interview Questions
3.0
 • 172 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Visa Interview Questions
3.5
 • 138 Interviews
Angel One Interview Questions
3.9
 • 135 Interviews
KFintech Interview Questions
3.5
 • 134 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
View all
PhonePe Associate Manager Salary
based on 105 salaries
₹8.5 L/yr - ₹28.6 L/yr
16% more than the average Associate Manager Salary in India
View more details

PhonePe Associate Manager Reviews and Ratings

based on 8 reviews

4.4/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.9

Salary

3.8

Job security

3.1

Company culture

3.5

Promotions

2.9

Work satisfaction

Explore 8 Reviews and Ratings
Associate Manager, Category Manager(On-deck)

Bangalore / Bengaluru

1-4 Yrs

₹ 12-25 LPA

Associate Manager - Lending Operations

Bangalore / Bengaluru

2-3 Yrs

₹ 11-22 LPA

Associate Manager- Finops

Bangalore / Bengaluru

1-10 Yrs

Not Disclosed

Explore more jobs
Key Accounts Executive
645 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Sales Manager
518 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
491 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Associate
370 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
261 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PhonePe with

Paytm

3.3
Compare

Google Pay

4.2
Compare

Amazon Pay

4.0
Compare

Mobikwik

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