Skip to content

Razorpay Placement Papers 2024 - Previous Year OA Questions & Solutions

Download Razorpay placement papers 2024 PDF with previous year online assessment questions, solutions, and exam pattern analysis for 2024 recruitment cycle.

This page contains Razorpay placement papers from 2024 with previous year online assessment questions, solutions, and exam patterns.

SectionQuestionsTimeDifficultyFocus Areas
Coding Problems2-390 minMedium-HardArrays, 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

Razorpay Placement Papers 2024 - Actual Questions & Solutions

Section titled “Razorpay Placement Papers 2024 - Actual Questions & Solutions”
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
Output: 3

Solution (Java):

public int coinChange(int[] coins, int amount) {
int[] dp = new int[amount + 1];
Arrays.fill(dp, amount + 1);
dp[0] = 0;
for (int i = 1; i <= amount; i++) {
for (int coin : coins) {
if (coin <= 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)

Key Insights from 2024 Razorpay Online Assessment

Section titled “Key Insights from 2024 Razorpay Online Assessment”
  1. Coding Section is Critical: Must solve 2-3 coding problems correctly to advance
  2. DSA Focus: Strong emphasis on arrays, strings, trees, graphs, and dynamic programming
  3. Time Management: 2-3 problems in 90 minutes requires excellent speed and accuracy
  4. Payment Gateway Focus: Problems often relate to payment systems, transactions, security
  5. System Design: Asked for SDE-1/2 roles, payment gateway design for fintech roles
  6. Success Rate: Only 15-20% cleared OA and advanced to interviews
  7. Platform: HackerRank or Razorpay’s internal platform
  8. Focus Areas: Arrays, trees, graphs, dynamic programming, payment systems

Based on candidate experiences from 2024 Razorpay interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): 2-3 coding problems
  2. Technical Phone Screen (45-60 minutes): Coding problems, algorithm discussions, payment gateway concepts
  3. 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.

Preparation Tips for Razorpay 2024 Pattern

Section titled “Preparation Tips for Razorpay 2024 Pattern”
  1. Master Coding Fundamentals: Focus on solving 2-3 coding problems correctly - arrays, trees, graphs, DP
  2. Payment Gateway Knowledge: Strong understanding of payment gateways, transaction processing, security
  3. Practice Previous Year Papers: Solve Razorpay OA papers from 2020-2024 to understand patterns
  4. Time Management: Practice completing 2-3 coding problems in 90 minutes
  5. LeetCode Practice: Solve 200+ LeetCode problems focusing on arrays, strings, trees, graphs (medium-hard difficulty)
  6. Fintech Focus: Practice problems related to payment systems and transactions
  7. System Design Mastery: Learn payment gateway design, transaction processing, security systems
  8. Security Knowledge: Understand security best practices for payment systems
  9. Behavioral Preparation: Prepare examples using STAR format - problem-solving, security mindset, impact
  10. 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 Interview Experience

Real interview experiences from successful candidates

Read Experiences →

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!