This page contains Razorpay placement papers from 2024 with previous year online assessment questions, solutions, and exam patterns.
| Section | Questions | Time | Difficulty | Focus Areas |
|---|
| Coding Problems | 2-3 | 90 min | Medium-Hard | Arrays, trees, graphs, DP |
Total: 2-3 problems, 90 minutes
Platform: HackerRank or similar
Languages Allowed: Java, Python, C++, Go
Success Rate: ~15-20% cleared OA and advanced to interviews
Q1: You are given coins of different denominations and a total amount. Find the minimum number of coins needed to make up that amount.
Example:
Input: coins = [1,2,5], amount = 11
Solution (Java):
public int coinChange(int[] coins, int amount) {
int[] dp = new int[amount + 1];
Arrays.fill(dp, amount + 1);
for (int i = 1; i <= amount; i++) {
dp[i] = Math.min(dp[i], dp[i - coin] + 1);
return dp[amount] > amount ? -1 : dp[amount];
Time Complexity: O(amount × coins.length)
Space Complexity: O(amount)
- Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
- DSA Focus: Strong emphasis on arrays, strings, trees, graphs, and dynamic programming
- Time Management: 2-3 problems in 90 minutes requires excellent speed and accuracy
- Payment Gateway Focus: Problems often relate to payment systems, transactions, security
- System Design: Asked for SDE-1/2 roles, payment gateway design for fintech roles
- Success Rate: Only 15-20% cleared OA and advanced to interviews
- Platform: HackerRank or Razorpay’s internal platform
- Focus Areas: Arrays, trees, graphs, dynamic programming, payment systems
Based on candidate experiences from 2024 Razorpay interviews:
2024 Interview Process:
- Online Assessment (90 minutes): 2-3 coding problems
- Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, payment gateway concepts
- Onsite Interviews (4-5 rounds, 45-60 minutes each):
- Coding rounds (2-3): Algorithms, data structures, problem-solving
- System Design rounds: Payment gateways, transaction processing, security systems
- Behavioral rounds: Problem-solving approach, security mindset, impact
Common 2024 Interview Topics:
- Coding: Arrays, strings, trees, graphs, dynamic programming, payment algorithms
- System Design: Payment gateways, transaction processing, security systems, fintech architecture
- Behavioral: Problem-solving, security mindset, teamwork, impact
- Razorpay Technologies: Payment gateways, transaction processing, security, fintech platforms
2024 Interview Questions Examples:
- Coin Change Problem
- Design Razorpay’s payment gateway (System Design)
- Design Razorpay’s transaction processing system (System Design)
- Security-related coding problems
Success Tips:
- Strong coding performance is essential - solve problems optimally
- Understand payment gateway and transaction processing concepts
- Practice system design for payment systems and security
- Prepare examples demonstrating problem-solving and security mindset
- Learn Razorpay’s products and payment gateway technologies
- Practice explaining your thought process clearly
For detailed interview experiences, visit Razorpay Interview Experience page.
- Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
- Payment Gateway Knowledge: Strong understanding of payment gateways, transaction processing, security
- Practice Previous Year Papers: Solve Razorpay OA papers from 2020-2024 to understand patterns
- Time Management: Practice completing 2-3 coding problems in 90 minutes
- LeetCode Practice: Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
- Fintech Focus: Practice problems related to payment systems and transactions
- System Design Mastery: Learn payment gateway design, transaction processing, security systems
- Security Knowledge: Understand security best practices for payment systems
- Behavioral Preparation: Prepare examples using STAR format - problem-solving, security mindset, impact
- Mock Tests: Take timed practice tests to improve speed and accuracy
Razorpay 2025 Papers
Latest Razorpay placement papers with current year questions
View 2025 Papers →
Razorpay Coding Questions
Complete collection of Razorpay coding problems with solutions
View Coding Questions →
Razorpay Interview Experience
Real interview experiences from successful candidates
Read Experiences →
Razorpay Preparation Guide
Comprehensive preparation strategy for Razorpay placement
View Preparation Guide →
Razorpay Main Page
Complete Razorpay placement guide with eligibility, process, and salary
View Main Page →
Practice 2024 papers to understand Razorpay OA pattern and prepare effectively!