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 Software Development Engineer Intern Interview Questions and Answers

Updated 27 Sep 2024

Razorpay Software Development Engineer Intern Interview Experiences

2 interviews found

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
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

1 HOUR round - 30 MCQ + 3 Coding Question

Round 2 - One-on-one 

(2 Questions)

  • Q1. 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

  • Answered by AI
  • Q2. Basic questions on state, props, closures etc
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions

Software Development Engineer Intern Interview Questions Asked at Other Companies

asked in Amazon
Q1. Say you're dealing with really long integers. They're too long to ... read more
asked in Amazon
Q2. Given a linked list (singly-linked, non-circular), swap the kth n ... read more
asked in Amazon
Q3. long numbers, add the two numbers and store the result in a third ... read more
Q4. what is the angle between minute and hour hand at 1:15
asked in Amazon
Q5. Given a Binary Search Tree, print the kth last node in inorder tr ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were 20 aptitude question based on general mathematics

Round 2 - Coding Test 

There were 2 dsa question of medium difficulty

Round 3 - HR 

(2 Questions)

  • Q1. Question based on resume
  • Q2. Why this project
Round 4 - HR 

(2 Questions)

  • Q1. Why you want to join this company
  • Ans. 

    I am passionate about the company's innovative projects and collaborative work culture.

    • I admire the company's commitment to cutting-edge technology and continuous learning opportunities.

    • I am excited about the chance to work with a diverse team of talented individuals.

    • The company's reputation for fostering creativity and innovation aligns with my career goals.

  • Answered by AI
  • Q2. What is weakest point of your life
  • Ans. 

    Struggled with self-confidence due to childhood bullying

    • Bullied in school for being different

    • Struggled to make friends and trust others

    • Affected my self-esteem and ability to speak up for myself

  • Answered by AI
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
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic puzzles of medium complexity level. No improvement required

Round 2 - Coding Test 

DSA questions of easy level. Asked for memory optimisations.

Round 3 - Technical 

(1 Question)

  • Q1. High level system design of wallet payment system, took example of paytm. This was hld questions so just basic components
Round 4 - One-on-one 

(2 Questions)

  • Q1. Low level system design of parking lot system
  • Ans. 

    Design a parking lot system at a low level

    • Divide system into components like parking spots, ticketing system, payment system

    • Implement data structures like queues for managing parking spots

    • Use algorithms like least recently used for spot allocation

    • Consider scalability and performance in design

  • Answered by AI
  • Q2. Review of one of my projects at past company

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers were rude sometimes, seems like they are interviewing just for the sake of spending an hour. They did not look serious about actually testing the skillset, not much questions just hmm hmm.

