Upload Button Icon Add office photos

Filter interviews by

PayPal Software Developer Interview Questions, Process, and Tips

Updated 4 Nov 2024

Top PayPal Software Developer Interview Questions and Answers

  • Q1. Maximum Path Sum in a Matrix Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the fi ...read more
  • Q2. K Largest Elements Problem Statement Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non ...read more
  • Q3. Subset Sum Equal To K Problem Statement Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K. Provide true if ...read more
View all 27 questions

PayPal Software Developer Interview Experiences

8 interviews found

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sort the list, after many queries
  • Q2. LRU cache with multi level caching
  • Ans. 

    LRU cache with multi level caching involves implementing a cache with multiple levels of storage, where the least recently used items are evicted first.

    • Implement a two-level cache system with a primary cache (e.g. in-memory) and a secondary cache (e.g. disk-based).

    • Use a data structure like a doubly linked list and a hash map to efficiently manage the cache and track the least recently used items.

    • When an item is accesse...

  • Answered by AI

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

It was on hackerearth platform and duration was 60 mins.

  • Q1. 

    Maximum Path Sum in a Matrix

    Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...

  • Ans. 

    We are given a matrix of N * M. To find max path sum first we have to find max value in first row of matrix. Store this value in res. Now for every element in matrix update element with max value which can be included in max path. If the value is greater then res then update res. In last return res which consists of max path sum value.

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Only problem solving was asked simple DSA based questions

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    Declare a character stack S.
    Now traverse the expression string exp. 
    If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
    If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
    After complete traversal, if there is some starting bracket left in stac

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 mins
Round difficulty - Easy

Problem solving and DSA

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

    This problem can be solved efficiently by using the technique of hashing. Use a hash_map to check for the current array value x(let), if there exists a value target_sum-x which on adding to the former gives target_sum. This can be done in constant time.

  • Answered Anonymously
Round 4 - Video Call 

Round duration - 30 minutes
Round difficulty - Easy

This was hiring manager round and it was mostly behavioural round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - DSA, HLD, LLD, DBMS, COMPUTER NETWORKS, OSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : DSA/Problem Solving is a must
Tip 2 : Be comfortable with atleast one language with the proper syntax
Tip 3 : Give mock interviews for practice

Application resume tips for other job seekers

Tip 1 : Mention your achievements like Google Kickstart or ratings in different coding platforms
Tip 2 : Mention good projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

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.

  • Q1. 

    Minimum Cost Path Problem Statement

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

  • Q2. 

    Balanced Parentheses Combinations

    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.

    Explanati...

Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Character Counting Challenge

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

  • Q2. 

    K Largest Elements Problem Statement

    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.

    Input:

    The fir...
  • Q3. How can you check whether you have an internet connection on your system?
  • Q4. What happens when you type a URL in a web browser?
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Counting Sort Problem Statement

    Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?

    Example:

    Input:
    ...
  • Q2. What are the applications of the Fibonacci series in real life?
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round where 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

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

