Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cashfree Payments Team. If you also belong to the team, you can get access from here

Cashfree Payments Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cashfree Payments Interview Questions and Answers

Updated 13 Mar 2025
Popular Designations

18 Interview questions

A Group Product Manager was asked 4mo ago
Q. Can you tell us about yourself?
Ans. 

Experienced Group Product Manager with a strong background in product strategy, team leadership, and market analysis.

  • Over 10 years of experience in product management, leading cross-functional teams to deliver innovative solutions.

  • Successfully launched a new product line that increased revenue by 30% within the first year.

  • Expert in market research and user feedback analysis, which helped refine product features an...

View all Group Product Manager interview questions
An Associate was asked 7mo ago
Q. Can you elaborate on the information provided in your resume?
Ans. 

I have a diverse background in project management, data analysis, and team leadership, which I detailed in my resume.

  • Led a team of 5 in a successful project that increased efficiency by 20%.

  • Managed budgets exceeding $100,000, ensuring projects were completed on time and within budget.

  • Utilized data analysis tools like Excel and Tableau to drive decision-making and improve processes.

View all Associate interview questions
A Software Development Engineer was asked 8mo ago
Q. How do you convert an Arabic number to a Roman numeral?
Ans. 

Convert Arabic numbers to Roman numerals

  • Create a mapping of Arabic numbers to Roman numerals

  • Iterate through the mapping to find the largest Roman numeral that fits the Arabic number

  • Subtract the value of the Roman numeral from the Arabic number and repeat until the Arabic number becomes 0

View all Software Development Engineer interview questions
A Sdet was asked 9mo ago
Q. Write test cases for a given payment scenario.
Ans. 

Test cases for payment scenario

  • Verify payment is processed successfully with valid credit card information

  • Test payment failure with invalid credit card details

  • Check if payment confirmation email is sent to the user

  • Test payment timeout scenario

  • Verify payment receipt is generated after successful transaction

View all Sdet interview questions
A Relationship Manager was asked 10mo ago
Q. How will you manage merchant expectations?
Ans. 

I will manage merchant expectations by setting clear communication, understanding their needs, and delivering on promises.

  • Establish clear communication channels with merchants to understand their expectations

  • Set realistic expectations and deliver on promises to build trust

  • Regularly follow up with merchants to ensure their needs are being met

  • Provide updates on progress and address any concerns promptly

  • Offer solutio...

View all Relationship Manager interview questions
A React Native Developer was asked 11mo ago
Q. Describe the release process of an app on the Play Store and Apple App Store.
Ans. 

The release process involves preparing the app for submission, testing, uploading to the respective app stores, and managing the release.

  • Prepare the app for submission by ensuring it meets all guidelines and requirements of the app stores.

  • Test the app thoroughly to identify and fix any bugs or issues before release.

  • Upload the app to the Play Store and Apple Store developer consoles.

  • Manage the release by setting up...

View all React Native Developer interview questions
A React Native Developer was asked 11mo ago
Q. How do you create a custom hook?
Ans. 

Custom hooks in React Native allow for reusable logic across components.

  • Custom hooks are functions that start with 'use' keyword.

  • They can encapsulate logic like API calls, state management, etc.

  • Example: useFetch custom hook for making API calls.

View all React Native Developer interview questions
Are these interview questions helpful?
A React Native Developer was asked 11mo ago
Q. Write a recursion-based coding question to be solved in JavaScript.
Ans. 

Recursion is a method where a function calls itself to solve a problem, often simplifying complex tasks.

  • Recursion involves a base case and a recursive case.

  • Example: Calculating factorial of a number n: factorial(n) = n * factorial(n-1).

  • Base case: factorial(0) = 1.

  • Recursion can lead to elegant solutions for problems like tree traversals and Fibonacci series.

View all React Native Developer interview questions
A React Native Mobile Application Developer was asked 12mo ago
Q. Explain React Native's new architecture.
Ans. 

React Native's new architecture is based on Fabric, a re-architecture of the core of React Native.

  • Fabric is a new threading model that improves performance by allowing React Native to schedule work on multiple threads.

  • It separates the UI rendering from JavaScript execution, resulting in smoother animations and improved responsiveness.

  • The new architecture also introduces TurboModules, which are a more efficient way...

View all React Native Mobile Application Developer interview questions
A React Native Mobile Application Developer was asked 12mo ago
Q. How do you store user sensitive data in React Native?
Ans. 

Sensitive user data in React Native can be stored securely using AsyncStorage or secure storage libraries.

  • Use AsyncStorage to store sensitive data locally on the device.

  • Utilize secure storage libraries like react-native-keychain or react-native-secure-storage for encryption and secure storage.

  • Avoid storing sensitive data in plain text or insecure locations.

  • Implement proper authentication and authorization mechanis...

