Upload Button Icon Add office photos
Engaged 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

Compare button icon Compare button icon Compare
3.5

based on 357 Reviews

Filter interviews by

BharatPe SDE-2 Interview Questions and Answers

Updated 24 Jun 2024

BharatPe SDE-2 Interview Experiences

2 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

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 21 Jun 2021

I applied via Referral and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Medium level data structures and algorithms questions and SQL queries

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an easy interview. There were just 2 technical rounds. In both the rounds I was given a coding problem and asked to keep optimising the code. Along with this, I was asked few SQL problems involving joins and cursors.

SDE-2 Interview Questions Asked at Other Companies

asked in Walmart
Q1. Maximum Frequency NumberNinja is given an array of integers that ... read more
asked in Atlassian
Q2. K Most Frequent WordsYou have been given an array/list 'WORDS' of ... read more
Q3. Design Question“Rent a Ride”  As a customer to Rent a Ride y ... read more
Q4. Reverse StringYou are given a string ‘S’. You are also given ‘M’ ... read more
asked in ShareChat
Q5. Find Square root of an integerYou are given an integer ‘A’. Your ... read more

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Online assessment on the hackerrank. It was mdium leetcode question.

Round 2 - HLD 

(1 Question)

  • Q1. Design HLD for Twitter
  • Ans. 

    Design a High Level Design for Twitter

    • 1. Use a microservices architecture to handle different functionalities like user authentication, tweet creation, timeline generation, etc.

    • 2. Implement a distributed system to handle high traffic and scalability.

    • 3. Use a NoSQL database like Cassandra or MongoDB for storing tweets and user data.

    • 4. Utilize a message queue like Kafka for handling real-time notifications and messages.

    • 5...

  • Answered by AI

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

KhataBook user image CodingNinjas

posted on 4 Apr 2022

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Normal intro followed by 1 DSA question

  • Q1. Alien Dictionary

    Ninja is learning a new but strange language known as Alien Language. Alien language possesses the same alphabets as of English language, but their order is different. The order of letters...

  • Ans. 

    The task is to check whether the given words are sorted lexicographically in an alien language.

    • Read the number of test cases

    • For each test case, read the number of words, the words themselves, and the order string

    • Check if the words are sorted lexicographically based on the given order string

    • Print 'YES' if the words are sorted, else print 'NO'

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

This round was based on checking the knowledge on component breaking of any web page and data flow

  • Q1. System Design Question

    Discuss the components breakdown of the play store home page.

  • Ans. 

    The play store home page consists of various components that provide a user-friendly interface for browsing and discovering apps.

    • Header section displaying the app logo, search bar, and navigation options

    • Featured apps section showcasing popular or recommended apps

    • Categories section for browsing apps based on different genres

    • Top charts section displaying the most downloaded or highest-rated apps

    • New releases section highl...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This round was focused on how the developer is going to contribute to designing the better user experience

  • Q1. System Design Question

    Design the wireframe of ledger management user interface

  • Ans. 

    Design a wireframe for a ledger management user interface.

    • Include a navigation bar for easy access to different sections of the ledger

    • Design a table layout to display the ledger entries with columns for date, description, debit, credit, and balance

    • Add filters and search functionality to easily find specific entries

    • Include options to add, edit, and delete ledger entries

    • Consider adding visual indicators for different typ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BengaluruEligibility criteria4 Years+ experienceKhatabook interview preparation:Topics to prepare for the interview - DSA, Javascript, LLD, System Design, Data flow(Frontend)Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 2 DSA Mid-level questions Daily.
Tip 2 : Be confident on the projects mentioned in the resume.

Application resume tips for other job seekers

