Upload Button Icon Add office photos

Filter interviews by

PaySafe India Interview Questions and Answers

Updated 27 Dec 2024

PaySafe India Interview Experiences

Popular Designations

7 interviews found

I applied via Referral and was interviewed in Oct 2021. There were 3 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 

Dp problem
- submatrix with maximum sum

Round 3 - Technical 

(1 Question)

  • Q1. Zig zag traversal of tree All permutation and combination of numbers in a given array
  • Ans. 

    Implement zig zag traversal of a tree and generate all permutations of numbers in a given array.

    • For zig zag traversal of a tree, use a queue or stack to keep track of nodes at each level and alternate the direction of traversal.

    • To generate all permutations of numbers in an array, use backtracking or recursion to explore all possible combinations.

    • Consider using a HashSet to avoid duplicate permutations.

  • Answered by AI

Skills evaluated in this interview

Senior Platform Engineer Interview Questions asked at other Companies

Q1. What is the main difference in docker swarm and Kubernates
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Desing chatbot using 3rd party providers

Senior Platform Engineer Interview Questions asked at other Companies

Q1. What is the main difference in docker swarm and Kubernates
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions related to payment ecosystem
Round 2 - HR 

(1 Question)

  • Q1. Behavioral questions, situation based.

Interview Preparation Tips

Topics to prepare for PaySafe India Product Manager interview:
  • Payments
  • checkout
  • API
  • ACH SEPA
Interview preparation tips for other job seekers - Prepare scenario based questions on payment transactions

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

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

(1 Question)

  • Q1. Interview had basic questions of Java and some basic problems to code.
Round 3 - Technical 

(2 Questions)

  • Q1. This round was with the manager of team he gave one technical problem to solve and code in Java that was it.
  • Q2. Problem was about comparing two string s of having different software versions.
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company as there is no security of job.

Platform Engineer Interview Questions asked at other Companies

Q1. Palindrome Linked List Problem Statement You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a palindrome, otherwise return false. Exam... read more
View answer (1)

PaySafe India interview questions for popular designations

 Senior Platform Engineer

 (2)

 Production Manager

 (1)

 Product Manager

 (1)

 Senior Sdet Engineer

 (1)

 Platform Engineer

 (1)

 Principal Product Manager

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. How will u design a risk handling case management product
  • Ans. 

    Designing a risk handling case management product involves creating a system to identify, assess, prioritize, and mitigate risks.

    • Identify key stakeholders and their roles in the risk management process

    • Develop a risk assessment framework to evaluate the likelihood and impact of potential risks

    • Implement a system for tracking and monitoring risks throughout their lifecycle

    • Integrate tools for documenting risk mitigation st...

  • Answered by AI

Principal Product Manager Interview Questions asked at other Companies

Q1. How will u design a risk handling case management product
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Details about any one product on which I had worked in my past organisation.
Round 2 - One-on-one 

(1 Question)

  • Q1. Explain a typical Payment flow.
  • Ans. 

    Payment flow involves initiation, authorization, processing, and settlement of a financial transaction.

    • Initiation: Customer places an order and selects payment method.

    • Authorization: Payment gateway verifies funds availability and approves the transaction.

    • Processing: Payment details are sent to the acquiring bank for processing.

    • Settlement: Funds are transferred from customer's account to merchant's account.

    • Confirmation:...

  • Answered by AI

Production Manager Interview Questions asked at other Companies

Q1. Production, Maintenance, Quality and Safety. Out of four, tell me the most important and least important thing for you and why?
View answer (10)

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Was given couple of scenarios and has been asked to write code for same and explain it later.

Round 2 - Technical 

(1 Question)

  • Q1. Explain about how did you solve scenario in round 1, and why you used that approach.

Interview Preparation Tips

Interview preparation tips for other job seekers - Great company to work for, works as R&D center for Paysafe group.

Senior Sdet Engineer Interview Questions asked at other Companies

