Premium Employer

i

This company page is being actively managed by BharatPe Team. If you also belong to the team, you can get access from here

BharatPe Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

BharatPe Interview Questions and Answers

Updated 14 Jun 2025
Popular Designations

18 Interview questions

A Software Engineer was asked 2mo ago
Q. Given an array of integers heights representing the histogram's bar height where the width of each bar is 1, return the area of the largest rectangle in the histogram.
Ans. 

Find the largest rectangular area in a histogram represented by an array of heights.

  • Use a stack to keep track of the indices of the histogram bars.

  • Iterate through each bar, pushing indices onto the stack until a shorter bar is found.

  • When a shorter bar is found, pop from the stack and calculate the area with the popped height as the smallest height.

  • The width is determined by the distance between the current index a...

View all Software Engineer interview questions
A Software Development Engineer II was asked 11mo ago
Q. Given an m x n matrix, return all elements of the matrix in spiral order.
Ans. 

Print a matrix in spiral order

  • Start by printing the first row from left to right

  • Then print the last column from top to bottom

  • Continue in a spiral pattern until all elements are printed

View all Software Development Engineer II interview questions
A Software Development Engineer was asked 12mo ago
Q. How would you parse a nested list?
Ans. 

Parsing a nested list involves extracting elements from lists within lists, often using recursion or iterative methods.

  • Use recursion to handle lists of varying depths. Example: parse(['a', ['b', 'c'], 'd']) -> ['a', 'b', 'c', 'd']

  • Iterate through the list and check if an element is a list. If so, call the parsing function on it. Example: for item in list: if isinstance(item, list): parse(item)

  • Flatten the list us...

View all Software Development Engineer interview questions
A SDE-2 was asked 12mo ago
Q. Describe a database design for a notification service.
Ans. 

Design a database schema for a notification service

  • Identify the entities involved such as users, notifications, and devices

  • Create tables for each entity with relevant attributes

  • Establish relationships between tables using foreign keys

  • Consider indexing for efficient retrieval of notifications

  • Implement a mechanism for tracking read/unread status of notifications

View all SDE-2 interview questions
A Backend Java Developer was asked
Q. Describe a system design for handling notifications across different systems.
Ans. 

Design a notification system that efficiently delivers messages across various platforms and devices.

  • Use a message broker (e.g., RabbitMQ, Kafka) for decoupling services.

  • Implement a REST API for sending notifications.

  • Support multiple channels: email, SMS, push notifications.

  • Consider user preferences for notification types and timings.

  • Ensure scalability by using microservices architecture.

View all Backend Java Developer interview questions
A Promoter was asked
Q. What is your understanding of basic mathematics?
Ans. 

Basic math involves fundamental operations like addition, subtraction, multiplication, and division, essential for everyday calculations.

  • Addition: Combining numbers, e.g., 2 + 3 = 5.

  • Subtraction: Finding the difference, e.g., 5 - 2 = 3.

  • Multiplication: Repeated addition, e.g., 4 x 3 = 12.

  • Division: Splitting into equal parts, e.g., 12 ÷ 4 = 3.

View all Promoter interview questions
A Program Manager was asked
Q. What do you know about the credit industry?
Ans. 

Credit industry involves lending money to individuals or businesses based on their creditworthiness.

  • Credit industry includes banks, credit unions, credit card companies, and other financial institutions.

  • It involves assessing the creditworthiness of individuals or businesses before lending money.

  • Credit scores play a crucial role in determining the interest rates and loan amounts offered to borrowers.

  • Credit industry...

View all Program Manager interview questions
Are these interview questions helpful?
A Campaign Manager was asked
Q. What is your knowledge of the process?
Ans. 

Precess refers to the gradual change in the orientation of an object's rotational axis, often seen in celestial mechanics.

  • Precession occurs due to gravitational forces acting on a rotating body, like Earth's axial precession caused by the Moon and Sun.

  • An example of precession is the wobble of a spinning top, where the axis of rotation shifts over time.

  • In astronomy, precession affects the position of stars and cons...