View all React Native Mobile Application Developer interview questions

Cashfree Payments Interview Experiences

23 interviews found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 15 Aug 2022

I applied via Job Fair and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Twenty mcqs on logical thinking, aptitude and mathematical ability and two coding questions.
First question - given a string and a number k delete all characters that appear k times consequetively and repeat in the new result string till no further deletion is possible.
Second question - given an array with m non-zero numbers and rest 0 determine the minimum number of exchanges between a non-zero number and a 0 to put all the zero to the right of the array.

Round 2 - Technical 

(1 Question)

  • Q1. Find the number of buildings to the left and right that can be viewed from the top of each building in a sequence of buildings.
  • Ans. 

    Given a sequence of buildings, find the number of buildings visible to the left and right from the top of each building.

    • Traverse the sequence of buildings from left to right and maintain a stack of visible buildings.

    • For each building, pop all the buildings from the stack that are shorter than the current building and count them as visible to the left.

    • Push the current building onto the stack and count the number of buil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice dsa regularly especially questions related to stacks.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. One recursion based coding question to be solved in JS.
  • Ans. 

    Recursion is a method where a function calls itself to solve a problem, often simplifying complex tasks.

    • Recursion involves a base case and a recursive case.

    • Example: Calculating factorial of a number n: factorial(n) = n * factorial(n-1).

    • Base case: factorial(0) = 1.

    • Recursion can lead to elegant solutions for problems like tree traversals and Fibonacci series.

  • Answered by AI
  • Q2. Two questions that were a follow up to the 1st question.
Round 2 - One-on-one 

(4 Questions)

  • Q1. React Native framework based questions
  • Q2. Release process of an app on Play Store and apple store
  • Ans. 

    The release process involves preparing the app for submission, testing, uploading to the respective app stores, and managing the release.

    • Prepare the app for submission by ensuring it meets all guidelines and requirements of the app stores.

    • Test the app thoroughly to identify and fix any bugs or issues before release.

    • Upload the app to the Play Store and Apple Store developer consoles.

    • Manage the release by setting up rele...

  • Answered by AI
  • Q3. Creation of Custom hook
  • Ans. 

    Custom hooks in React Native allow for reusable logic across components.

    • Custom hooks are functions that start with 'use' keyword.

    • They can encapsulate logic like API calls, state management, etc.

    • Example: useFetch custom hook for making API calls.

  • Answered by AI
  • Q4. Tools discussion for RN app, specifically Firebase, Sentry.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The interviewer asked me to build an accordion, the interview was 1 hour long

Round 2 - Technical 

(2 Questions)

  • Q1. Rate Limiting algorithm
  • Ans. 

    Rate limiting algorithm is used to control the rate of traffic sent or received by a system.

    • Rate limiting helps prevent abuse, protect against DoS attacks, and ensure fair usage of resources.

    • Common rate limiting algorithms include token bucket, leaky bucket, and fixed window.

    • Token bucket algorithm allows bursts of traffic up to a certain limit, while leaky bucket algorithm smooths out traffic over time.

    • Fixed window alg...

  • Answered by AI
  • Q2. HTTP status codes
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Convert Arabic to Roman numeral
  • Ans. 

    Convert Arabic numbers to Roman numerals

    • Create a mapping of Arabic numbers to Roman numerals

    • Iterate through the mapping to find the largest Roman numeral that fits the Arabic number

    • Subtract the value of the Roman numeral from the Arabic number and repeat until the Arabic number becomes 0

  • Answered by AI

Associate Interview Questions & Answers

user image Anonymous

posted on 3 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Justification of what is written in the resume
  • Ans. 

    I have a diverse background in project management, data analysis, and team leadership, which I detailed in my resume.

    • Led a team of 5 in a successful project that increased efficiency by 20%.

    • Managed budgets exceeding $100,000, ensuring projects were completed on time and within budget.

    • Utilized data analysis tools like Excel and Tableau to drive decision-making and improve processes.

  • Answered by AI
  • Q2. Questions on case study to monitor your ability
Round 2 - Assignment 

Case study which need to plan GTM strategy for an existing product

Group Product Manager Interview Questions & Answers

user image Saurabh Singhal

posted on 13 Mar 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Can you tell us about yourself?
  • Ans. 

    Experienced Group Product Manager with a strong background in product strategy, team leadership, and market analysis.

    • Over 10 years of experience in product management, leading cross-functional teams to deliver innovative solutions.

    • Successfully launched a new product line that increased revenue by 30% within the first year.

    • Expert in market research and user feedback analysis, which helped refine product features and imp...

  • Answered by AI
  • Q2. Salary expectations

Sdet Interview Questions & Answers

user image varun saini

posted on 8 Oct 2024

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

I applied via Approached by Company and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions based on BE automation, Synchronous and Asynchronous API and their automation
  • Q2. Write test cases for a given scenario(Payment)
  • Ans. 

    Test cases for payment scenario

    • Verify payment is processed successfully with valid credit card information

    • Test payment failure with invalid credit card details

    • Check if payment confirmation email is sent to the user

    • Test payment timeout scenario

    • Verify payment receipt is generated after successful transaction

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to framework, Jenkins, Mockers, Reporting tool, RestAssured

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain react native new architecture.
  • Ans. 

    React Native's new architecture is based on Fabric, a re-architecture of the core of React Native.

    • Fabric is a new threading model that improves performance by allowing React Native to schedule work on multiple threads.

    • It separates the UI rendering from JavaScript execution, resulting in smoother animations and improved responsiveness.

    • The new architecture also introduces TurboModules, which are a more efficient way to c...

  • Answered by AI
  • Q2. How to store user sensitive data in react native ?
  • Ans. 

    Sensitive user data in React Native can be stored securely using AsyncStorage or secure storage libraries.

    • Use AsyncStorage to store sensitive data locally on the device.

    • Utilize secure storage libraries like react-native-keychain or react-native-secure-storage for encryption and secure storage.

    • Avoid storing sensitive data in plain text or insecure locations.

    • Implement proper authentication and authorization mechanisms to...

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Aptitude Test 

General questions about earlier exp

Interview Questions & Answers

user image Anonymous

posted on 28 Nov 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024.

Round 1 - Coding Test 

DSA question and Code review

Interview Preparation Tips

Interview preparation tips for other job seekers - LLD of TicketMaster
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Past experience
  • Ans. 

    I have extensive experience in product operations, focusing on data analysis, process optimization, and cross-functional collaboration.

    • Managed product lifecycle for a tech startup, improving time-to-market by 20%.

    • Conducted data analysis to identify user trends, leading to a 15% increase in customer satisfaction.

    • Collaborated with engineering and marketing teams to streamline product launches, reducing costs by 10%.

    • Imple...

  • Answered by AI
  • Q2. Resume related questions

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cashfree Payments ?
Ask anonymously on communities.

Cashfree Payments Interview FAQs

How many rounds are there in Cashfree Payments interview?
Cashfree Payments interview process usually has 1-2 rounds. The most common rounds in the Cashfree Payments interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Cashfree Payments 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 Cashfree Payments . The most common topics and skills that interviewers at Cashfree Payments expect are Sales, B2B Sales, Python, Java and SQL.
What are the top questions asked in Cashfree Payments interview?

Some of the top questions asked at the Cashfree Payments interview -

  1. Guesstimates on creating parking space for an airp...read more
  2. Find the number of buildings to the left and right that can be viewed from the ...read more
  3. Reasons for looking for a swi...read more
How long is the Cashfree Payments interview process?

The duration of Cashfree Payments 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

3.5/5

based on 23 interview experiences

Difficulty level

Easy 19%
Moderate 81%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more

Interview Questions from Similar Companies

Razorpay Interview Questions
3.6
 • 161 Interviews
Revolut Interview Questions
2.6
 • 104 Interviews
Rupeek Interview Questions
3.7
 • 66 Interviews
ACKO Interview Questions
3.7
 • 55 Interviews
Yubi Interview Questions
3.4
 • 41 Interviews
CRED Interview Questions
3.5
 • 39 Interviews
Slice Interview Questions
3.2
 • 37 Interviews
RapiPay Interview Questions
3.6
 • 35 Interviews
View all

Cashfree Payments Reviews and Ratings

based on 155 reviews

3.3/5

Rating in categories

2.9

Skill development

3.2

Work-life balance

3.5

Salary

2.8

Job security

3.1

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 155 Reviews and Ratings
Assistant Manager
66 salaries
unlock blur

₹12 L/yr - ₹19.4 L/yr

Senior Associate
61 salaries
unlock blur

₹6.5 L/yr - ₹12.6 L/yr

Senior Manager
45 salaries
unlock blur

₹20.1 L/yr - ₹33 L/yr

Associate Director
45 salaries
unlock blur

₹30 L/yr - ₹49 L/yr

Manager
38 salaries
unlock blur

₹15 L/yr - ₹26.5 L/yr

Explore more salaries
Compare Cashfree Payments with

Rupeek

3.7
Compare

Razorpay

3.6
Compare

ACKO

3.7
Compare

Revolut

2.6
Compare
write
Share an Interview