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 Accounts & Finance Executive Interview Questions and Answers

Updated 11 Jun 2022

PhonePe Accounts & Finance Executive Interview Experiences

1 interview found

I applied via Referral and was interviewed in Dec 2021. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Related To CV and Basic concept .
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Round and current work related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with your self and prepare well before you face interview. Because Preparation gives you good results.

Interview questions from similar companies

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

I applied via Instahyre and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic Nodejs questions

Round 2 - Technical 

(2 Questions)

  • Q1. Live peer coding interview
  • Q2. Fundamental of JS and clean code architecture
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Joining date and

Interview Preparation Tips

Interview preparation tips for other job seekers - Experience was good

I applied via Job Fair

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 

(3 Questions)

  • Q1. What is Google pay and why is it useful
  • Ans. 

    Google Pay is a digital payment platform that allows users to make secure and convenient transactions using their smartphones.

    • Google Pay enables users to link their bank accounts, credit cards, and debit cards to make payments.

    • It offers a fast and easy way to pay for purchases both online and in physical stores.

    • Users can also send and receive money to/from friends and family instantly.

    • Google Pay provides a secure payme...

  • Answered by AI
  • Q2. Is Google pay helpful
  • Q3. What is the uses of Google pay
  • Ans. 

    Google Pay is a digital wallet platform and online payment system developed by Google.

    • Allows users to make payments using their mobile phones

    • Offers cashback and rewards for transactions

    • Can be used for online and offline transactions

    • Supports multiple payment methods including UPI, credit/debit cards, and net banking

    • Offers easy and secure transactions with biometric authentication

  • Answered by AI
Round 3 - Coding Test 

Understand the task and problems

Interview Preparation Tips

Interview preparation tips for other job seekers - A roundup of advice
Apply if u r not fully qualified
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hour test conducted by the company

Round 2 - Group Discussion 

Data structure and all

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

Ask something abouth C+

I applied via Naukri.com and was interviewed in Oct 2022. 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 is the diffreant other peoples and u
  • Ans. 

    I have unique skills, experiences, and personality traits that differentiate me from others.

    • I have a strong work ethic and am highly motivated to succeed

    • I have excellent communication and interpersonal skills

    • I have a unique set of experiences and perspectives that allow me to approach problems in a creative and innovative way

    • I am adaptable and able to quickly learn and apply new skills

    • I am passionate about what I do an

  • Answered by AI
  • Q2. What u earn for us
  • Ans. 

    I will earn significant revenue for the company through my strong sales skills and ability to build and maintain relationships with clients.

    • I have a proven track record of exceeding sales targets in my previous roles.

    • I will leverage my extensive network of contacts to generate new business opportunities.

    • I am skilled in identifying customer needs and providing tailored solutions to meet those needs.

    • I will actively engag...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep hardworking and think positive, if u need to work with mind then u can achieve the target easily
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

I was interviewed in Mar 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Started with projects discussion and internships and moved forward with coding problems.
It started at around 6:00 PM and lasted for 90 minutes approximately
The interviewer was very cool, he even gave me some tips on improving myself further at the end of the interview.

  • Q1. 

    Longest Substring with At Most K Distinct Characters

    Given a string S of length N and an integer K, find the length of the longest substring that contains at most K distinct characters.

    Input:

    The first...
  • Ans. 

    Find the length of the longest substring with at most K distinct characters in a given string.

    • Use a sliding window approach to keep track of the characters and their counts within the window.

    • Maintain a hashmap to store the characters and their frequencies.

    • Update the window size and characters count as you iterate through the string.

    • Return the maximum window size encountered for each test case.

  • Answered by AI
  • Q2. 

    Maximum Frequency Number Problem Statement

    Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.

    If multip...

  • Ans. 

    Find the number with the maximum frequency in an array of integers.

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Find the number with the maximum frequency and return it.

    • If multiple elements have the same maximum frequency, return the one that appears first.

  • Answered by AI
  • Q3. 

    Ninja and Bombs Problem Statement

    Ninja wants to travel from his house to his best friend's house. The locations of the houses are on a 2D coordinate plane, where Ninja's house is located at the origin (0...

  • Ans. 

    Determine if Ninja can reach his friend's house with even x-coordinate without using modulus operator.

    • Check if the x-coordinate is even or odd by using bitwise AND operation with 1.

    • Return 1 if x-coordinate is even, else return 0.

    • Handle multiple test cases by iterating through each input.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I was asked a coding question then, a system design question and some basic operating systems and oops questions

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Time complexity can be optimized to O(N) using a set to store seen elements.

  • Answered by AI
  • Q2. Can you design a Google Search Engine?
  • Ans. 

    Designing a Google Search Engine involves creating a web crawler, indexing system, and ranking algorithm.

    • Develop a web crawler to discover and retrieve web pages.

    • Implement an indexing system to store and organize the content of web pages.

    • Design a ranking algorithm to determine the relevance of search results.

    • Include features like autocomplete, spell check, and personalized search results.

    • Optimize for speed and scalabil...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaNo CriteriaMobiKwik interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, System Design, Operating SystemsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice data structures problems
Tip 2 : Read about System Designs
Tip 3 : Study the popular algorithms

Application resume tips for other job seekers

Tip 1 : Mention your projects
Tip 2 : Mention your internships

Final outcome of the interviewSelected

Skills evaluated in this interview

PhonePe Interview FAQs

How many rounds are there in PhonePe Accounts & Finance Executive interview?
PhonePe interview process usually has 3 rounds. The most common rounds in the PhonePe interview process are One-on-one Round and Resume Shortlist.
What are the top questions asked in PhonePe Accounts & Finance Executive interview?

Some of the top questions asked at the PhonePe Accounts & Finance Executive interview -

  1. Technical Round and current work related questio...read more
  2. Related To CV and Basic concep...read more

Tell us how to improve this page.

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
 • 135 Interviews
MasterCard Interview Questions
3.9
 • 134 Interviews
View all
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
259 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