View all Campaign Manager interview questions
A Senior Software Engineer was asked
Q. Given an array, find the next greater element (NGE) for every element. The Next greater Element for an element x is the first greater element on the right side of x in the array. Elements for which no great...
Ans. 

Find the next greater element in an array for each element

  • Iterate through the array and for each element, find the next greater element

  • Use a stack to keep track of elements whose next greater element is not yet found

  • If the current element is greater than the top element of the stack, pop the stack and mark the popped element's next greater element as the current element

  • Push the current element onto the stack

  • If the...

View all Senior Software Engineer interview questions
A FSE was asked
Q. What are the benefits for merchants using QR codes?
Ans. 

Merchants benefit from using QR codes by enabling easy and convenient payments for customers.

  • QR codes allow for contactless payments, reducing the need for physical cash or cards.

  • They provide a faster and more efficient checkout process, improving customer satisfaction.

  • QR codes can be easily integrated into various marketing strategies, allowing merchants to track and analyze customer behavior.

  • They enable targeted...

View all FSE interview questions

BharatPe Interview Experiences

43 interviews found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 24 Jun 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Leetcode medium question using heap
  • Q2. MySQL Queries using joins, group by, aggregate functions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Leetcode medium question of string
  • Q2. Database design for the notification service
  • Ans. 

    Design a database schema for a notification service

    • Identify the entities involved such as users, notifications, and devices

    • Create tables for each entity with relevant attributes

    • Establish relationships between tables using foreign keys

    • Consider indexing for efficient retrieval of notifications

    • Implement a mechanism for tracking read/unread status of notifications

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Coding questions - leet code medium level on arrays
  • Q2. Design questions, design subscription models like amazon prime
  • Q3. How could you handle DB in distributed systems.
  • Ans. 

    Managing databases in distributed systems requires strategies for consistency, availability, and partition tolerance.

    • Use a distributed database like Cassandra or MongoDB for horizontal scalability.

    • Implement data replication to ensure high availability and fault tolerance.

    • Employ sharding to distribute data across multiple nodes, enhancing performance.

    • Utilize eventual consistency models for better performance in systems ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste time on This company they wasted my full month, after clearing all rounds still they did not share the offer letter to me.

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2025

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Why you want to switch from good pbc to bharat pe?
  • Ans. 

    I seek to join Bharat Pe for its innovative approach and growth opportunities in the fintech sector, aligning with my career aspirations.

    • Bharat Pe's focus on financial inclusion resonates with my passion for using technology to empower underserved communities.

    • The dynamic work environment at Bharat Pe offers opportunities to tackle complex data challenges, enhancing my skills.

    • I admire Bharat Pe's rapid growth and innova...

  • Answered by AI
  • Q2. Current projectz
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Maximum Area in Histogram
  • Q2. Longest Common Subsequence
  • Ans. 

    Longest Common Subsequence (LCS) finds the longest sequence present in both strings without rearranging characters.

    • LCS is a classic dynamic programming problem.

    • Example: For strings 'ABCBDAB' and 'BDCAB', LCS is 'BCAB' or 'BDAB'.

    • The time complexity is O(m * n), where m and n are lengths of the two strings.

    • A 2D array is typically used to store lengths of LCS for substrings.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Experience holder
  • Q2. Hard work sell excutive
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test with LR, DI

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic resume questions and project discussion

Team Lead Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

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

I applied via AmbitionBox and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Name gaurav Chauhan
  • Ans. My name is Gaurav Chauhan
  • Answered by burningeggplant
  • Q2. Paytm company 5 month working
  • Q3. My house is transport Nagar Alwar
  • Q4. Freecharge payment
  • Ans. Freecharge company me mana working ke h
  • Answered by burningeggplant
  • Q5. I am good workinig

Interview Preparation Tips

Interview preparation tips for other job seekers - Bharat pe is good company and good service

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 20 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude test, questions on ven diagrams, etc.

