Upload Button Icon Add office photos

PayPal

Compare button icon Compare button icon Compare

Filter interviews by

PayPal Interview Questions and Answers for Freshers

Updated 3 Jul 2025
Popular Designations

33 Interview questions

A Software Developer was asked
Q. 

Delete a Node from a Linked List

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'.

Input:

The first line con...
Ans. 

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.

View all Software Developer interview questions
🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. What are virtual functions?
Ans. 

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 ...

View all Software Developer interview questions
A Software Developer was asked
Q. In how many attempts can you find a defective ball among 10 given balls using a two-pan balance scale?
Ans. 

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...

View all Software Developer interview questions
A Software Developer Intern was asked
Q. 

Remove Duplicates from String Problem Statement

You are provided a string STR of length N, consisting solely of lowercase English letters.

Your task is to remove all duplicate occurrences of characters in...

Ans. 

Remove duplicate occurrences of characters in a given string.

  • Use a hash set to keep track of characters seen so far.

  • Iterate through the string and add non-duplicate characters to a new string.

  • Return the new string without duplicate characters.

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

One Away Transformation Problem

Given two strings, A and B, determine whether A can be transformed into B by performing at most one of the following operations (including zero operations):

1. Delete a cha...
Ans. 

Determine if one string can be transformed into another by performing at most one operation (insert, delete, replace).

  • Iterate through both strings simultaneously and check for differences.

  • Handle cases where a character needs to be inserted, deleted, or replaced.

  • Keep track of the number of operations performed and ensure it does not exceed one.

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

Reverse the String Problem Statement

You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

Example:

Input:
STR = "abcde"
Output:
"ed...
Ans. 

Reverse a given string containing alphabets, numbers, and special characters.

  • Iterate through the string from the end to the beginning and append each character to a new string.

  • Use built-in functions like reverse() or slicing to reverse the string.

  • Handle special characters and numbers while reversing the string.

  • Ensure to consider the constraints on the input string length and number of test cases.

View all Software Developer Intern interview questions
A Software Engineer was asked
Q. 

Maximum Difference Problem Statement

Given an array ARR of N elements, your task is to find the maximum difference between any two elements in ARR.

If the maximum difference is even, print EVEN; if it is ...

Ans. 

Find the maximum difference between any two elements in an array and determine if it is even or odd.

  • Iterate through the array to find the maximum and minimum elements

  • Calculate the difference between the maximum and minimum elements

  • Check if the difference is even or odd and return the result

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. 

Cycle Detection in Undirected Graph Problem Statement

You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determin...

Ans. 

Detect cycles in an undirected graph with given vertices and edges.

  • Use Depth First Search (DFS) to traverse the graph and detect cycles.

  • Maintain a visited array to keep track of visited vertices and a parent array to keep track of the parent of each vertex.

  • If while traversing, you encounter a visited vertex that is not the parent of the current vertex, then a cycle exists.

  • Consider edge cases like disconnected grap...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is hashing and how can it be implemented?
Ans. 

Hashing is a process of converting input data into a fixed-size string of bytes using a hash function.

  • Hashing is used to securely store passwords by converting them into a hash value before storing in a database.

  • Hashing is used in data structures like hash tables to quickly retrieve data based on a key.

  • Common hash functions include MD5, SHA-1, and SHA-256.

  • Hashing can be implemented in programming languages like Py...

View all Software Engineer interview questions
A Software Engineer was asked
Q. 

Palindrome Partitioning II Problem Statement

Given a string ‘str’, find the minimum number of partitions needed such that every segment of the string is a palindrome.

The task is to make cuts in the strin...

Ans. 

Find the minimum number of partitions needed in a string such that every segment is a palindrome.

  • Iterate through the string and check for palindromes at each possible partition point.

  • Use dynamic programming to keep track of the minimum cuts needed.

  • Consider edge cases where the string is already a palindrome or consists of different characters only.

View all Software Engineer interview questions

PayPal Interview Experiences for Freshers

25 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test was on HackerRank

Round 2 - Technical 

(1 Question)

  • Q1. Easy-Medium DSA Questions
Round 3 - HR 

(1 Question)

  • Q1. Asked from my resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I appeared for an interview in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Design Rate Limiter LLD
  • Ans. 

    Design a rate limiter to control the number of requests a user can make in a given time frame.

    • Define rate limiting strategies: Fixed Window, Sliding Window, Token Bucket.

    • Use a data store (e.g., Redis) to track request counts per user.

    • Implement a reset mechanism to clear counts after the time window.

    • Consider edge cases like burst traffic and user authentication.

    • Example: Allow 100 requests per hour per user.

  • Answered by AI
  • Q2. What are SOLID Principles? Springboot questions

Interview Preparation Tips

Topics to prepare for PayPal Senior Software Engineer interview:
  • LLD
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. They asked about core Java, Spring Boot annotations, SQL joins, and a problem about finding the second largest number—they wanted the time and space complexity too.
  • Q2. Springboot annotations.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

5 MCQ questions, and 1 coding question similar to Leetcode medium-hard level (topic-greedy).

Round 2 - Technical 

(2 Questions)

  • Q1. Basic DSA questions related to strings, linkedlists, binary search etc.
  • Q2. Questions related to resume

Interview Preparation Tips

Topics to prepare for PayPal Software Developer Intern interview:
  • DSA
  • DBMS
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Hackerrank - 1.5 hour

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Basic questions of DSA were asked

Round 3 - Technical 

(2 Questions)

  • Q1. Linked Lists, Trees , Arrays
  • Q2. Hash maps, oops, Sql
Round 4 - HR 

(1 Question)

  • Q1. Question related to JD, some basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about the projects and dont forget to revise the basics of DSA.

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 28 Oct 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

1 coding ques on trees,discussion on project,oops concept,sql query,webd related discussion

Round 3 - HR 

(1 Question)

  • Q1. Discussion on project,difficulty faced ,how i solved,discussion based on cv
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed before Aug 2022. There were 5 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 - Coding Test 

There 2 coding rounds one on online and other on one-one discussion, both including few problem solving on DS and Algo on topics of Trees, Priority Queue, Arrays, DFS

Round 3 - One-on-one 

(2 Questions)

  • Q1. One of the question was about return min element in stack in constant time (O(1)).
  • Ans. 

    Implement a stack that supports retrieving the minimum element in constant time.

    • Use an auxiliary stack to keep track of minimum values.

    • Push the current minimum onto the auxiliary stack whenever a new element is pushed.

    • When popping an element, also pop from the auxiliary stack if it is the current minimum.

    • Example: For stack [3, 5, 2], min stack would be [3, 2].

    • To get min: simply return the top of the min stack.

  • Answered by AI
  • Q2. Find the and return if the given file path existing in the given file hierarcy(file system).
  • Ans. 

    Check if a given file path exists in the file system hierarchy and return the result.

    • Use file system APIs to check if the given file path exists in the hierarchy.

    • Traverse the file system hierarchy starting from the root directory to find the given file path.

    • Return true if the file path exists, false otherwise.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. This round was regarding LLD and HLD round, question on java and resume and LLD and HLD. Java 1) why functional interface 2) how would you use and make yuor own functional interface 3) Options class Netwo...
  • Q2. Given a usecase to build parking system
  • Ans. 

    Design a parking system to manage vehicle parking efficiently and optimize space usage.

    • Define user roles: Admin, Driver, and Parking Attendant.

    • Implement features like real-time availability tracking and reservation.

    • Use sensors or cameras for automated entry/exit logging.

    • Integrate payment systems for seamless transactions.

    • Consider mobile app for users to find and reserve spots.

  • Answered by AI
Round 5 - Behavioral 

(1 Question)

  • Q1. This round was about lot of conversation with technical, leadership and cultural aspect with my manager

Interview Preparation Tips

Interview preparation tips for other job seekers - be fearless and answer only when you sure if not be frank nothing in wrong to try by asking before you do.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Communication is needed and know how the chat process or call process works

Interview Preparation Tips

Topics to prepare for PayPal Customer Agent interview:
  • Communication Skills
Interview preparation tips for other job seekers - s

Sales Person Interview Questions & Answers

user image Zorawar Malik

posted on 28 Sep 2022

I applied via Company Website and was interviewed in Aug 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 - One-on-one 

(3 Questions)

  • Q1. What did you work for and in which company did you work?
  • Q2. And how much do you need salary and which course did you do?
  • Ans. Why are you working in the company
  • Answered by Zorawar Malik
  • Q3. You have to accept the role of the company

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all, work should be taken seriously and it should be kept in mind that everyone likes our work and likes it because the mind

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about PayPal?
Ask anonymously on communities.

PayPal Interview FAQs

How many rounds are there in PayPal interview for freshers?
PayPal interview process for freshers usually has 2-3 rounds. The most common rounds in the PayPal interview process for freshers are Coding Test, Technical and Resume Shortlist.
How to prepare for PayPal interview for freshers?
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 PayPal. The most common topics and skills that interviewers at PayPal expect are Financial Services, Analytical, CSS3, Change Management and Debugging.
What are the top questions asked in PayPal interview for freshers?

Some of the top questions asked at the PayPal interview for freshers -

  1. In the second round , I was asked to sort a string and find the alphabet which ...read more
  2. If you know the e-mail ID of a person and were asked to hack his account how wo...read more
  3. There were two technical rounds and one HR round. In the first round I was aske...read more
What are the most common questions asked in PayPal HR round for freshers?

The most common HR questions asked in PayPal interview are for freshers -

  1. Where do you see yourself in 5 yea...read more
  2. Why are you looking for a chan...read more
  3. Why should we hire y...read more
How long is the PayPal interview process?

The duration of PayPal interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 11 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 29%
2-4 weeks 43%
4-6 weeks 14%
6-8 weeks 14%
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.2
 • 794 Interviews
FIS Interview Questions
3.9
 • 502 Interviews
PhonePe Interview Questions
4.0
 • 341 Interviews
Fiserv Interview Questions
3.0
 • 181 Interviews
Razorpay Interview Questions
3.6
 • 159 Interviews
KFintech Interview Questions
3.5
 • 148 Interviews
Angel One Interview Questions
3.8
 • 147 Interviews
Visa Interview Questions
3.5
 • 145 Interviews
MasterCard Interview Questions
3.9
 • 144 Interviews
View all

PayPal Reviews and Ratings

based on 1k reviews

3.8/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.9

Salary

3.1

Job security

3.8

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 1k Reviews and Ratings
Software Engineer2
340 salaries
unlock blur

₹15 L/yr - ₹45 L/yr

Software Engineer
330 salaries
unlock blur

₹14 L/yr - ₹48 L/yr

Senior Software Engineer
293 salaries
unlock blur

₹15.4 L/yr - ₹46.6 L/yr

Software Engineer III
284 salaries
unlock blur

₹20 L/yr - ₹66 L/yr

Data Scientist
265 salaries
unlock blur

₹18.5 L/yr - ₹65 L/yr

Explore more salaries
Compare PayPal with

Paytm

3.2
Compare

Razorpay

3.6
Compare

Visa

3.5
Compare

MasterCard

3.9
Compare
write
Share an Interview