PhonePe
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via Campus Placement and was interviewed in Aug 2024. There was 1 interview round.
Topic - Is Brain Drain Reversing
Time - 25 min
Structure was simple everyone started with their introduction and gave their opening statement about the topic one by one and then the discussion was started. In my panel there were 6 students including me.
2 of them were selected for the next round , So be clear with your points and have a healthy discussion with everyone and try not to interrupt someone when they are speaking .
All the Best!!!
There is an aptitude test(online assessment)
Gd is for 10 minites
I am a recent graduate with a degree in Business Administration and a passion for marketing and analytics.
Graduated with a degree in Business Administration
Passionate about marketing and analytics
Completed internships in marketing departments
Strong communication and analytical skills
PhonePe is a digital payment platform that allows users to make payments, transfer money, recharge phones, and pay bills.
PhonePe was founded in 2015 and is headquartered in Bangalore, India.
It is a subsidiary of Flipkart, one of India's largest e-commerce platforms.
Users can link their bank accounts to the app for seamless transactions.
PhonePe offers services like UPI payments, mobile recharges, bill payments, and onli...
Based on the environment pollution responsible of only developing nation
I applied via Campus Placement and was interviewed in Mar 2024. There were 5 interview rounds.
There were 36 questions out of which some of which are diagram based, numbers based,graph based, and english
In group discussion they asked about general topics about Technology, difference between ott and movie...
It is estimated that there are over 400 million users of WhatsApp in India.
Over 400 million users in India
WhatsApp is one of the most popular messaging apps in the country
I am a recent graduate with a degree in Business Administration and a passion for marketing and project management.
Recent graduate with a degree in Business Administration
Passionate about marketing and project management
Strong communication and organizational skills
Experience in internships related to marketing and project management
In 5 years, I see myself as a successful professional who has advanced in their career and taken on more responsibilities.
Advancing to a managerial role within the company
Completing additional training or certifications to enhance skills
Leading a team or project
Contributing to the growth and success of the organization
PhonePe is a digital payment platform in India that allows users to make payments, transfer money, recharge phones, and pay bills.
PhonePe was founded in 2015 and is headquartered in Bangalore, India.
It is a subsidiary of Flipkart, one of India's largest e-commerce platforms.
Users can link their bank accounts to the app for seamless transactions.
PhonePe offers services like UPI payments, mobile recharges, bill payments,...
PhonePe interview questions for designations
I applied via Campus Placement and was interviewed in Mar 2024. There were 2 interview rounds.
It contains aptitude and reasoning question nothing related to cse fundamentals
In group decision we were given a topic and asked to discuss over it I got the topic as dark web
60 minutes 45 questions
Traditional media vs ott platform
I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.
36 questions in 45 minutes
The topic was " Is the future of Global Economy cashless?".
I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.
Dont remember the exact question as of now
A case study on how to increase sales for zomato
I appeared for an interview before Jan 2021.
Round duration - 90 minutes
Round difficulty - Medium
It was conducted in Hacker rank which consisted of 10 aptitude questions that included C, C++, Java MCQ. 2 programming questions were also given.
Given an N x M
matrix filled with integers, determine the minimum sum obtainable from a path that starts at a specified cell (x, y)
and ends at the top left corner of t...
The problem involves finding the minimum sum path from a specified cell to the top left corner of a matrix.
Start from the specified cell and calculate the minimum sum path to reach the top left corner using dynamic programming.
Consider the three possible moves: down, right, and down-right diagonal.
Keep track of the minimum sum at each cell and update it based on the minimum of the three possible moves.
Finally, the mini...
Given an integer N
representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.
Generate all possible combinations of balanced parentheses for a given number of pairs.
Use backtracking to generate all possible combinations of balanced parentheses.
Keep track of the number of open and close parentheses used in each combination.
Recursively generate combinations by adding open parentheses if there are remaining, and closing parentheses if the number of open parentheses is greater than the number of clo...
Round duration - 60 minutes
Round difficulty - Medium
Technical round with questions based on data structures, oops and networking.
Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...
Create a program to count lowercase alphabets, digits, and white spaces from user input until '$' is encountered.
Read characters from input stream until '$' is encountered
Count lowercase alphabets, digits, and white spaces separately
Print the counts of each character type as three integers separated by spaces
Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.
The fir...
Find K largest elements in an unsorted array and return them in non-decreasing order.
Sort the array in non-decreasing order.
Return the last K elements of the sorted array.
To check internet connection on a system, you can use various methods like pinging a website or checking network status.
Use ping command to check connectivity to a website (e.g. ping www.google.com)
Check network status using network settings or command line tools
Try accessing a website or online service to verify internet connection
When you type a URL in a web browser, the browser sends a request to the server hosting the website, which then responds with the necessary files to display the webpage.
Browser checks cache for DNS resolution
If not found, browser sends a DNS query to resolve the domain name to an IP address
Browser establishes a TCP connection with the server
Browser sends an HTTP request to the server for the webpage
Server processes the...
Round duration - 60 minutes
Round difficulty - Medium
Technical round with questions based on data structures, oops and networking.
Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?
Implement counting sort algorithm to sort an array of integers without comparisons.
Count the frequency of each element in the input array.
Calculate the prefix sum of frequencies to determine the position of each element in the sorted array.
Place each element in its correct position based on the prefix sum.
Time complexity of counting sort is O(n+k), where n is the number of elements and k is the range of input.
Example: ...
The Fibonacci series has applications in various fields such as mathematics, computer science, art, and nature.
Used in algorithms for optimization problems and dynamic programming.
Found in nature, such as the arrangement of leaves on a stem, the branching of trees, and the spiral shapes of shells.
Applied in financial markets for predicting stock prices and analyzing market trends.
Utilized in art and design for creating
Round duration - 30 minutes
Round difficulty - Easy
HR round where the interviewer asked questions to know more about me.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I appeared for an interview before Jan 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical Interview Round with questions based on Data structures, OOPS and SQL.
You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.
The first line co...
Implement a function to delete a node from a linked list at a specified position.
Traverse the linked list to find the node at the specified position.
Update the pointers of the previous and next nodes to skip the node to be deleted.
Handle edge cases such as deleting the head or tail of the linked list.
Ensure to free the memory of the deleted node to avoid memory leaks.
SQL query to find the nth highest salary
Use the ORDER BY clause to sort salaries in descending order
Use the LIMIT and OFFSET clauses to skip the first n-1 highest salaries
Combine the above steps in a single query to find the nth highest salary
OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.
OOP focuses on creating objects that interact with each other to solve problems.
Key concepts include encapsulation, inheritance, and polymorphism.
Encapsulation involves bundling data and methods that operate on the data into a single unit.
Inheritance allows classes to inherit at...
Round duration - 60 minutes
Round difficulty - Easy
Was asked me about my favorite technologies, What i liked about Facebook. And asked me to design a cinema ticket reservation web site like the one satyam has.
Given an array containing N
distinct positive integers and a number K
, determine the Kth largest element in the array.
N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
Find the Kth largest element in an array of distinct positive integers.
Sort the array in non-increasing order and return the Kth element.
Handle multiple test cases efficiently.
Ensure all elements in the array are distinct.
Virtual functions are functions in a base class that are overridden in derived classes to achieve runtime polymorphism.
Virtual functions are declared in a base class with the 'virtual' keyword.
They are overridden in derived classes using the 'override' keyword.
They allow a function to be called based on the runtime type of an object.
Virtual functions enable dynamic binding and late binding in C++.
Example: virtual void ...
Design a Cinema Ticket Reservation System
Use a database to store movie information, showtimes, and seat availability
Allow users to search for movies, select showtimes, and choose seats
Implement a payment system for ticket purchases
Send confirmation emails with QR codes for ticket validation
You can find a defective ball among 10 given balls in 2 attempts using a two-pan balance scale.
Divide the 10 balls into two groups of 5 each.
Weigh the two groups on the balance scale.
If one group is heavier, it contains the defective ball. If they are equal, the defective ball is in the remaining 5 balls.
Divide the group of 5 balls with the defective one into two groups of 2 and 3 balls.
Weigh the two groups on the bala...
Round duration - 30 minutes
Round difficulty - Easy
HR round that lasted for about 30 minutes. The interviewer asked me questions to know more about me and a puzzle.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
based on 8 interviews
2 Interview rounds
based on 2 reviews
Rating in categories
Key Accounts Executive
686
salaries
| ₹2.8 L/yr - ₹7.5 L/yr |
Territory Sales Manager
545
salaries
| ₹4.7 L/yr - ₹10.5 L/yr |
Business Development Executive
514
salaries
| ₹1.1 L/yr - ₹5.1 L/yr |
Business Development Associate
390
salaries
| ₹2.4 L/yr - ₹5.9 L/yr |
Software Engineer
309
salaries
| ₹14 L/yr - ₹45 L/yr |
Paytm
Fiserv
KFintech
Angel One