Q1. Optimize an existing system. The system currently makes an API call and stores data in its memory. When it tries to serve a request from another component it refers to the memory location by searching the entire memory.
View answer (1)

Interview questions from similar companies

Data Analyst Interview Questions & Answers

PayPal user image AKASH KUMAR SINGH

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. For this round he gave me lot of problems and asked to develop optimal algorithm to solve that. Problems were mainly on trees and number sequences
  • Q2. In this round he mainly discussed my projects and asked me how these can be put to use in Paypal. He also asked some basic questions from ML
  • Q3. HR round was just for formality
  • Q4. Probability , question on calculating expected number of trials and puzzles

Interview Preparation Tips

Round: Test
Experience: The coding question was:
Given a binary string containing 0's and 1's. You can split the string such that each partition should be a exponential of 5 (1,5,25,625...). You were asked to return minimum number of partition for the given string such each partition is exponential of 5. If no such partition exists return -1.
Examples: '101101101' Ans: 3 (101, 101, 101)
'111' Ans: 3 (1,1,1)
10101 Ans: -1
Tips: For MCQ's prepare DSA, OS and Networking. For DSA you can refer to cormen
For Coding question practice on either geeksforgeeks or from any of the coding platforms like hackerrank
The shortlist was mainly dependent on coding question
Duration: 1 hour 30 minutes

Round: Puzzle Interview
Tips: Do lot of puzzles from heard on the street, -----/ , Try to search for more. It will be helpful in other interviews as well

Round: Technical Interview
Tips: Practice algorithm section from geeksforgeeks. There are lot of standard problems. The given questions were slightly modified version of standard problems

Round: Technical Interview
Tips: For this round you need to be well prepared with your projects and resume.

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Questions about projects
  • Q2. Why Paypal?
  • Ans. 

    Paypal is a leading online payment platform with a strong reputation and global presence.

    • Paypal is a well-established and trusted online payment platform used by millions of users worldwide.

    • It offers secure and convenient payment options for both individuals and businesses.

    • Paypal has a strong focus on innovation and technology, making it an exciting place to work for software engineers.

    • Working at Paypal provides opport...

  • Answered by AI
  • Q3. What does Paypal do?
  • Ans. 

    Paypal is a digital payment platform that allows individuals and businesses to make online transactions.

    • Paypal provides a secure way to send and receive money online.

    • It allows users to link their bank accounts, credit cards, or debit cards to their Paypal account.

    • Users can make payments to merchants or individuals using their Paypal balance or linked payment methods.

    • Paypal offers buyer and seller protection, dispute re...

  • Answered by AI
  • Q4. How do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills and knowledge through ongoing learning and certifications

    • Taking on more leadership responsibilities and mentoring junior team members

    • Contributing to the development of cutting-edge software solutions

    • Building strong relationships with colleagues and stakeholders to drive pr

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: One Programming and 15 multiple choice Questions.
Duration: 1 hour 30 minutes
Total Questions: 16

Round: Technical Interview
Experience: All details about projects you have written on resume. Some different implementation of some parts of your project.

Skills: Knowledge about Database Managements Systems, Problem Solving Skills
College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

11 Questions

  • Q1. Detecting loop in linked list
  • Ans. 

    Detecting loop in a linked list

    • Use two pointers, one moving one node at a time and the other moving two nodes at a time

    • If there is a loop, the two pointers will eventually meet

    • If any of the pointers reach the end of the list, there is no loop

  • Answered by AI
  • Q2. Write code for dfs
  • Ans. 

    DFS (Depth-First Search) is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

    • DFS uses a stack to keep track of visited nodes and explore adjacent nodes.

    • It can be implemented recursively or iteratively.

    • DFS is useful for solving problems like finding connected components, detecting cycles, and solving mazes.

  • Answered by AI
  • Q3. How to find cycle in graph
  • Ans. 

    To find a cycle in a graph, use depth-first search (DFS) and keep track of visited nodes.

    • Implement DFS algorithm to traverse the graph

    • Maintain a visited array to keep track of visited nodes

    • If a visited node is encountered again during DFS, a cycle exists

  • Answered by AI
  • Q4. What is hashing and how will you implement?
  • Ans. 

    Hashing is a process of converting data into a fixed-size numerical value called a hash code.

    • Hashing is used to quickly retrieve data from large datasets.

    • It is commonly used in data structures like hash tables and hash maps.

    • Hash functions should be fast, deterministic, and produce unique hash codes for different inputs.

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

  • Answered by AI
  • Q5. Questions related to to resume
  • Q6. No of pairs between 1 and N satisfy relation pow(a,3)+pow(b,3)=pow(c,3)+pow(d,3).a,b,c,d<=N
  • Ans. 

    The question asks for the number of pairs between 1 and N that satisfy a specific mathematical relation.

    • The relation is pow(a,3) + pow(b,3) = pow(c,3) + pow(d,3)

    • The values of a, b, c, and d should be less than or equal to N

    • Count the number of pairs that satisfy the relation

  • Answered by AI
  • Q7. -----.php?pid=514
  • Q8. Questions related to resume
  • Q9. Explain Merge sort
  • Ans. 

    Merge sort is a divide-and-conquer algorithm that recursively divides an array into two halves, sorts them, and then merges them.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

    • Repeat until the entire array is sorted

  • Answered by AI
  • Q10. Why do you want to join in paypal?
  • Ans. 

    I want to join PayPal because of its innovative technology, global impact, and strong company culture.

    • Innovative technology - PayPal is known for its cutting-edge technology and digital payment solutions.

    • Global impact - Working at PayPal would allow me to contribute to a company that has a worldwide reach and influence.

    • Strong company culture - I value a company that prioritizes diversity, inclusion, and employee well-b...

  • Answered by AI
  • Q11. Explain anything whatever you learned recently?
  • Ans. 

    I recently learned about the benefits of using Docker for containerization.

    • Docker allows for easy packaging and deployment of applications

    • It helps in creating consistent environments across different platforms

    • Docker containers are lightweight and efficient

    • Example: I used Docker to containerize a microservices architecture for a recent project

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: coding question related to palindrome portioning.MCQs related to cs fundamentals
Duration: 1 hour 30 minutes

Skills: General Coding And Problem Solving
College Name: IIT Madras

Skills evaluated in this interview

PaySafe India Interview FAQs

How many rounds are there in PaySafe India interview?
PaySafe India interview process usually has 2-3 rounds. The most common rounds in the PaySafe India interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for PaySafe India 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 PaySafe India. The most common topics and skills that interviewers at PaySafe India expect are Recruitment, Analytics, ISO, Product Management and Financial Services.
What are the top questions asked in PaySafe India interview?

Some of the top questions asked at the PaySafe India interview -

  1. How will u design a risk handling case management prod...read more
  2. Zig zag traversal of tree All permutation and combination of numbers in a given...read more
  3. Explain a typical Payment fl...read more

Tell us how to improve this page.

PaySafe India Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 752 Interviews
FIS Interview Questions
3.9
 • 482 Interviews
PhonePe Interview Questions
4.0
 • 299 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
Google Pay Interview Questions
4.2
 • 34 Interviews
Amazon Pay Interview Questions
4.0
 • 13 Interviews
Jio Money Interview Questions
4.2
 • 1 Interview
Ola Money Interview Questions
3.1
 • 1 Interview
View all

PaySafe India Reviews and Ratings

based on 33 reviews

3.6/5

Rating in categories

3.2

Skill development

4.0

Work-life balance

3.6

Salary

2.9

Job security

3.6

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 33 Reviews and Ratings
Platform Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Platform Engineer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Platform Engineer Lead
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare PaySafe India with

Paytm

3.3
Compare

PhonePe

4.0
Compare

Google Pay

4.2
Compare

Amazon Pay

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