Skills evaluated in this interview

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

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. What is collection framework?
  • Ans. 

    Collection framework is a unified architecture for representing and manipulating collections of objects in Java.

    • It provides interfaces (like List, Set, Map) and classes (like ArrayList, HashSet, HashMap) to store and manipulate groups of objects.

    • It allows for easy manipulation, sorting, searching, and iteration of collections.

    • Collections in the framework can store objects of any type, including user-defined classes.

    • Exa...

  • Answered by AI
  • Q2. What is spring boot dependency injection?
  • Ans. 

    Spring Boot dependency injection is a design pattern where objects are passed their dependencies rather than creating them internally.

    • In Spring Boot, dependency injection is achieved through the use of @Autowired annotation.

    • It helps in achieving loose coupling between classes and promotes easier testing and maintenance.

    • Example: @Autowired private UserService userService; // Injecting UserService dependency

  • Answered by AI
  • Q3. What is the use of rate limiter?
  • Ans. 

    Rate limiter is used to control the rate of incoming requests to a server or API.

    • Prevents server overload by limiting the number of requests a client can make in a specific time period

    • Helps protect against DDoS attacks by limiting the rate of incoming requests

    • Ensures fair usage of resources by preventing one client from monopolizing server resources

    • Can be implemented using algorithms like token bucket or leaky bucket

    • Ex...

  • Answered by AI
  • Q4. What is the mean by thread, how many ways we can create thread?
  • Ans. 

    A thread is a lightweight sub-process that allows concurrent execution within a process. Threads can be created in multiple ways.

    • Threads can be created by extending the Thread class in Java.

    • Threads can be created by implementing the Runnable interface in Java.

    • Threads can be created using thread pools in Java.

    • Threads can be created using asynchronous functions in JavaScript.

  • Answered by AI
  • Q5. What is use of thread.join()?
  • Ans. 

    thread.join() is used to wait for a thread to finish its execution before moving on to the next steps.

    • thread.join() blocks the current thread until the thread it is called on completes its execution.

    • It is commonly used in multi-threaded applications to ensure that all threads have finished before proceeding.

    • Without thread.join(), the main thread may continue executing while other threads are still running.

    • Example: thre...

  • Answered by AI
  • Q6. What is the difference between sync and asynchronous call?
  • Ans. 

    Sync call blocks the execution until the response is received, while asynchronous call allows the program to continue executing without waiting for the response.

    • Sync call blocks the program execution until the response is received

    • Asynchronous call allows the program to continue executing without waiting for the response

    • Sync calls are easier to understand and debug, but can lead to performance issues if used excessively

    • ...

  • Answered by AI
  • Q7. How to deploy your service in production server?
  • Ans. 

    Deploying service in production server involves building the application, configuring the server, and monitoring performance.

    • Build the application code into a deployable package (e.g. JAR file for Java applications)

    • Configure the production server with necessary dependencies and environment variables

    • Deploy the application package to the server using tools like Docker, Kubernetes, or manual deployment scripts

    • Monitor the ...

  • Answered by AI
  • Q8. What is use of Jenkins and kubernates?
  • Ans. 

    Jenkins is a continuous integration tool used for automating software development processes, while Kubernetes is a container orchestration platform for managing containerized applications.

    • Jenkins is used for automating the building, testing, and deployment of software projects.

    • Kubernetes helps in automating the deployment, scaling, and management of containerized applications.

    • Jenkins can be integrated with Kubernetes t...

  • Answered by AI
  • Q9. What is the difference between fail safe and fail fast
  • Ans. 

    Fail safe focuses on ensuring system stability and preventing catastrophic failures, while fail fast prioritizes quick detection and response to errors.

    • Fail safe is about designing systems to minimize the impact of failures and ensure stability.

    • Fail fast is about quickly detecting and responding to errors to prevent further issues.

    • Fail safe often involves redundancy and error checking mechanisms to prevent catastrophic...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more about collection and multi threading for java

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. One leetcode easy-medium problem
  • Q2. Java, springboot and oops question
Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. System design questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR didnt reach out post interviews
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
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Explain Concurrency
  • Ans. 

    Concurrency is the ability of a system to execute multiple tasks simultaneously.

    • Concurrency allows multiple tasks to run concurrently, improving performance and efficiency.

    • Concurrency can be achieved through multithreading or multiprocessing.

    • Example: A web server handling multiple requests simultaneously using multithreading.

  • Answered by AI
  • Q2. Explain Acid principles
  • Ans. 

    ACID principles are a set of properties that guarantee database transactions are processed reliably.

    • Atomicity: Transactions are all or nothing. If one part of the transaction fails, the entire transaction is rolled back.

    • Consistency: Transactions bring the database from one valid state to another. All constraints are satisfied.

    • Isolation: Transactions are isolated from each other until they are completed.

    • Durability: Once...

  • Answered by AI

Skills evaluated in this interview

Razorpay Interview FAQs

How many rounds are there in Razorpay Software Development Engineer Intern interview?
Razorpay interview process usually has 2-3 rounds. The most common rounds in the Razorpay interview process are One-on-one Round, Coding Test and HR.
What are the top questions asked in Razorpay Software Development Engineer Intern interview?

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

  1. What is ai and what are its featu...read more
  2. Build an Analog Cl...read more
  3. Oops questions including abstract...read more

Tell us how to improve this page.

Razorpay Software Development Engineer Intern Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Join Razorpay Revolutionize the FinTech space with groundbreaking solutions

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 776 Interviews
PhonePe Interview Questions
4.0
 • 307 Interviews
PayPal Interview Questions
3.9
 • 211 Interviews
HighRadius Interview Questions
2.9
 • 181 Interviews
Fiserv Interview Questions
3.0
 • 171 Interviews
Visa Interview Questions
3.5
 • 137 Interviews
MasterCard Interview Questions
3.9
 • 135 Interviews
Angel One Interview Questions
3.9
 • 135 Interviews
Revolut Interview Questions
2.6
 • 95 Interviews
View all
Analyst
100 salaries
unlock blur

₹3.5 L/yr - ₹7.3 L/yr

Senior Software Engineer
98 salaries
unlock blur

₹11.6 L/yr - ₹46.6 L/yr

Junior Analyst
97 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Software Engineer
94 salaries
unlock blur

₹7.5 L/yr - ₹28 L/yr

Software Development Engineer
77 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
Did you find this page helpful?
Yes No
write
Share an Interview