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

Filter interviews by

Razorpay SDE Interview Questions and Answers

Updated 2 Jan 2025

Razorpay SDE Interview Experiences

3 interviews found

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

SDE Interview Questions & Answers

user image Anonymous

posted on 2 Jan 2025

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

Asked me to rewrite SQL in 20 minutes insanely tough and rude interviewer

SDE Interview Questions Asked at Other Companies

asked in Infosys
Q1. Return Subsets Sum to K Problem Statement Given an integer array ... read more
asked in Nagarro
Q2. Partition to K Equal Sum Subsets Problem Given an array of intege ... read more
asked in Nagarro
Q3. Sort a "K" Sorted Doubly Linked List Given a doubly-linked list w ... read more
asked in Nagarro
Q4. Maximum Meetings Selection You are tasked with scheduling meeting ... read more
asked in Amazon
Q5. There is a 12 km road and a contractor who is in-charge of repair ... read more

SDE Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

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

I appeared for an interview before Oct 2023.

Round 1 - Coding Test 

Given 3 DSA medium level problems

Round 2 - Coding Test 

One hour face to face round. Given system design problem of parking lot.

Round 3 - HR 

(2 Questions)

  • Q1. Description about project from resume
  • Ans. 

    Developed a web application for online shopping

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented backend using Node.js and MongoDB

    • Integrated payment gateway for secure transactions

  • Answered by AI
  • Q2. Lot of behavourial questions.

Interview questions from similar companies

SDE Interview Questions & Answers

Mobikwik user image Anonymous

posted on 21 May 2022

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next - to keep track of the nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during reversal.

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

Round 3 - HR 

Round duration - 50 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE in GurgaonEligibility criteria6.5 CGPAMobiKwik interview preparation:Topics to prepare for the interview - Python, Django, Java, Html, Bootstrap, C++, Data structure.Time required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare as many questions you can
Tip 2 : Give the competitive contest
Tip 3 : Aptitude

Application resume tips for other job seekers

Tip 1 : Minimum 2 projects.
Tip 2 : Concise and accurate

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE Interview Questions & Answers

HighRadius user image wansh biswakarma

posted on 25 Nov 2024

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

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

Round 1 - Coding Test 

Easy questions tbh and the interviewer was chill

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search to find the number of coins
  • Ans. 

    Binary search can be used to efficiently find the number of coins in a sorted array.

    • Start by setting low to 0 and high to the length of the array minus 1.

    • While low is less than or equal to high, calculate the mid point.

    • Compare the value at the mid point with the target number of coins and adjust low or high accordingly.

    • Return the index of the target number of coins if found, otherwise return -1.

  • Answered by AI
  • Q2. Oops questions that too basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - easy and go for it

Skills evaluated in this interview

SDE Interview Questions & Answers

HighRadius user image LOST OVER THERE

posted on 16 Feb 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

ALL APTI,QUANT,TECH MCQs were there

Round 2 - Coding Test 

2 easy questions were given in it

SDE Interview Questions & Answers

Visa user image Anonymous

posted on 5 Sep 2022

Round 1 - Technical 

(2 Questions)

  • Q1. Palindrome check standard leetcode question pretty easy
  • Q2. Why Visa inc etc etc standard hr question

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience only one interview and be thourouh with resume.

SDE Interview Questions & Answers

Paytm user image Anonymous

posted on 12 Nov 2024

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

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

1 easy question based on string and core subjects amd project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your resume very well.

SDE Interview Questions & Answers

Paytm user image Anonymous

posted on 6 Aug 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Not Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It consist of 3 questions on hackerrank

Round 2 - One-on-one 

(2 Questions)

  • Q1. Dont remember the exact it was related to array manipulation
  • Q2. Dont remember the exact but it was string manipulation

I appeared for an interview before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset with a particular sum exists

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the end of the iteration is true for the given K

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure to print the traversal sequence in the correct order.

    • Handle disconnected components by checking for unvisited nodes.

    • Follow the BFS approach of exploring neighbors before moving to the next level.

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

  • Q1. 

    Replace Spaces in a String

    Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

    Input:

    The first line contains an integ...
  • Ans. 

    Replace spaces in a string with '@40'.

    • Iterate through each character in the string

    • Replace spaces with '@40'

    • Return the modified string

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Razorpay Interview FAQs

How many rounds are there in Razorpay SDE interview?
Razorpay interview process usually has 1-2 rounds. The most common rounds in the Razorpay interview process are Coding Test and HR.
What are the top questions asked in Razorpay SDE interview?

Some of the top questions asked at the Razorpay SDE interview -

  1. Design a SQL Datab...read more
  2. Lot of behavourial questio...read more

Tell us how to improve this page.

Razorpay SDE Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more
Join Razorpay Revolutionize the FinTech space with groundbreaking solutions

SDE Interview Questions from Similar Companies

PhonePe SDE Interview Questions
4.0
 • 3 Interviews
MasterCard SDE Interview Questions
3.9
 • 3 Interviews
Paytm SDE Interview Questions
3.3
 • 2 Interviews
HighRadius SDE Interview Questions
2.9
 • 2 Interviews
Mobikwik SDE Interview Questions
3.7
 • 1 Interview
Visa SDE Interview Questions
3.5
 • 1 Interview
Yubi SDE Interview Questions
3.0
 • 1 Interview
View all
Razorpay SDE Salary
based on 8 salaries
₹9.7 L/yr - ₹35 L/yr
13% more than the average SDE Salary in India
View more details
Junior Analyst
115 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Analyst
102 salaries
unlock blur

₹3.5 L/yr - ₹7.3 L/yr

Software Engineer
99 salaries
unlock blur

₹6.9 L/yr - ₹24 L/yr

Senior Associate
93 salaries
unlock blur

₹5.2 L/yr - ₹15 L/yr

Senior Software Engineer
83 salaries
unlock blur

₹15 L/yr - ₹52 L/yr

Explore more salaries
Compare Razorpay with

Paytm

3.3
Compare

PayPal

3.9
Compare

BharatPe

3.5
Compare

BillDesk

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