Upload Button Icon Add office photos

Filter interviews by

PayPal Software Engineer Interview Questions, Process, and Tips

Updated 2 Dec 2024

Top PayPal Software Engineer Interview Questions and Answers

  • Q1. Painting Fences Problem Statement You are given ‘N’ fences. Your task is to compute the total number of ways to paint these fences using only 2 colors, such that no more ...read more
  • Q2. Cycle Detection in a Singly Linked List Determine if a given singly linked list of integers forms a cycle or not. A cycle in a linked list occurs when a node's next poin ...read more
  • Q3. Integer to Roman Conversion Given an integer N , convert it to its corresponding Roman numeral representation. Roman numerals comprise seven symbols: I, V, X, L, C, D, a ...read more
View all 41 questions

PayPal Software Engineer Interview Experiences

25 interviews found

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 

DSA specific coding questions, arrays, stacks queues, trees mostly

Round 3 - Technical 

(1 Question)

  • Q1. DSA specific, may ask graphs ,dp

Interview Preparation Tips

Interview preparation tips for other job seekers - System design, grokking system design interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Question about the famous island problem

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed before Oct 2022. There were 4 interview rounds.

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 

DSA questions medium and hard

Round 3 - Case Study 

System design Notification service

Round 4 - Technical 

(1 Question)

  • Q1. Low level design: sql queries

Interview Questionnaire 

1 Question

  • Q1. Problem solving and system design questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Problem solving questions are not too difficult but may be uncommon. So only preparing from the net may not be enough and candidate need to find the solution during interview. Understanding of many latest technologies and commonly used patterns would help system design rounds.

PayPal interview questions for designations

 Senior Software Engineer

 (8)

 Software Development Engineer

 (2)

 Software Engineer II

 (2)

 Software Engineer III

 (2)

 Software Engineer Intern

 (1)

 Staff Software Engineer

 (1)

 Senior Software Engineer 2

 (3)

 Software Engineer Level 1

 (3)

I was interviewed before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

late Morning

  • Q1. 

    Painting Fences Problem Statement

    You are given ‘N’ fences. Your task is to compute the total number of ways to paint these fences using only 2 colors, such that no more than 2 adjacent fences have the sa...

  • Ans. 

    First I had couple of greedy solutions in mind, later on analysis I tried applying dynamic programming approach.
    It was working.

  • Answered Anonymously
  • Q2. 

    Cycle Detection in a Directed Graph

    Determine if a given directed graph contains a cycle. Return true if at least one cycle is found, otherwise return false.

    Input:

    T
    The first line consists of the integ...
  • Ans. Using DFS

    To change a directed tree to a cyclic directed graph by adding one edge, we can choose a node that has more than zero ancestors and add an edge from that node to one of its ancestors. This can always form a complete cycle. This edge is called the back edge.
     

    The basic idea is to traverse a graph using DFS and keep track of visited nodes and search for the back edge. If we found any back edge, we will retur...

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Technical Interview. The round went on for about 20 min

  • Q1. 

    Painter's Partition Problem

    You are given an array/list of length 'N'. Each element of the array/list represents the length of a board. There are 'K' painters available to paint these boards. Each unit of...

  • Ans. Dynamic Programming

    All we need to do is to Divide the boards into k of fewer partitions such that the maximum sum of the elements in a partition, overall partitions is minimized.

     

    We can put the (k - 1)th divider between the ith and (i + 1)th element where i is between 1 and N.

     

    Now the recursive function will just require two conditions that can lead to the result and that will be out the maximum total cost:

    • Th...
  • Answered Anonymously
Round 3 - Face to Face 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

Technical interview 2

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    solved using slow pointer and fast pointer approach.

  • Answered Anonymously
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. Brute Force

    The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.

     

    Steps:

    &...

  • Answered Anonymously
Round 4 - HR 

Round duration - 40 Minutes
Round difficulty - Medium

Hiring Manger, timing was late morning

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in ChennaiEligibility criteriaAbove 8 CGPAPaypal interview preparation:Topics to prepare for the interview - Arrays, Strings, DP, Trees, Graphs, Linked Lists, Stacks, QueuesTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Be strong with basics 
Tip 2 : Learn any one programming language end to end.
Tip 3 : Attempting Regular contests on various coding platforms

Application resume tips for other job seekers

Tip 1 : Be honest and clear on the topics you know
Tip 2 : Be confident on all the projects you mentioned in resume end to end

Final outcome of the interviewSelected

Skills evaluated in this interview

Get interview-ready with Top PayPal Interview Questions

I was interviewed before Jan 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round where the Interviewer asked me questions based on data structures and algorithms.

  • Q1. 

    Design a Constant Time Data Structure

    Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:

    1. INSERT(key, value): Add or update t...
  • Q2. 

    Integer to Roman Conversion

    Given an integer N, convert it to its corresponding Roman numeral representation. Roman numerals comprise seven symbols: I, V, X, L, C, D, and M.

    Example:

    Input:
    N = 2
    Outp...
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round where the Interviewer asked me questions based on data structures and algorithms.

  • Q1. 

    Total Area of Overlapping Rectangles Problem Statement

    Determine the total area covered by two given rectangles on a 2-D coordinate plane, which may have an overlapping area.

    Input:

    The first line conta...
  • Q2. 

    Longest Repeating Subsequence Problem Statement

    Given a string st, your task is to determine the length of the longest repeating subsequence such that no two subsequences have the same character at the sa...

Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This was a system design round.

  • Q1. How would you design a rate limiter?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewRejected

Skills evaluated in this interview

Software Engineer Jobs at PayPal

View all

I was interviewed before Dec 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

The interview was held in the evening on a weekday, Interview was nice and quite experienced, he asked me about my previous experience in the area and they told me about the team and work for which they were hiring, we did some discussion on that. Meanwhile, I was also asked a few questions on Database and SQL.

  • Q1. 

    Find Magic Index in Sorted Array

    Given a sorted array A consisting of N integers, your task is to find the magic index in the given array, where the magic index is defined as an index i such that A[i] = i...

  • Ans. Brute Force Approach
    • In this brute force approach, we will check each element one by one and try to find if there is any magic index in the given array or not.
    • In this approach, we will initialize our answer variable (say, ans) with ans = -1.
    • Then we will iterate in the array one by one (say, loop variable i) from the beginning and check if there is any magic index in our array or not.
    • If we find any index in the array suc...
  • Answered Anonymously
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The interview was in the afternoon. There were some glitches with the teams meeting but it got sorted out in a few minutes. This round was purely coding based. He started with questions on arrays, linked lists, and string manipulation with an increasing level of hardness. The tricky part was that the online editor I was given for writing the code was not an IDE but a simple text editor, so I wasn't getting any help in terms of code completion or syntax errors or syntax highlighting.

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteriaNone, as I am experienced professionalPaypal interview preparation:Topics to prepare for the interview - Data structures, Algorithms, System Design, Javascript, Database, OOPsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Always keep your focus on learning the basics, they should be rock solid
Tip 2 : Don't try to cram things days or weeks before interviews, that never helps. Try to learn little by little every day incrementally.
Tip 3 : Don't try to target any specific company, it almost never works out, just stay true to yourself and keep doing the hard work, opportunity will come to you eventually.
Tip 4 : If you need to prepare in a short time, I would suggest doing the 30-day interview challenge on Leetcode

Application resume tips for other job seekers

Tip 1 : Keep it short and simple, don't clutter with lots of text, try to convey things using bullet points instead of paragraphs
Tip 2 : Don't use fancy graphics and make sure the resume is not more than 1 page (or maybe 2 in case you have more experience)

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. How is MongoDB scalable?
  • Ans. 

    MongoDB is scalable due to its ability to horizontally partition data across multiple servers.

    • MongoDB uses sharding to distribute data across multiple servers.

    • Sharding allows for horizontal scaling by adding more servers to the cluster.

    • MongoDB also supports replica sets for high availability and fault tolerance.

    • Indexes can be created on any field in a MongoDB document, allowing for efficient querying of large datasets.

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Rate Limiter Design, Code Hash map from scratch, Integer to roman, rectangle overlap, repeating non overlapping subsequence in a given string
  • Q2. Few questions related to SQL, Merchant Onboard ing design, Restaurant design

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode, Interviewbit PayPal questions

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round where the interviewer asked questions based on Data structures and algorithms.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Q2. 

    Dijkstra's Shortest Path Problem

    Given an undirected graph with ‘V’ vertices (labeled 0, 1, ... , V-1) and ‘E’ edges, where each edge has a weight representing the distance between two connected nodes (X,...

Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round where the interviewer asked questions based on Data structures and algorithms.

  • Q1. 

    Sort Linked List Based on Actual Values

    Given a Singly Linked List of integers that are sorted based on their absolute values, the task is to sort the linked list based on the actual values.

    The absolute...

  • Q2. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR Round that lasted for around 30 minutes. The interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

PayPal Interview FAQs

How many rounds are there in PayPal Software Engineer interview?
PayPal interview process usually has 2-3 rounds. The most common rounds in the PayPal interview process are Technical, Coding Test and One-on-one Round.
How to prepare for PayPal Software Engineer interview?
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, SQL, Agile, Oracle and Coding.
What are the top questions asked in PayPal Software Engineer interview?

Some of the top questions asked at the PayPal Software Engineer interview -

  1. How would I explain the concept of prime number to an illitera...read more
  2. Suggest as many methods as possible for finding the nth largest element in an u...read more
  3. what is hashing and how will you impleme...read more

Tell us how to improve this page.

PayPal Software Engineer Interview Process

based on 12 interviews

2 Interview rounds

  • Coding Test Round
  • Technical Round
View more
PayPal Software Engineer Salary
based on 242 salaries
₹13.5 L/yr - ₹50 L/yr
247% more than the average Software Engineer Salary in India
View more details

PayPal Software Engineer Reviews and Ratings

based on 25 reviews

3.8/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.8

Salary

3.4

Job security

3.9

Company culture

3.6

Promotions

3.5

Work satisfaction

Explore 25 Reviews and Ratings
MTS 1, Software Engineer

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

MTS -1 Software Engineer

Chennai

6-10 Yrs

₹ 13.5-33 LPA

MTS 1, Software Engineer, Quality

Bangalore / Bengaluru

6-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer2
286 salaries
unlock blur

₹15 L/yr - ₹45 L/yr

Software Engineer III
247 salaries
unlock blur

₹17 L/yr - ₹66 L/yr

Software Engineer
242 salaries
unlock blur

₹13.5 L/yr - ₹50 L/yr

Senior Software Engineer
228 salaries
unlock blur

₹15 L/yr - ₹53 L/yr

Risk Analyst
165 salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Explore more salaries
Compare PayPal with

Paytm

3.3
Compare

Razorpay

3.6
Compare

Visa

3.5
Compare

MasterCard

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview