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

Clear (1)

Razorpay Data Analyst Interview Questions and Answers

Updated 1 Jan 2025

Razorpay Data Analyst Interview Experiences

3 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 1 Jan 2025

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

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Aptitude Test 

It was a basic Aptitude test, Needed to learn Probability, Permutation , Cobination and SQL.
Total Duration 1 Hour.

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Apr 2023

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

I applied via Company Website and was interviewed in Mar 2023. There were 3 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Detailed discussion on past experience and projects.
Round 3 - Technical 

(2 Questions)

  • Q1. 2 Hackerrank SQL Questions
  • Q2. 1 Hackerrank Python Question

Interview Preparation Tips

Topics to prepare for Razorpay Data Analyst interview:
  • SQL
  • Python
Interview preparation tips for other job seekers - Deep knowledge of SQL and Python is required along with Data Analysis fundamentals.

Data Analyst Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Suppose there is a room in the office and X people enter room thr ... read more
asked in Wipro
Q2. Chocolate Distribution Problem You are given an array/list CHOCOL ... read more
asked in Wipro
Q3. Ninja and Substrings Problem Statement Ninja has to determine all ... read more
asked in Capgemini
Q4. Ninja and His Secret Information Encoding Problem Ninja, a new me ... read more
Q5. Sliding Window Maximum Problem Statement You are given an array/l ... read more

Data Analyst Interview Questions & Answers

user image sahithi reddy

posted on 22 Mar 2024

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

I applied via LinkedIn and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is the order of execution in sql
  • Ans. 

    The order of execution in SQL is: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • 1. FROM: Specifies the tables involved in the query.

    • 2. WHERE: Filters the rows based on specified conditions.

    • 3. GROUP BY: Groups the rows that have the same values into summary rows.

    • 4. HAVING: Filters groups based on specified conditions.

    • 5. SELECT: Selects the columns to be included in the result set.

    • 6. ORDER BY: Sorts the result set base

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to do conditional formatting in excel
  • Ans. 

    Conditional formatting in Excel allows users to format cells based on specified conditions.

    • Select the range of cells you want to apply conditional formatting to

    • Go to the 'Home' tab and click on 'Conditional Formatting'

    • Choose the desired formatting option, such as color scales, data bars, or icon sets

    • Set the conditions for when the formatting should be applied, such as greater than, less than, or equal to a certain valu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with basics

Skills evaluated in this interview

Interview questions from similar companies

Data Analyst Interview Questions & Answers

PayPal user image AKASH KUMAR SINGH

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. For this round he gave me lot of problems and asked to develop optimal algorithm to solve that. Problems were mainly on trees and number sequences
  • Q2. In this round he mainly discussed my projects and asked me how these can be put to use in Paypal. He also asked some basic questions from ML
  • Q3. HR round was just for formality
  • Q4. Probability , question on calculating expected number of trials and puzzles

Interview Preparation Tips

Round: Test
Experience: The coding question was:
Given a binary string containing 0's and 1's. You can split the string such that each partition should be a exponential of 5 (1,5,25,625...). You were asked to return minimum number of partition for the given string such each partition is exponential of 5. If no such partition exists return -1.
Examples: '101101101' Ans: 3 (101, 101, 101)
'111' Ans: 3 (1,1,1)
10101 Ans: -1
Tips: For MCQ's prepare DSA, OS and Networking. For DSA you can refer to cormen
For Coding question practice on either geeksforgeeks or from any of the coding platforms like hackerrank
The shortlist was mainly dependent on coding question
Duration: 1 hour 30 minutes

Round: Puzzle Interview
Tips: Do lot of puzzles from heard on the street, -----/ , Try to search for more. It will be helpful in other interviews as well

Round: Technical Interview
Tips: Practice algorithm section from geeksforgeeks. There are lot of standard problems. The given questions were slightly modified version of standard problems

Round: Technical Interview
Tips: For this round you need to be well prepared with your projects and resume.

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions on sql

Interview Preparation Tips

Interview preparation tips for other job seekers - it is good experience and moderate prepare for sql, data visualisation etc,it lasted for 2 hrs 30 mins. the interviwers want to test by both technical and soft skills

I applied via Company Website

Interview Questionnaire 

1 Question

  • Q1. Tell me about a project you worked on in which you handled large set of data and multiple tables.

Interview Preparation Tips

Interview preparation tips for other job seekers - Share your geniune answers, articulate them well and be yourself.

I applied via IIM Jobs and was interviewed before Nov 2021. There were 5 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Different types of Joins in SQL and what are the outputs when you join two tables with nulls.
  • Ans. 

    Different types of Joins in SQL and the outputs when joining two tables with nulls.

    • Types of joins in SQL include inner join, left join, right join, and full outer join.

    • When joining two tables with nulls, the output depends on the type of join used.

    • In an inner join, null values are excluded from the result.

    • In a left join, all rows from the left table and matching rows from the right table are included, with nulls for no...

  • Answered by AI
  • Q2. Can you union tables with different datatypes.
  • Ans. 

    Yes, but it requires careful handling of data types and potential conversion.

    • Union can be performed on tables with different datatypes, but the resulting table will have a common datatype for each column.

    • Data types should be compatible, otherwise conversion may be necessary.

    • For example, a table with a column of integers can be unioned with a table with a column of floats, but the resulting column will be of type float.

    • ...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Given a data set, should write sql queries to answer a few questions
  • Q2. A few puzzles would be asked to evaluate the problem solving skills.
Round 4 - One-on-one 

(1 Question)

  • Q1. Business Case studies - try parctising profitablility and other cases
Round 5 - Technical 

(1 Question)

  • Q1. An Excel round will also be there if you apply for business analyst role.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared - SQL, Excel and problem solving.
All the best for the interview.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy questions based on Logical Reasoning, Mathematics, English

Round 2 - Group Discussion 

Be sure to put your thoughts on the topic you get, and try to put a point that meets the goals or aspirations of the company.

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself Tell me something from your resume Desribe your project
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. General questions and sql questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare aptitude and SQL questions and Bi tools
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2022. There were 3 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. SQL Window functions projects
Round 3 - Technical 

(1 Question)

  • Q1. ML questions case study

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare projects on resume and ML algorithms along with SQL questions
Contribute & help others!
anonymous
You can choose to be anonymous

Razorpay Interview FAQs

How many rounds are there in Razorpay Data Analyst interview?
Razorpay interview process usually has 2 rounds. The most common rounds in the Razorpay interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Razorpay Data Analyst 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 SQL, Access management, Automation, Data Mining and Analytics.
What are the top questions asked in Razorpay Data Analyst interview?

Some of the top questions asked at the Razorpay Data Analyst interview -

  1. How to do conditional formatting in ex...read more
  2. What is the order of execution in ...read more
  3. 2 Hackerrank SQL Questi...read more

Recently Viewed

DESIGNATION

LIST OF COMPANIES

Platform3 Solutions

Overview

INTERVIEWS

Razorpay

No Interviews

JOBS

Razorpay

No Jobs

DESIGNATION

SALARIES

Movidu Technology

INTERVIEWS

Cyient

No Interviews

JOBS

Meesho

No Jobs

SALARIES

Razorpay

INTERVIEWS

Razorpay

No Interviews

Tell us how to improve this page.

Razorpay Data Analyst Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Join Razorpay Revolutionize the FinTech space with groundbreaking solutions
Razorpay Data Analyst Salary
based on 35 salaries
₹4 L/yr - ₹12.8 L/yr
53% more than the average Data Analyst Salary in India
View more details

Razorpay Data Analyst Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.3

Skill development

4.5

Work-life balance

4.0

Salary

4.2

Job security

4.5

Company culture

3.7

Promotions

4.5

Work satisfaction

Explore 5 Reviews and Ratings
Analyst
100 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Analyst
94 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
77 salaries
unlock blur

₹0 L/yr - ₹0 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