AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
3.3

based on 152 Reviews

Play video Play video Video summary
  • About
  • Reviews
    152
  • Salaries
    1.3k
  • Interviews
    23
  • Jobs
    12
  • Benefits
    5
  • Photos
    7

Filter interviews by

Cashfree Payments Interview Questions and Answers

Updated 13 Mar 2025
Popular Designations

18 Interview questions

A Group Product Manager was asked 3mo 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 6mo 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 7mo 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 8mo 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
1 2

Cashfree Payments Interview Experiences

23 interviews found

React Native Developer Interview Questions & Answers

user image Anonymous

posted on 30 Jul 2024

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
    Add your answer
  • Q2. Two questions that were a follow up to the 1st question.
  • Add your answer
Round 2 - One-on-one 

(4 Questions)

  • Q1. React Native framework based questions
  • Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • Q4. Tools discussion for RN app, specifically Firebase, Sentry.
  • Add your answer

Skills evaluated in this interview

Anonymous

Full Stack Developer Interview Questions & Answers

user image Anonymous

posted on 29 Nov 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 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
    Add your answer
  • Q2. HTTP status codes
  • Add your answer
Anonymous

Software Development Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Nov 2024

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
    Add your answer
Anonymous

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
    Add your answer
  • Q2. Questions on case study to monitor your ability
  • Add your answer
Round 2 - Assignment 

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

Anonymous

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
    Add your answer
  • Q2. Salary expectations
  • Add your answer
Anonymous

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
  • Add your answer
  • 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
    Add your answer
Round 2 - Technical 

(1 Question)

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

Skills evaluated in this interview

Anonymous

React Native Mobile Application Developer Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2024

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
    Add your answer
  • 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
    Add your answer

Skills evaluated in this interview

Anonymous

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

Anonymous

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
Anonymous

Product Operations Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Past experience
  • Add your answer
  • Q2. Resume related questions
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w
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 Cashfree Payments ?
Ask anonymously on communities.
More about working at Cashfree Payments
  • HQ - Bangalore,Karnataka, India
  • FinTech
  • 501-1k Employees (India)
  • Financial Services

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.

Cashfree Payments Interviews By Designations

  • Cashfree Payments Senior Associate Interview Questions
  • Cashfree Payments Assistant Manager Interview Questions
  • Cashfree Payments Associate Product Manager Interview Questions
  • Cashfree Payments Software Developer Interview Questions
  • Cashfree Payments Relationship Manager Interview Questions
  • Cashfree Payments Key Account Manager Interview Questions
  • Cashfree Payments Software Development Engineer Interview Questions
  • Cashfree Payments Group Product Manager Interview Questions
  • Show more
  • Cashfree Payments Senior Executive - Finance Interview Questions
  • Cashfree Payments Associate Interview Questions

Interview Questions for Popular Designations

  • Associate Interview Questions
  • Software Developer Interview Questions
  • Intern Interview Questions
  • Sales Executive Interview Questions
  • Associate Software Engineer Interview Questions
  • Graduate Engineer Trainee (Get) Interview Questions
  • Java Developer Interview Questions
  • Senior Software Engineer Interview Questions
  • Show more
  • Manager Interview Questions
  • Deputy Manager Interview Questions

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
Razorpay Interview Questions
3.6
 • 159 Interviews
Revolut
Revolut Interview Questions
2.6
 • 103 Interviews
Rupeek
Rupeek Interview Questions
3.7
 • 65 Interviews
Navi Technologies
Navi Technologies Interview Questions
2.9
 • 59 Interviews
ACKO
ACKO Interview Questions
3.7
 • 55 Interviews
Yubi
Yubi Interview Questions
3.3
 • 41 Interviews
CRED
CRED Interview Questions
3.6
 • 39 Interviews
Slice
Slice Interview Questions
3.2
 • 37 Interviews
Kissht Finance
Kissht Finance Interview Questions
3.9
 • 36 Interviews
RapiPay
RapiPay Interview Questions
3.7
 • 35 Interviews
View all

Cashfree Payments Reviews and Ratings

based on 152 reviews

3.3/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

3.5

Salary

2.8

Job security

3.1

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 152 Reviews and Ratings
Jobs at Cashfree Payments
Cashfree Payments
Cashfree - DevOps Engineer IV - Cloud Technologies (7-10 yrs)

7-10 Yrs

Not Disclosed

Cashfree Payments
Devops engineer 4

Bangalore / Bengaluru

7-12 Yrs

₹ 55-65 LPA

Cashfree Payments
Software Development Lead

Bangalore / Bengaluru

6-10 Yrs

₹ 45-60 LPA

Explore more jobs
Cashfree Payments Salaries in India
Assistant Manager
69 salaries
unlock blur

₹8 L/yr - ₹24 L/yr

Senior Associate
60 salaries
unlock blur

₹6.5 L/yr - ₹12.6 L/yr

Senior Manager
45 salaries
unlock blur

₹15.9 L/yr - ₹37 L/yr

Associate Director
43 salaries
unlock blur

₹19 L/yr - ₹61.1 L/yr

Manager
26 salaries
unlock blur

₹13.5 L/yr - ₹31.4 L/yr

Explore more salaries
Compare Cashfree Payments with
Rupeek

Rupeek

3.7
Compare
Razorpay

Razorpay

3.6
Compare
ACKO

ACKO

3.7
Compare
Kissht Finance

Kissht Finance

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Cashfree Payments Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter