PhonePe
Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards
Filter interviews by
Java program to reverse a string
Create a char array from the input string
Use two pointers to swap characters at opposite ends
Continue swapping until the pointers meet in the middle
Program to find duplicates in a given string and print the count of characters
Iterate through each character in the string and store the count of each character in a hashmap
Print the characters with count greater than 1 to find duplicates
Handle both uppercase and lowercase characters separately if needed
Test cases for mobile recharge feature
Verify user can successfully recharge their mobile with valid amount
Verify user receives confirmation message after successful recharge
Verify user cannot recharge with invalid amount
Verify user cannot recharge with insufficient balance
Verify user cannot recharge if network connection is lost
Top trending discussions
I appeared for an interview in Nov 2020.
Round duration - 60 minutes
Round difficulty - Easy
Started with the introduction.
Then there were two-three coding questions.
Some OS and DBMS concepts were asked.
Questions related to testing were also included.
You are given a string STR
which contains alphabets, numbers, and special characters. Your task is to reverse the string.
STR = "abcde"
"e...
Reverse a given string containing alphabets, numbers, and special characters.
Iterate through the characters of the string from end to start and append them to a new string.
Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.
Handle special characters and numbers along with alphabets while reversing the string.
Ensure to consider the constraints on the number of t...
You are provided with a positive integer N
. Your task is to identify all numbers such that the sum of the number and its digits equals N
.
N = 21
Identify numbers whose sum of digits and number equals given integer N.
Iterate through numbers from 1 to N and check if sum of number and its digits equals N.
Use a helper function to calculate sum of digits for a given number.
Return the numbers that satisfy the condition in increasing order, else return -1.
Round duration - 60 minutes
Round difficulty - Medium
This was quite a tough round that can be cleared only by practice and understanding the problem. They asked about the profile first, then questions related to testing, SDLC, and so on. And then, I was asked to write test cases for two to three problems. Writing a test case was a task in this round. The interview was a senior testing engineer and was very friendly and helpful also and answered all my queries related to work.
Tip 1 : Practice question from every section (Arrays, String, Data Structures)
Tip 2 : Practice question that required you to write test cases for a problem (as they judge you on your practical implementation)
Tip 3 : Practice low level designing questions (it indirectly helps you to write test cases )
Tip 4 : Choose your favorite Data Structure and practice well on it (as this is the most commonly asked question)
Tip 1 : Have at least three projects in your resume (Include only those which you can explain and demonstrate)
Tip 2 : Include a column of "Position of Responsibility" in addition to your work experience and technicalities (it is impactful as it shows your extra activities apart from your regular curriculum)
I applied via Campus Placement and was interviewed before Jun 2020. There was 1 interview round.
I applied via Company Website and was interviewed in Jul 2019. There were 3 interview rounds.
Our organization follows a combination of manual and automated processes to streamline operations.
We use project management tools like Jira to track tasks and progress
Regular team meetings are held to discuss project updates and address any issues
Automated testing is used to ensure software quality and reduce manual errors
IRD stands for Interface Requirements Document, IDD stands for Interface Design Document, and BRD stands for Business Requirements Document.
IRD is a document that outlines the requirements for the interface between different systems or components.
IDD is a document that describes the design of the interface, including the data formats, protocols, and communication methods.
BRD is a document that captures the business req...
Use case diagrams are visual representations of the interactions between users and a system.
They depict the system's functionality from the user's perspective.
They show the different actors and their roles in the system.
They illustrate the various use cases and their relationships.
They help in identifying the requirements of the system.
They aid in communication between stakeholders.
Example: A use case diagram for an on...
posted on 11 Oct 2020
I applied via Naukri.com and was interviewed in Sep 2020. There were 5 interview rounds.
I applied via Company Website and was interviewed before Jan 2021. There were 3 interview rounds.
Routing through a proxy involves configuring the proxy server to forward requests to the destination server.
Configure the proxy server to listen for incoming requests
Configure the proxy server to forward requests to the destination server
Configure the client to use the proxy server for outgoing requests
Use a proxy server to bypass network restrictions or improve performance
Examples: Nginx, Apache, Squid
Race condition is a situation where multiple threads/processes access and manipulate shared data simultaneously.
It can be eliminated by using synchronization techniques like locks, semaphores, and mutexes.
Another way is to use atomic operations that ensure the data is accessed and modified atomically.
Using thread-safe data structures can also prevent race conditions.
Example: Two threads trying to increment a shared var...
JCube is a Java library for creating and manipulating Rubik's Cube puzzles.
JCube provides classes for representing Rubik's Cube puzzles and algorithms for solving them.
It supports various cube sizes and can generate random scrambles.
JCube can be used in Java applications or as a standalone command-line tool.
It is open source and available on GitHub.
Regression testing is the process of testing changes made to a software application to ensure that existing functionality still works.
It is performed after making changes to the software
It ensures that existing functionality is not affected by the changes
It helps to catch any defects or bugs that may have been introduced
It can be automated using testing tools
Examples include retesting after bug fixes, testing after new...
Software engineering principles are the best practices and guidelines for developing high-quality software.
Software should be designed with modularity and scalability in mind.
Code should be well-documented and easy to read.
Testing and debugging should be an integral part of the development process.
Version control should be used to manage code changes.
Security and privacy should be considered throughout the development ...
A Singleton class is a class that can only have one instance at a time.
It restricts the instantiation of a class to a single object.
It provides a global point of access to that instance.
It is often used in situations where a single object is required to coordinate actions across a system.
Example: Database connection manager, Configuration manager, Logger manager.
Testing principles ensure software quality, while design principles guide software development.
Testing principles include unit testing, integration testing, and acceptance testing.
Design principles include SOLID, DRY, and KISS.
Testing principles ensure that software meets requirements and is free of defects.
Design principles guide software development to be modular, maintainable, and scalable.
I have the necessary skills, experience, and passion to contribute to VISA's success.
I have a strong background in software development and have worked on projects similar to those at VISA.
I am a quick learner and can adapt to new technologies and programming languages easily.
I am passionate about creating high-quality software that meets the needs of users and exceeds their expectations.
I am a team player and can work...
A profile that challenges me to learn and grow while allowing me to contribute to a team.
A position that encourages continuous learning and development
A role that allows me to collaborate with a team and contribute to projects
A company culture that aligns with my values and work ethic
I am interested in exploring new opportunities and challenges that this company can offer.
I am impressed with the company's reputation and growth potential.
I am excited about the projects and technologies this company is working on.
I believe this company can provide me with a better work-life balance and career growth opportunities.
I am looking for a company culture that aligns with my values and goals.
I am open to exp...
Design an MVC controller system to route URLs to the appropriate controllers based on the URL structure.
Define a routing mechanism that maps URLs to controller actions.
Use a hierarchical structure where each segment of the URL corresponds to a controller.
Example: For 'xyz.com/a/b/c', 'a' routes to 'AController', 'b' to 'BController', and 'c' to 'CController'.
Implement a method to parse the URL and invoke the correspond...
Autocomplete in IDEs helps developers write code faster by suggesting code snippets and completing code as they type.
Autocomplete should suggest code snippets based on the context of the code being written
Autocomplete should prioritize suggestions based on frequency of use
Autocomplete should also suggest variable and function names
Autocomplete should be customizable to allow for user-defined snippets and suggestions
Exa...
My weakness is public speaking.
I tend to get nervous when speaking in front of large groups.
I am working on improving my public speaking skills by practicing and seeking feedback.
I have taken courses and attended workshops to help me overcome my fear of public speaking.
Comparing 2 basketball game scenarios with different number of trials and baskets required to win
Calculate the probability of winning in each game scenario using binomial distribution formula
Compare the probabilities to determine which game scenario is preferable
In game1, the probability of winning is p. In game2, the probability of winning is the sum of probabilities of making 2 or 3 baskets
If p is high, game1 is pref...
I want to join Visa to contribute to innovative payment solutions and be part of a global leader in financial technology.
Visa is at the forefront of digital payment innovation, allowing me to work on cutting-edge technologies.
The company's commitment to security aligns with my passion for developing secure software solutions.
Visa's global presence offers opportunities to collaborate with diverse teams and learn from di...
I'm a passionate software engineer with a strong background in full-stack development and a love for problem-solving.
Graduated with a degree in Computer Science from XYZ University.
Worked at ABC Corp, where I developed a web application that improved user engagement by 30%.
Proficient in languages like JavaScript, Python, and Java, with experience in frameworks like React and Django.
Enjoy collaborating in agile teams an...
based on 1 interview experience
Key Accounts Executive
560
salaries
| ₹4 L/yr - ₹7.5 L/yr |
Business Development Executive
509
salaries
| ₹1.7 L/yr - ₹4.2 L/yr |
Territory Sales Manager
499
salaries
| ₹5 L/yr - ₹10.5 L/yr |
Software Engineer
436
salaries
| ₹22.4 L/yr - ₹55.8 L/yr |
Area Sales Manager
412
salaries
| ₹6.5 L/yr - ₹13 L/yr |
Paytm
FIS
Fiserv
KFintech