Round 2 - Technical 

(2 Questions)

  • Q1. SQL queries and other database questions
  • Q2. Running total and 2nd highest salary from each departement
  • Ans. 

    Calculate running total and 2nd highest salary for each department in SQL.

    • Use window functions like ROW_NUMBER() and SUM() to calculate running total.

    • Use a subquery to find the 2nd highest salary for each department.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please give it a try to this company.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. SIMPLE SQL QUERY
  • Q2. PRINT MATRIX IN SPIRAL ORDER
  • Ans. 

    Print a matrix in spiral order

    • Start by printing the first row from left to right

    • Then print the last column from top to bottom

    • Continue in a spiral pattern until all elements are printed

  • Answered by AI

Skills evaluated in this interview

MIS Executive Interview Questions & Answers

user image Anonymous

posted on 16 Oct 2023

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

I applied via Referral and was interviewed in Sep 2023. There were 2 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 tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. On only advance excel.
  • Q2. Final interview on practical.
  • Q3. All reports are practical on seniors.
  • Q4. Interview on pivot table

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company for everyone.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Work Information wat the target

Round 2 - Group Discussion 

Discussion with zm And Working Experience shared

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about BharatPe?
Ask anonymously on communities.

BharatPe Interview FAQs

How many rounds are there in BharatPe interview?
BharatPe interview process usually has 2-3 rounds. The most common rounds in the BharatPe interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for BharatPe 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 BharatPe. The most common topics and skills that interviewers at BharatPe expect are Sales, SQL, Data Analytics, Python and Program Management.
What are the top questions asked in BharatPe interview?

Some of the top questions asked at the BharatPe interview -

  1. What is meanimg BHIM and ...read more
  2. What is benifit for merchant using QR cod...read more
  3. Why Use QR code in Sh...read more
What are the most common questions asked in BharatPe HR round?

The most common HR questions asked in BharatPe interview are -

  1. What are your strengths and weakness...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your salary expectatio...read more
How long is the BharatPe interview process?

The duration of BharatPe interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 62 interview experiences

Difficulty level

Easy 47%
Moderate 47%
Hard 6%

Duration

Less than 2 weeks 82%
2-4 weeks 6%
4-6 weeks 12%
View more
Join BharatPe Transforming small businesses across Bharat

Interview Questions from Similar Companies

Razorpay Interview Questions
3.5
 • 161 Interviews
TransUnion Interview Questions
3.9
 • 93 Interviews
Rupeek Interview Questions
3.7
 • 65 Interviews
Freecharge Interview Questions
3.8
 • 57 Interviews
PayU Payments Interview Questions
3.5
 • 57 Interviews
ACKO Interview Questions
3.7
 • 55 Interviews
Mobikwik Interview Questions
3.6
 • 55 Interviews
BankBazaar Interview Questions
3.3
 • 53 Interviews
Spice Money Interview Questions
4.1
 • 32 Interviews
View all

BharatPe Reviews and Ratings

based on 411 reviews

3.5/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

3.4

Salary

3.0

Job security

3.2

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 411 Reviews and Ratings
Sales Executive

Wardha

0-1 Yrs

₹ 3-3.6 LPA

Explore more jobs
Area Sales Manager
159 salaries
unlock blur

₹9.1 L/yr - ₹16.6 L/yr

Sales Executive
85 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Territory Manager
64 salaries
unlock blur

₹2.9 L/yr - ₹7.5 L/yr

Key Account Manager
63 salaries
unlock blur

₹4.7 L/yr - ₹14.7 L/yr

Territory Sales Manager
62 salaries
unlock blur

₹2.7 L/yr - ₹7 L/yr

Explore more salaries
Compare BharatPe with

Paytm

3.2
Compare

Razorpay

3.5
Compare

AGS Transact Technologies

2.9
Compare

Hitachi Payment Services

3.7
Compare
write
Share an Interview