Tip 1 : Stability in Resume
Tip 2 : Challenging Projects in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the missing number in an array, , given the array conatins numbers form 1 to n and one number is missing
  • Ans. 

    Find the missing number in an array containing numbers from 1 to n.

    • Iterate through the array and calculate the sum of all numbers from 1 to n.

    • Calculate the sum of all numbers in the given array.

    • Subtract the sum of array from the sum of all numbers to find the missing number.

  • Answered by AI
  • Q2. And question on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be chill and Fibe is a good company.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Create linked list
  • Ans. 

    Create a linked list

    • Define a Node class with data and next pointer

    • Create a LinkedList class with methods like insert, delete, search

    • Initialize head pointer to null and update it as nodes are added

  • Answered by AI
  • Q2. Create function for insert and delete and print linked list
  • Ans. 

    Function to insert, delete, and print a linked list

    • Create a Node class with data and next pointer

    • Implement insert function to add a new node at the end of the linked list

    • Implement delete function to remove a node by value

    • Implement print function to display all elements in the linked list

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Rotate matrix element with k position left
  • Ans. 

    Rotate matrix elements with k positions left

    • Create a temporary array to store the first k elements of each row

    • Shift the remaining elements in each row to the left by k positions

    • Replace the last k elements in each row with the elements from the temporary array

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Rod cutting problem
  • Ans. 

    Rod cutting problem involves finding the optimal way to cut a rod into pieces to maximize profit.

    • Identify the lengths at which the rod can be cut.

    • Calculate the maximum profit that can be obtained by cutting the rod at different lengths.

    • Use dynamic programming to solve the problem efficiently.

    • Example: Given a rod of length 8 and prices for different lengths as [1, 5, 8, 9, 10, 17, 17, 20], the maximum profit is 22 by cu

  • Answered by AI
  • Q2. Write sql quary for bu Transport system which will pick and drop passenger
  • Ans. 

    SQL query to manage pick and drop of passengers in a transport system

    • Create a table for passengers with columns like passenger_id, name, pick_up_location, drop_off_location, etc.

    • Create a table for transport vehicles with columns like vehicle_id, driver_name, capacity, etc.

    • Use JOIN to link the two tables based on pick_up_location and drop_off_location.

    • Consider adding a table for routes and scheduling for better organiza...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Aug 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 - Technical 

(3 Questions)

  • Q1. Merge two sorted arrays
  • Ans. 

    Merging two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Iterate through both arrays simultaneously, comparing elements and adding the smaller one to the result array

    • Handle cases where one array is longer than the other by appending the remaining elements

  • Answered by AI
  • Q2. Put patch and post in api testing
  • Ans. 

    Patch and post are HTTP methods used in API testing to update and create resources, respectively.

    • PATCH method is used to update an existing resource in the API

    • POST method is used to create a new resource in the API

    • Both methods are commonly used in RESTful APIs for CRUD operations

    • Example: PATCH /api/users/123 to update user with ID 123

    • Example: POST /api/users to create a new user

  • Answered by AI
  • Q3. Explain your automation framework
  • Ans. 

    My automation framework is a data-driven framework using Selenium WebDriver and TestNG for test execution and reporting.

    • Uses Selenium WebDriver for interacting with web elements

    • Utilizes TestNG for test execution and reporting

    • Follows a data-driven approach for test data management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic dsa, leetcode problems are asked in interview

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 Lovely Professional University (LPU) and was interviewed before Apr 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Simple 3 questions of DSA with brute force to the optimal approach
  • Q2. 2 stacks, palindrome tricky, string question (simple)
Round 3 - One-on-one 

(2 Questions)

  • Q1. 2 stacks with optinal approach
  • Ans. 

    Implementing 2 stacks with optional approach

    • Two stacks can be implemented in a single array by dividing it into two halves

    • Optional approach can be implemented by using a third parameter to indicate which stack to use

    • Push and pop operations can be performed on both stacks independently

  • Answered by AI
  • Q2. Some hr interview question
Round 4 - HR 

(2 Questions)

  • Q1. Marital status discussion
  • Q2. Future discusssions about what i want nd plans

Interview Preparation Tips

Topics to prepare for Open Financial Technologies Private Limited SDE (Software Development Engineer) interview:
  • DSA
  • OS
  • DBMS
  • strings
Interview preparation tips for other job seekers - DSA kro mast raho, soft skills top notch is a must for cracking any interview

Skills evaluated in this interview

Round 1 - Assignment 

Hackerank test on your expertise

Round 2 - HR 

(2 Questions)

  • Q1. Basic cultural fit rounds
  • Q2. Why do you want to join

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on basics. The candidate are tested multiple ways of their expertise and asked to write code and included DSP

SDE-2 Interview Questions & Answers

KhataBook user image CodingNinjas

posted on 4 Apr 2022

I was interviewed in Oct 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Normal intro followed by 1 DSA question

  • Q1. Alien Dictionary

    Ninja is learning a new but strange language known as Alien Language. Alien language possesses the same alphabets as of English language, but their order is different. The order of letters...

  • Ans. 

    The task is to check whether the given words are sorted lexicographically in an alien language.

    • Read the number of test cases

    • For each test case, read the number of words, the words themselves, and the order string

    • Check if the words are sorted lexicographically based on the given order string

    • Print 'YES' if the words are sorted, else print 'NO'

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

This round was based on checking the knowledge on component breaking of any web page and data flow

  • Q1. System Design Question

    Discuss the components breakdown of the play store home page.

  • Ans. 

    The play store home page consists of various components that provide a user-friendly interface for browsing and discovering apps.

    • Header section displaying the app logo, search bar, and navigation options

    • Featured apps section showcasing popular or recommended apps

    • Categories section for browsing apps based on different genres

    • Top charts section displaying the most downloaded or highest-rated apps

    • New releases section highl...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This round was focused on how the developer is going to contribute to designing the better user experience

  • Q1. System Design Question

    Design the wireframe of ledger management user interface

  • Ans. 

    Design a wireframe for a ledger management user interface.

    • Include a navigation bar for easy access to different sections of the ledger

    • Design a table layout to display the ledger entries with columns for date, description, debit, credit, and balance

    • Add filters and search functionality to easily find specific entries

    • Include options to add, edit, and delete ledger entries

    • Consider adding visual indicators for different typ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BengaluruEligibility criteria4 Years+ experienceKhatabook interview preparation:Topics to prepare for the interview - DSA, Javascript, LLD, System Design, Data flow(Frontend)Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 2 DSA Mid-level questions Daily.
Tip 2 : Be confident on the projects mentioned in the resume.

Application resume tips for other job seekers

Tip 1 : Stability in Resume
Tip 2 : Challenging Projects in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

BharatPe Interview FAQs

How many rounds are there in BharatPe SDE-2 interview?
BharatPe interview process usually has 2 rounds. The most common rounds in the BharatPe interview process are Technical and One-on-one Round.
What are the top questions asked in BharatPe SDE-2 interview?

Some of the top questions asked at the BharatPe SDE-2 interview -

  1. Database design for the notification serv...read more
  2. Medium level data structures and algorithms questions and SQL queri...read more
  3. MySQL Queries using joins, group by, aggregate functi...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 BharatPe interviews
Referral
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

SDE-2 Interview Questions from Similar Companies

PayPal SDE-2 Interview Questions
3.9
 • 4 Interviews
Razorpay SDE-2 Interview Questions
3.6
 • 2 Interviews
Paytm SDE-2 Interview Questions
3.3
 • 1 Interview
View all
BharatPe SDE-2 Salary
based on 6 salaries
₹28 L/yr - ₹35 L/yr
11% less than the average SDE-2 Salary in India
View more details
Area Sales Manager
141 salaries
unlock blur

₹5.3 L/yr - ₹17.5 L/yr

Sales Executive
87 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Territory Sales Manager
70 salaries
unlock blur

₹2.7 L/yr - ₹6.5 L/yr

Territory Manager
70 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Key Account Manager
67 salaries
unlock blur

₹4.7 L/yr - ₹14.7 L/yr

Explore more salaries
Compare BharatPe with

Paytm

3.3
Compare

Razorpay

3.6
Compare

PhonePe

4.0
Compare

Mobikwik

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview