Add office photos
PhonePe logo
Employer?
Claim Account for FREE

PhonePe

4.0
based on 2.3k Reviews
Video summary
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
Designation
Fresher
Experienced
Skills
Clear (1)

20+ PhonePe Interview Questions and Answers for Freshers

Updated 20 Oct 2024
Popular Designations

Q1. Would you want to use Phonepe scanner in your shop sir?

Ans.

Yes, I would be interested in using Phonepe scanner in my shop.

  • Using Phonepe scanner would make transactions faster and more convenient for customers.

  • It would also help me keep track of my sales and inventory more efficiently.

  • I would need to learn how to use the scanner and ensure that it is compatible with my existing systems.

  • Overall, I believe it would be a valuable addition to my shop.

View 1 answer
right arrow

Q2. Covid Vaccination Distribution Problem

As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is to ma...read more

Ans.

This question asks for finding the maximum number of vaccines administered on a specific day during a vaccination drive, given the total number of days, total number of vaccines available, and the day number.

  • Read the number of test cases

  • For each test case, read the number of days, day number, and total number of vaccines available

  • Implement a logic to find the maximum number of vaccines administered on the given day number

  • Print the maximum number of vaccines administered for e...read more

Add your answer
right arrow

Q3. How to create a perticular mobile screen

Ans.

To create a particular mobile screen, you need to design the layout using Interface Builder or programmatically in Swift.

  • Design the UI layout using Interface Builder in Xcode

  • Add necessary UI elements like labels, buttons, text fields, etc.

  • Customize the appearance using constraints, auto layout, and size classes

  • Implement functionality using Swift code to handle user interactions and data processing

Add your answer
right arrow

Q4. How to copy contents of a file to another file?

Ans.

To copy contents of a file to another file, you can use file handling methods in programming languages.

  • Open the source file in read mode and the destination file in write mode

  • Read the contents of the source file and write them to the destination file

  • Close both files after the copying process is complete

Add your answer
right arrow
Discover PhonePe interview dos and don'ts from real experiences

Q5. What is your favourite mobile application product? What makes it good according to you? How do you measure its performance in multiple phases of its growth?

Ans.

My favorite mobile application is Spotify. It's good because of its vast music library and personalized playlists.

  • Spotify has a vast music library with over 70 million songs.

  • It offers personalized playlists based on user's listening history and preferences.

  • Spotify measures its performance through user engagement, retention rate, and revenue growth.

  • It also uses data analytics to improve its recommendation algorithm and user experience.

Add your answer
right arrow

Q6. How Would Cover Your Market If you're placed at a totally new location?

Ans.

To cover a new market, I would conduct thorough market research, establish local partnerships, adapt marketing strategies, and provide excellent customer service.

  • Conduct extensive market research to understand the local demographics, competition, and consumer preferences.

  • Establish partnerships with local businesses, distributors, or suppliers to gain access to the market and leverage their existing customer base.

  • Adapt marketing strategies to suit the new location, considering...read more

Add your answer
right arrow
Are these interview questions helpful?

Q7. Linux Command to List CPU's in the system

Ans.

Command to list CPUs in Linux system

  • Use the 'lscpu' command to list detailed information about CPUs

  • Use the 'nproc' command to display the number of processing units available

  • Use the 'cat /proc/cpuinfo' command to view information about each CPU core

Add your answer
right arrow
Q8. What is a kernel in an operating system?
Ans.

The kernel is the core component of an operating system that manages system resources and provides essential services.

  • The kernel acts as a bridge between software and hardware.

  • It handles tasks such as memory management, process scheduling, and device drivers.

  • Examples of popular kernels include Linux kernel, Windows NT kernel, and macOS kernel.

Add your answer
right arrow
Share interview questions and help millions of jobseekers 🌟
man with laptop

Q9. Command to check free disk space

Ans.

Command to check free disk space

  • Use the 'df' command to check free disk space

  • The '-h' option displays the output in human-readable format

  • The '-T' option shows the filesystem type

  • The '-x' option excludes specific filesystem types

  • The '-t' option filters the output based on filesystem type

Add your answer
right arrow

Q10. Command to check free memory space

Ans.

Command to check free memory space

  • Use the 'free' command to check free memory space

  • The 'free' command displays the total, used, and free memory space in the system

  • It also shows the amount of memory used for buffers and cache

  • The 'free' command can be used with options like '-h' for human-readable output

Add your answer
right arrow

Q11. What are the different types of status code ?

Ans.

HTTP status codes indicate the outcome of a HTTP request. They are categorized into 5 classes.

  • 1xx: Informational - Request received, continuing process

  • 2xx: Success - Request successfully received, understood, and accepted

  • 3xx: Redirection - Further action needed to complete the request

  • 4xx: Client Error - Request contains bad syntax or cannot be fulfilled

  • 5xx: Server Error - Server failed to fulfill a valid request

View 1 answer
right arrow

Q12. difference between NoSQL and SQL

Ans.

NoSQL is a non-relational database that provides flexible schema and horizontal scalability, while SQL is a relational database with structured schema and vertical scalability.

  • NoSQL databases are schema-less and can handle unstructured data.

  • SQL databases use structured query language and have predefined schemas.

  • NoSQL databases are horizontally scalable, allowing for easy distribution of data across multiple servers.

  • SQL databases are vertically scalable, meaning they can handl...read more

Add your answer
right arrow

Q13. Copy files to a remote machine

Ans.

To copy files to a remote machine, use a file transfer protocol like SCP or SFTP.

  • Use SCP (Secure Copy) command to copy files between local and remote machines

  • Example: scp /path/to/local/file username@remote:/path/to/destination

  • Use SFTP (Secure File Transfer Protocol) for interactive file transfers

  • Example: sftp username@remote, then use put command to upload files

Add your answer
right arrow

Q14. How to rename a file

Ans.

To rename a file, use the 'mv' command in the terminal or use a file manager with a rename option.

  • In the terminal, use the 'mv' command followed by the current file name and the new file name.

  • Example: mv oldfile.txt newfile.txt

  • In a file manager, right-click on the file and select the 'Rename' option.

  • Enter the new file name and press Enter.

Add your answer
right arrow

Q15. 1. given an array of string arr. A string s is formed by concatenation of subsequence of arr that has unique character. Return maximum length of s.

Add your answer
right arrow

Q16. Explain OSI Model

Ans.

The OSI Model is a conceptual framework that standardizes the functions of a communication system into seven layers.

  • The OSI Model stands for Open Systems Interconnection Model.

  • It was developed by the International Organization for Standardization (ISO) in 1984.

  • The model is divided into seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

  • Each layer has a specific function and interacts with the layers above and below it.

  • The model helps...read more

Add your answer
right arrow

Q17. 1. Find all possible recipes from given supply.

Add your answer
right arrow

Q18. What is HTTP explain working

Ans.

HTTP is a protocol used for transferring data over the internet.

  • HTTP stands for Hypertext Transfer Protocol

  • It is the foundation of data communication on the World Wide Web

  • HTTP works by establishing a connection between a client and a server, where the client sends a request and the server responds with the requested data

  • Example: When you type a website URL in your browser, the browser sends an HTTP request to the server hosting the website to retrieve the webpage

Add your answer
right arrow

Q19. Sales produced methods

Ans.

Sales produced methods involve various strategies and techniques to generate revenue and increase sales.

  • Developing effective sales strategies

  • Implementing targeted marketing campaigns

  • Building strong relationships with clients

  • Utilizing social media and online platforms for sales

  • Offering discounts or promotions to attract customers

  • Providing excellent customer service

  • Analyzing market trends and adjusting sales approaches accordingly

Add your answer
right arrow

Q20. Explain URL config

Ans.

URL config is a configuration file that maps URLs to specific views or functions in a web application.

  • URL config is typically defined in a file like urls.py in Django framework.

  • It helps in routing incoming requests to the appropriate view or function.

  • URL patterns are defined using regular expressions to match specific URLs.

  • URL config allows for dynamic routing and handling of different endpoints in a web application.

Add your answer
right arrow

Q21. Sell me a product

Ans.

Introducing the revolutionary smart home assistant that will make your life easier and more efficient.

  • Highlight the key features and benefits of the product

  • Address any potential concerns or objections the customer may have

  • Offer a special promotion or discount to entice the customer to make a purchase

Add your answer
right arrow

More about working at PhonePe

Back
Awards Leaf
AmbitionBox Logo
Top Rated Tech Startup - 2024
Awards Leaf
Contribute & help others!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos

Interview Process at PhonePe for Freshers

based on 24 interviews
Interview experience
4.2
Good
View more
interview tips and stories logo
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

BYJU'S Logo
3.1
 • 686 Interview Questions
Walmart Logo
3.7
 • 305 Interview Questions
BARC Logo
4.4
 • 218 Interview Questions
Birlasoft Logo
3.6
 • 195 Interview Questions
Quest Global Logo
3.6
 • 146 Interview Questions
View all
Recently Viewed
COMPANY BENEFITS
University Living Accommodation
No Benefits
SALARIES
APELO CONSULTING
SALARIES
Info Edge
SALARIES
APELO CONSULTING
No Salaries
SALARIES
BigBasket
SALARIES
BigBasket
SALARIES
APELO CONSULTING
SALARIES
APELO CONSULTING
SALARIES
University Living Accommodation
SALARIES
University Living Accommodation
No Salaries
Top PhonePe Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter