Premium Employer

i

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

Razorpay Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Razorpay Interview Questions and Answers for Freshers

Updated 1 Jul 2025
Popular Designations

9 Interview questions

A SDE was asked 7mo ago
Q. How would you design a SQL database?
Ans. 

Design a SQL database for a library management system to manage books, members, and transactions.

  • Entities: Books, Members, Transactions.

  • Books table: id (PK), title, author, genre, published_date.

  • Members table: id (PK), name, email, membership_date.

  • Transactions table: id (PK), book_id (FK), member_id (FK), borrow_date, return_date.

View all SDE interview questions
A Software Developer Intern was asked 9mo ago
Q. Given an integer n, return the factorial of n using tabulation.
Ans. 

Factorial calculation using tabulation in dynamic programming

  • Create an array to store factorial values up to n

  • Initialize the array with base cases (0! = 1, 1! = 1)

  • Iterate from 2 to n and calculate factorial using previous values in the array

  • Return the factorial value at index n

View all Software Developer Intern interview questions
A Software Developer Intern was asked 9mo ago
Q. Given an input string (s) and a pattern (p), implement wildcard pattern matching with support for '?' and '*' where: '?' Matches any single character. '*' Matches any sequence of characters (including the e...
Ans. 

Wildcard matching checks if a string matches a pattern with '*' and '?' as wildcards.

  • Use '*' to match any sequence of characters. Example: 'a*b' matches 'ab', 'aXb', 'a123b'.

  • '?' matches any single character. Example: 'a?c' matches 'abc', 'axc', but not 'ac'.

  • Implement using dynamic programming for efficiency, especially for longer strings.

  • Consider edge cases like empty strings and patterns.

View all Software Developer Intern interview questions
A Software Development Engineer was asked 9mo ago
Q. Given a collection of intervals, merge all overlapping intervals.
Ans. 

Merge overlapping intervals to create a new set of non-overlapping intervals.

  • Sort the intervals based on the start time.

  • Iterate through the intervals and merge overlapping intervals.

  • Return the merged intervals as the final result.

View all Software Development Engineer interview questions
A Software Development Engineer Intern was asked 11mo ago
Q. Build an Analog Clock
Ans. 

Analog clock can be built using HTML, CSS, and JavaScript to display current time.

  • Create a circular clock face using HTML and CSS

  • Use JavaScript to get current time and update clock hands accordingly

  • Rotate clock hands based on current time

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked 9mo ago
Q. What is ai and what are its features
Ans. 

AI stands for artificial intelligence, which is the simulation of human intelligence processes by machines.

  • AI involves machines performing tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, and language translation.

  • AI systems can learn from data, adapt to new inputs, and perform tasks autonomously.

  • Examples of AI include virtual assistants like Siri and ...

View all Software Development Engineer Intern interview questions
A Software Developer was asked
Q. 

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

Reverse a singly linked list by altering the links between nodes.

  • Iterate through the linked list and reverse the links between nodes

  • Use three pointers to keep track of the current, previous, and next nodes

  • Update the links between nodes to reverse the list

  • Return the head of the reversed linked list

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. 

Middle of a Linked List

You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

If there is an odd number of elements, return the m...

Ans. 

Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

  • Traverse the linked list with two pointers, one moving twice as fast as the other

  • When the fast pointer reaches the end, the slow pointer will be at the middle

  • If there are even elements, return the one that is farther from the head node

  • Handle edge cases like linked list of size 1 or empty list

View all Software Developer interview questions
A Software Developer was asked
Q. Can you describe the process of designing an LRU Cache from scratch during your System Design Round?
Ans. 

Designing an LRU Cache involves implementing a data structure that stores a fixed number of items and removes the least recently used item when full.

  • Start by defining the data structure for the cache, typically using a combination of a hashmap and a doubly linked list.

  • Implement methods for getting and setting key-value pairs in the cache.

  • When a new item is added to the cache, check if it exceeds the maximum capaci...

View all Software Developer interview questions

Razorpay Interview Experiences for Freshers

21 interviews found

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Was asked to create a UI component keeping in mind scalability and reuseability.

Round 2 - Coding Test 

General discussion about resume and projects, and then some basic JS coding questions like implement throttling and memoization.

Round 3 - Behavioral 

(3 Questions)

  • Q1. Discussion about past experiences and projects
  • Q2. Why you want to leave current job.
  • Q3. Expectations from the role and company

Interview Preparation Tips

Topics to prepare for Razorpay Front end Developer interview:
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - Feedback from HR was very quick, all rounds were scheduled in quick succession. Although one point, HR did not confirm availability before scheduling the interviews. Also didn't get any feedback after getting rejected.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

There were DSA questions and time limit was 1 hr

Round 2 - Technical 

(2 Questions)

  • Q1. Calculate factorial using tabulation
  • Ans. 

    Factorial calculation using tabulation in dynamic programming

    • Create an array to store factorial values up to n

    • Initialize the array with base cases (0! = 1, 1! = 1)

    • Iterate from 2 to n and calculate factorial using previous values in the array

    • Return the factorial value at index n

  • Answered by AI
  • Q2. Wildcard matching question
  • Ans. 

    Wildcard matching checks if a string matches a pattern with '*' and '?' as wildcards.

    • Use '*' to match any sequence of characters. Example: 'a*b' matches 'ab', 'aXb', 'a123b'.

    • '?' matches any single character. Example: 'a?c' matches 'abc', 'axc', but not 'ac'.

    • Implement using dynamic programming for efficiency, especially for longer strings.

    • Consider edge cases like empty strings and patterns.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were mcqs in atitude test.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is ai and what are its features
  • Ans. 

    AI stands for artificial intelligence, which is the simulation of human intelligence processes by machines.

    • AI involves machines performing tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, and language translation.

    • AI systems can learn from data, adapt to new inputs, and perform tasks autonomously.

    • Examples of AI include virtual assistants like Siri and Alexa...

  • Answered by AI
  • Q2. Oops questions including abstraction

Interview Preparation Tips

Topics to prepare for Razorpay Software Development Engineer Intern interview:
  • OOPS
  • Java
  • API

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude and coding both

Round 2 - Technical 

(2 Questions)

  • Q1. Merge interval greedy problem
  • Ans. 

    Merge overlapping intervals to create a new set of non-overlapping intervals.

    • Sort the intervals based on the start time.

    • Iterate through the intervals and merge overlapping intervals.

    • Return the merged intervals as the final result.

  • Answered by AI
  • Q2. String problem medium problem
Round 3 - HR 

(1 Question)

  • Q1. I am not selected

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve Leetcode problem

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. A lot of questions related to advance financials which mostly CA's are good in
  • Q2. Ratios related to underwriting like capital ratio calculation , DSCR ratio calculation.
  • Q3. Financial statements like , cassh floe , balance sheet etc related advance questions

Interview Questions & Answers

user image Anonymous

posted on 15 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How well versed are you with advertising platforms like Google Ads, Meta, LinkedIn
  • Q2. Given scenario X, what would be your approach?

SDE Interview Questions & Answers

user image Anonymous

posted on 30 Nov 2024

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

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

Round 1 - Low Level Design 

(1 Question)

  • Q1. Design a SQL Database
  • Ans. 

    Design a SQL database for a library management system to manage books, members, and transactions.

    • Entities: Books, Members, Transactions.

    • Books table: id (PK), title, author, genre, published_date.

    • Members table: id (PK), name, email, membership_date.

    • Transactions table: id (PK), book_id (FK), member_id (FK), borrow_date, return_date.

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Oct 2023. 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 - One-on-one 

(1 Question)

  • Q1. Regarding Chargeback, Dispute management, Fraud investigation.
Round 3 - Behavioral 

(1 Question)

  • Q1. Chargeback, Refund, Recovery, Dispute management, Card and payment

Interview Preparation Tips

Topics to prepare for Razorpay Senior Risk Analyst interview:
  • Chargeback
  • Dispute Management
Interview preparation tips for other job seekers - My first round of interview went well ,even the interviewer was supportive.i got shortlisted for the managerial round.
In the managerial round "Richa Choubey"took the interview.After she has given the feedback as skills are not aligned with the position that they are hiring.
If my skills were not match how did you shortlist my profile?and how did I clear the 1st round of interview with the senior team lead which was completely skill based interview.
"Dear managers.., If you want to hire your own people ,then why do you people wasting time of genuine candidates?".

CEO and Directors has to take action against these kind of partiality that they are showing while hiring.
Kindly look into this issue on priority.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About kyc process,related act, str etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Lethargic interviewer dint feel good and she dint seem worth to the position she is in.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. To explain current responsibilities
  • Ans. 

    Currently managing project timelines, coordinating teams, and ensuring successful delivery of program objectives.

    • Oversee project schedules and ensure milestones are met, e.g., launching a new product feature on time.

    • Coordinate cross-functional teams, facilitating communication between developers, designers, and stakeholders.

    • Monitor project budgets and resource allocation, ensuring efficient use of funds, e.g., staying ...

  • Answered by AI
  • Q2. Scenario based questions

Top trending discussions

View All
Interview Tips & Stories
6d (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 Razorpay?
Ask anonymously on communities.

Razorpay Interview FAQs

How many rounds are there in Razorpay interview for freshers?
Razorpay interview process for freshers usually has 2-3 rounds. The most common rounds in the Razorpay interview process for freshers are One-on-one Round, Technical and Coding Test.
How to prepare for Razorpay interview for freshers?
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 Razorpay. The most common topics and skills that interviewers at Razorpay expect are Financial Services, Business Banking, Home Loans, Python and Loans.
What are the top questions asked in Razorpay interview for freshers?

Some of the top questions asked at the Razorpay interview for freshers -

  1. What is ai and what are its featu...read more
  2. Given scenario X, what would be your approa...read more
  3. Calculate factorial using tabulat...read more
What are the most common questions asked in Razorpay HR round for freshers?

The most common HR questions asked in Razorpay interview are for freshers -

  1. What are your strengths and weakness...read more
  2. Why should we hire y...read more
  3. What are your salary expectatio...read more
How long is the Razorpay interview process?

The duration of Razorpay 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.8/5

based on 16 interview experiences

Difficulty level

Easy 9%
Moderate 82%
Hard 9%

Duration

Less than 2 weeks 73%
2-4 weeks 27%
View more
Join Razorpay Revolutionize the FinTech space with groundbreaking solutions

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 347 Interviews
PayPal Interview Questions
3.8
 • 225 Interviews
Fiserv Interview Questions
2.9
 • 181 Interviews
KFintech Interview Questions
3.5
 • 154 Interviews
Angel One Interview Questions
3.8
 • 149 Interviews
Visa Interview Questions
3.5
 • 146 Interviews
MasterCard Interview Questions
3.9
 • 145 Interviews
Revolut Interview Questions
2.6
 • 104 Interviews
TransUnion Interview Questions
3.9
 • 93 Interviews
View all

Razorpay Reviews and Ratings

based on 593 reviews

3.6/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.4

Salary

3.4

Job security

3.5

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 593 Reviews and Ratings
Senior Communication Designer

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Senior Analytics Specialist

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Lead Analytics Specialist

Bangalore / Bengaluru

5-7 Yrs

Not Disclosed

Explore more jobs
Software Developer
124 salaries
unlock blur

₹14.4 L/yr - ₹24 L/yr

Junior Analyst
118 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Analyst
113 salaries
unlock blur

₹3.5 L/yr - ₹7.8 L/yr

Software Engineer
112 salaries
unlock blur

₹11.5 L/yr - ₹18.5 L/yr

Senior Software Engineer
109 salaries
unlock blur

₹22 L/yr - ₹37 L/yr

Explore more salaries
Compare Razorpay with

Paytm

3.2
Compare

PayPal

3.8
Compare

BharatPe

3.5
Compare

PhonePe

4.0
Compare
write
Share an Interview