Round 2 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

  • Q1. 

    Replace Spaces in a String

    Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

    Input:

    The first line contains an integ...

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 questions for designations

 Software Developer Intern

 (3)

 Software Developer II

 (1)

 Software Engineer

 (25)

 Software Engineer2

 (4)

 Backend Developer

 (2)

 Java Developer

 (1)

 Senior Software Engineer

 (8)

 Software Development Engineer

 (2)

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview Round with questions based on Data structures, OOPS and SQL.

  • Q1. 

    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 co...
  • Ans. 

    Steps :
    1. If the head node is the key to be deleted ,make the head node point to the next node and free its memory.
    2. Otherwise, traverse the linked list from the current node and check whether the next node has the given key. If yes, make the current->next = current->next->next and free the memory.
    Time Complexity : O(N) where n is the length of the linked list

  • Answered Anonymously
  • Q2. Write an SQL query to find the nth highest salary.
  • Ans. 

    TOP keyword can be used to find the nth highest salary. By default ORDER BY clause print rows in ascending order, since we need the highest salary at the top, we have used ORDER BY DESC, which will display salaries in descending order. Again DISTINCT is used to remove duplicates. The outer query will then pick the topmost salary, which would be your Nth highest salary.
    SQL query : 
    SELECT TOP 1 salary
    FROM ( 
    SEL...

  • Answered Anonymously
  • Q3. Can you explain the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    The building blocks of OOPs are : 
    1. Classes & Objects : An Object can be defined as an entity that has a state and behavior. Class is basically a collection of objects which act as building blocks. 
    2. Abstraction : It helps in displaying the essential features without showing the details or the functionality to the user. It avoids unnecessary information or irrelevant details and shows only that specific...

  • Answered Anonymously
Round 2 - Face to Face 

(4 Questions)

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.

  • Q1. 

    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, ...
  • Ans. 

    Concept of heaps can be used to find the kth maximum element. A max heap can be used. We add all the elements to a heap, with the largest at the top, and then pop the heap for k - 1 times, then the one on the top is our target. In STL, both priority_queue and multiset can be used as a min/max-heap.
    Time Complexity : O(NlogK)

  • Answered Anonymously
  • Q2. What are virtual functions?
  • Ans. 

    A C++ virtual function is a member function in the base class that you redefine in a derived class. It is declared using the virtual keyword. It is used to tell the compiler to perform dynamic linkage or late binding on the function. A 'virtual' is a keyword preceding the normal declaration of a function. When the function is made virtual, C++ determines which function is to be invoked at the runtime based on the type

  • Answered Anonymously
  • Q3. Design a Cinema Ticket Reservation System.
  • Ans. 

    Tip 1: Firstly, remember that the system design round is extremely open-ended and there’s no such thing as a standard answer. Even for the same question, you’ll have a totally different discussion with different interviewers.
    Tip 2:Before you jump into the solution always clarify all the assumptions you’re making at the beginning of the interview. Ask questions to identify the scope of the system. This will clear the in...

  • Answered Anonymously
  • Q4. In how many attempts can you find a defective ball among 10 given balls using a two-pan balance scale?
Round 3 - HR 

(1 Question)

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.

  • Q1. Can you tell me about your projects and your extracurricular activities?
  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.
    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team you are mentoring. How all is the...

  • Answered Anonymously

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

Get interview-ready with Top PayPal Interview Questions

Software Developer Interview Questions & Answers

user image RAJIVTEJA NAGIPOGU

posted on 3 Dec 2016

I applied via campus placement at Indian Institute of Technology (IIT), Chennai and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Given an array of numbers find the subset of numbers that give zero sum.
  • Ans. 

    Find subset of numbers in array that sum up to zero.

    • Use a nested loop to iterate through all possible subsets.

    • Calculate the sum of each subset and check if it equals zero.

    • Store the subset if the sum is zero.

    • Optimize the solution by using a hash set to store the cumulative sum of elements.

  • Answered by AI
  • Q2. Explain how bfs works?
  • Ans. 

    BFS (Breadth-First Search) is a graph traversal algorithm that explores all the vertices of a graph in breadth-first order.

    • BFS starts at a given vertex and explores all its neighbors before moving to the next level of vertices.

    • It uses a queue data structure to keep track of the vertices to be visited.

    • BFS guarantees that it visits all the vertices of a connected graph.

    • It can be used to find the shortest path between two

  • Answered by AI
  • Q3. Discussion on the projects I have done.
  • Q4. Question on Linked List.
  • Q5. Project Discussion
  • Q6. Strengths and weaknesses. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a highly skilled software developer, leading a team and contributing to innovative projects.

    • Continuously improving my technical skills through learning and hands-on experience

    • Taking on leadership roles and mentoring junior developers

    • Contributing to the development of cutting-edge software solutions

    • Building strong relationships with clients and stakeholders

    • Staying updated with the latest indu...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

Round: Technical + HR Interview
Experience: I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

College Name: IIT Madras

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Róhit Saini

posted on 28 Sep 2015

I applied via campus placement at Indian Institute of Technology (IIT), Chennai

Interview Preparation Tips

Round: Test
Experience: Aptitude questions were logical, not tough. For coding, one question, not basic but very logical.
Tips: for coding part try practicing on hackerrank.
Duration: 45+30 minutes
Total Questions: 20+1

Round: Technical Interview
Experience: Interviewer asked all about Linked list and Data structures and algorithm.
Tips: Atleast try learning some basic concepts of linked list, stacks, queues and binary tree.

General Tips: Interview was fair, without any partiality for girls/boys or B.Tech/Dual.
Skill Tips: Be confident and reply frankly. Never let them know that you are nervous.
Skills: Confidence
Duration: 2.5
College Name: IIT Madras
Funny Moments: "Lets go for a walk". HR interviewer will take you for a round to ask you HR questions.

Please prepare for two questions "Tell me something about you" and "Why PayPal, why not any other company".

Software Developer Interview Questions & Answers

user image Aditya V Kamath

posted on 6 Apr 2015

Interview Questionnaire 

9 Questions

  • Q1. Explain the concepts of Object Oriented Programming
  • Ans. 

    Object Oriented Programming is a programming paradigm that uses objects to represent real-world entities.

    • Encapsulation: bundling data and methods that operate on that data within one unit

    • Inheritance: creating new classes from existing ones, inheriting their properties and methods

    • Polymorphism: ability of objects to take on multiple forms or behaviors

    • Abstraction: hiding complex implementation details and providing a simp...

  • Answered by AI
  • Q2. Give examples of abstraction and polymorphism
  • Ans. 

    Abstraction is hiding implementation details while polymorphism is using a single interface for multiple types.

    • Abstraction: Encapsulation, Interfaces, Abstract classes

    • Polymorphism: Method Overloading, Method Overriding, Interfaces

    • Abstraction Example: Car - we don't need to know how the engine works to drive it

    • Polymorphism Example: Animal - different animals have different sounds but they all have a 'makeSound' method

  • Answered by AI
  • Q3. A simple design question to design classes
  • Q4. What does PayPal do?
  • Ans. 

    PayPal is an online payment system that allows individuals and businesses to transfer funds electronically.

    • Allows users to make payments and money transfers online

    • Offers a secure and convenient way to pay for goods and services

    • Provides a platform for businesses to accept payments online

    • Offers buyer and seller protection for eligible transactions

    • Can be used to send and receive money internationally

  • Answered by AI
  • Q5. A simple Machine learning question to use thresholding
  • Q6. Questions about Software Defined Networking and my project in that field
  • Q7. Questions about my internships at a startup and USC
  • Q8. Am I considering going for masters
  • Q9. What makes you want to join PayPal?
  • Ans. 

    I am excited to join PayPal because of its innovative culture and impact on the global economy.

    • PayPal's commitment to innovation aligns with my passion for staying up-to-date with the latest technologies.

    • I am impressed by PayPal's global reach and impact on the economy, and I want to be a part of that.

    • I appreciate PayPal's focus on diversity and inclusion, and I believe in the importance of working for a company with s...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The aptitude test consisted of about 20 questions and had just 20 minutes. The questions were tough and you need speed to solve them. People preparing for CAT and other such exams should be able to perform better. The max score among my batch was 7 or 8.
The coding question was paper based and you had to write C code for a simple question on paper, but design was also taken into account for evaluating the code.
Tips: Both get disheartened if you don't do well in the aptitude.
Duration: 60 minutes
Total Questions: 21

Round: Technical Interview
Experience: The interview was more like a discussion rather than a question answer round. The discussion always went quite off the topic and the interviewer went on to ask other concepts of OS and networks etc.
Tips: Be thorough with the core concepts in subjects like OS and networks

Round: Technical Interview
Experience: This interview was a little more of marketing PayPal to me than an interview. He however slipped in the questions given above. The machine learning question was a little too obvious to apply thresholding and I wasted time trying to get better algorithms when he expected only thresholding.
Tips: Do not tell you are the topper if you are, because I did and he clearly said they don't hire toppers!

Round: HR Interview
Experience: This interview was more to get the truth out of me. I have a very research oriented profile and that was evident from my resume. The interview was to find out whether I would really join their company if offered.
Tips: If you have a high CG and research experience but still want to go for a job, make sure you tune your resume to prune out the research and only market the side which the company looks for, otherwise the company will reject you.

Skills: Computer Science Concepts, OS, Networks, OOP, Machine Learning
College Name: IIT HYDERABAD
Motivation: Just as a backup since I was indeed planning for a masters program. Highest paying package among the companies at that time.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Company Website

Round 1 - Coding Test 

2 DSA medium questions was asked.

Round 2 - Coding Test 

2 DSA coding questions and CS fundamentals

Round 3 - Technical 

(1 Question)

  • Q1. System design questions in a projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the fundamentals & go through must do easy and medium questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of angular, ts,js
Round 2 - One-on-one 

(1 Question)

  • Q1. Programming questions
Round 3 - HR 

(1 Question)

  • Q1. Family backgroud

PayPal Interview FAQs

How many rounds are there in PayPal Software Developer interview?
PayPal interview process usually has 1 rounds. The most common rounds in the PayPal interview process are Technical.
How to prepare for PayPal Software Developer 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 Coding, Maven, Data Structures, Debugging and Financial Services.
What are the top questions asked in PayPal Software Developer interview?

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

  1. Explain the concepts of Object Oriented Programm...read more
  2. Given an array of numbers find the subset of numbers that give zero s...read more
  3. Give examples of abstraction and polymorph...read more

Tell us how to improve this page.

PayPal Software Developer Interview Process

based on 1 interview

2 Interview rounds

  • Technical Round
  • HR Round
View more
PayPal Software Developer Salary
based on 91 salaries
₹11 L/yr - ₹37.6 L/yr
233% more than the average Software Developer Salary in India
View more details

PayPal Software Developer Reviews and Ratings

based on 12 reviews

3.8/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

3.5

Salary

3.8

Job security

3.7

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 12 Reviews and Ratings
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