Upload Button Icon Add office photos
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

Compare button icon Compare button icon Compare
3.6

based on 490 Reviews

Filter interviews by

Razorpay Software Development Engineer Interview Questions and Answers

Updated 11 Nov 2024

Razorpay Software Development Engineer Interview Experiences

3 interviews found

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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Trapping Rainwater
  • Q2. Is String Panagram

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Machine coding round of 1.5~2 hours

Round 2 - Behavioral 

(2 Questions)

  • Q1. Current company work experience
  • Q2. Innovative initiatives taken for team

Software Development Engineer Jobs at Razorpay

View all

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It was more based on array/string manipulation, stack/queue based, if you have solved questions before then it will be easy/medium difficulty level for yo

Round 2 - Technical 

(2 Questions)

  • Q1. Asteroid collision
  • Q2. Stack/queue based
Round 3 - One-on-one 

(1 Question)

  • Q1. Resume based discussion. therory concepts/ OOPS's , DBMS, OS,etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepared for technical questions
Coding questions will be easy to medium , and expected to solve 2 questions fully.
Be communicative throughout the interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2023.

Round 1 - Coding Test 

Two string manipulation DSA questions (EASY + MEDIUM)

Round 2 - Coding Test 

1 medium egg dropping problem
1 hard string manipulation
Dsa problems

Round 3 - Coding Test 

3 dsa questions (2 medium+1 hard)
1. Two Voting quque
2. Some dp
3. Trie implementation

Round 4 - Technical 

(1 Question)

  • Q1. 1. LLD design of ludo 2. Random API design 3. Few questions on Java Spring
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 4 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 - Assignment 

Low level design of a car rental service in java.

Round 3 - Coding Test 

Graph based algorithms were discussed and coded.

Round 4 - HR 

(1 Question)

  • Q1. Was supposed to be a culture fit, but was asked DSA questions. Sorting algorithms, merge sort was implemented.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare LLD and DSA.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Merge two sorted linked lists
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list

    • Create a new linked list to store the merged result

    • Iterate through both input linked lists and compare nodes to determine the order in which they should be added to the result list

    • Handle cases where one list is longer than the other

  • Answered by AI
  • Q2. Check if paranthesis are balanced or not
  • Ans. 

    To check if parentheses are balanced, use a stack data structure to keep track of opening and closing parentheses.

    • Use a stack to push opening parentheses and pop when encountering a closing parenthesis

    • If stack is empty when encountering a closing parenthesis, return false

    • After iterating through all parentheses, if stack is empty, return true

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Right view of a Binary Search tree
  • Ans. 

    The right view of a Binary Search Tree shows the nodes that are visible when viewing the tree from the right side.

    • The right view of a Binary Search Tree includes the rightmost node at each level.

    • Nodes at each level that are not visible from the right side are not included in the right view.

    • Example: For the Binary Search Tree with values 1, 2, 3, 4, 5, the right view would be 1, 3, 5.

  • Answered by AI
  • Q2. Few javascript questions on how to parse a json object without using inbuilt libraries.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare dsa easy-medium and your projecs in depth.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
No response

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the react lifecycle functions and how they work
  • Ans. 

    React lifecycle functions are methods that are automatically called at specific points in a component's life cycle.

    • Mounting: constructor, render, componentDidMount

    • Updating: render, componentDidUpdate

    • Unmounting: componentWillUnmount

  • Answered by AI
  • Q2. Css box model, difference between padding and margin
  • Ans. 

    Padding is the space inside the border of an element, while margin is the space outside the border.

    • Padding is used to create space between the content and the border of an element.

    • Margin is used to create space between the border of an element and other elements.

    • Padding affects the size of the content area, while margin affects the positioning of the element.

    • Example: padding: 10px will create 10 pixels of space inside ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations in CTC and variables?
  • Q2. Will you relocate to the location required?

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare everything bookish! don't only speak related to your experience

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write code for advance surrying in js

Round 2 - Coding Test 

Implement custom hook for api call

Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic questions arounf my previous work
  • Q2. Technical questions around performance and code optimization
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

75 min test with 18 Java theory questions

Round 2 - Technical 

(5 Questions)

  • Q1. Synchronized keyword usage
  • Ans. 

    The synchronized keyword in Java is used to control access to shared resources in a multithreaded environment.

    • Synchronized keyword can be used to synchronize access to critical sections of code to prevent race conditions.

    • It can be applied to methods or code blocks to ensure only one thread can access them at a time.

    • Example: synchronized void myMethod() { // code }

    • Example: synchronized(this) { // code }

  • Answered by AI
  • Q2. Message Queue types
  • Q3. Thread Contention
  • Q4. Java Profiling Tools
  • Q5. Abstract classes

Skills evaluated in this interview

Razorpay Interview FAQs

How many rounds are there in Razorpay Software Development Engineer interview?
Razorpay interview process usually has 2 rounds. The most common rounds in the Razorpay interview process are Technical, Aptitude Test and HR.
How to prepare for Razorpay Software Development Engineer 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 Razorpay. The most common topics and skills that interviewers at Razorpay expect are PHP, Open Source, Product Design, Python and Github.
What are the top questions asked in Razorpay Software Development Engineer interview?

Some of the top questions asked at the Razorpay Software Development Engineer interview -

  1. Merge interval greedy prob...read more
  2. String problem medium prob...read more
  3. is String Panag...read more

Tell us how to improve this page.

Razorpay Software Development Engineer Interview Process

based on 3 interviews in last 1 year

Interview experience

4
  
Good

People are getting interviews through

based on 2 Razorpay interviews
Campus Placement
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Razorpay Software Development Engineer Salary
based on 78 salaries
₹8 L/yr - ₹34 L/yr
38% more than the average Software Development Engineer Salary in India
View more details

Razorpay Software Development Engineer Reviews and Ratings

based on 3 reviews

3.6/5

Rating in categories

2.6

Skill development

2.9

Work-Life balance

2.4

Salary & Benefits

3.0

Job Security

3.4

Company culture

1.5

Promotions/Appraisal

3.0

Work Satisfaction

Explore 3 Reviews and Ratings
Software Development Engineer

Bangalore / Bengaluru

1-4 Yrs

₹ 8-25.9 LPA

Explore more jobs
Software Engineer
105 salaries
unlock blur

₹7 L/yr - ₹26.5 L/yr

Junior Analyst
95 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Analyst
92 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Senior Software Engineer
84 salaries
unlock blur

₹15 L/yr - ₹47.5 L/yr

Software Development Engineer
78 salaries
unlock blur

₹8 L/yr - ₹34 L/yr

Explore more salaries
Compare Razorpay with

Paytm

3.3
Compare

PayPal

3.9
Compare

BharatPe

3.5
Compare

BillDesk

3.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview