Upload Button Icon Add office photos
Engaged Employer

i

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

EASEBUZZ Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

EASEBUZZ Interview Questions and Answers

Updated 16 Jun 2025
Popular Designations

10 Interview questions

A Full Stack Developer was asked 4mo ago
Q. Given a string consisting solely of the characters '(', ')', '{', '}', '[', and ']', determine whether the string is valid. A string is considered valid if every opening bracket has a corresponding closing ...
Ans. 

Check if a string of brackets is valid by ensuring every opening bracket has a corresponding closing bracket.

  • Use a stack data structure to keep track of opening brackets

  • Iterate through the string and push opening brackets onto the stack

  • When a closing bracket is encountered, pop the top element from the stack and check if it matches the closing bracket

  • If the stack is empty at the end of the iteration, the string is...

View all Full Stack Developer interview questions
A Full Stack Developer was asked 4mo ago
Q. Write Django models for a school database where a school can have multiple classes, classes can have multiple students, and a class will have a primary teacher.
Ans. 

Django models for school database with classes, students, and teachers.

  • Create a School model with a name field

  • Create a Class model with a foreign key to School and a primary teacher field

  • Create a Student model with a foreign key to Class

  • Use ForeignKey and OneToOneField relationships in Django models

View all Full Stack Developer interview questions
A Full Stack Developer was asked 4mo ago
Q. Write an ORM query to fetch all classes with a number of students greater than 50. Provide a single optimized ORM query.
Ans. 

Fetch all classes with more than 50 students using ORM query.

  • Use ORM query to filter classes with student count greater than 50

  • Join tables to get class information along with student count

  • Optimize query for better performance

View all Full Stack Developer interview questions
A Software Engineer III was asked 5mo ago
Q. What is the detailed process involved in searching for google.com?
Ans. 

The detailed process of searching for google.com involves DNS resolution, HTTP request, server response, and rendering the webpage.

  • 1. User enters 'google.com' in the browser address bar.

  • 2. Browser checks cache for DNS resolution, if not found, sends a DNS query to resolve the domain name to an IP address.

  • 3. Browser sends an HTTP request to the resolved IP address for google.com.

  • 4. Google's server processes the req...

View all Software Engineer III interview questions
A Full Stack Developer was asked 11mo ago
Q. How does a page load in a browser?
Ans. 

Page load in browser is the process of fetching and rendering a web page.

  • Browser sends a request to the server for the web page

  • Server processes the request and sends back the HTML, CSS, and JavaScript files

  • Browser renders the content and executes the scripts to display the page

  • Page load time can be affected by factors like server response time, network speed, and browser cache

View all Full Stack Developer interview questions
A Full Stack Developer was asked 11mo ago
Q. What is select_related and prefetch_related in Django?
Ans. 

select_related and prefetch_related are query optimization techniques in Django to reduce the number of queries executed when accessing related objects.

  • select_related is used to retrieve related objects in a single query using a SQL JOIN operation

  • prefetch_related is used to retrieve related objects in separate queries to avoid duplicate data retrieval

  • select_related is suitable for foreign key and one-to-one relati...

View all Full Stack Developer interview questions
A Financial Analyst was asked
Q. What is a balance sheet?
Ans. 

A balance sheet is a financial statement that provides a snapshot of a company's financial position at a specific point in time.

  • It shows a company's assets, liabilities, and shareholders' equity.

  • Assets are what the company owns, liabilities are what it owes, and shareholders' equity is the difference between the two.

  • The balance sheet follows the accounting equation: Assets = Liabilities + Shareholders' Equity.

  • It h...

View all Financial Analyst interview questions
Are these interview questions helpful?
A Financial Analyst was asked
Q. What is Easebuzz
Ans. 

Easebuzz is a payment gateway platform that enables businesses to accept online payments easily.

  • Payment gateway platform

  • Facilitates online payments for businesses

  • Offers easy integration for websites and apps

View all Financial Analyst interview questions
A Business Development Executive was asked
Q. Tell me about Easebuzz and the product you liked the most.
Ans. 

Easebuzz is a payment gateway platform that enables businesses to accept online payments easily.

  • Easebuzz offers a variety of payment options including credit/debit cards, net banking, UPI, and wallets.

  • One of the products I liked the most from Easebuzz is their recurring payment feature, which allows businesses to set up automatic payments for subscription-based services.

  • Another product I found useful is their paym...

View all Business Development Executive interview questions
A Financial Analyst was asked
Q. What is profile and loss stament c What is cash flow statement What is balansheet What is Aging analysis and accrual entries?
Ans. 

Financial statements and analysis tools used in financial reporting and decision-making.

  • Profit and Loss Statement (P&L): Shows a company's revenues, expenses, and profits over a specific period of time.

  • Cash Flow Statement: Reports a company's sources and uses of cash during a specific period, showing how changes in balance sheet accounts and income affect cash and cash equivalents.

  • Balance Sheet: Provides a snapsho...

View all Financial Analyst interview questions

EASEBUZZ Interview Experiences

10 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. Given a string consisting solely of the characters '(', ')', '{', '}', '[', and ']', determine whether the string is valid. A string is considered valid if every opening bracket has a corresponding closing...
  • Ans. 

    Check if a string of brackets is valid by ensuring every opening bracket has a corresponding closing bracket.

    • Use a stack data structure to keep track of opening brackets

    • Iterate through the string and push opening brackets onto the stack

    • When a closing bracket is encountered, pop the top element from the stack and check if it matches the closing bracket

    • If the stack is empty at the end of the iteration, the string is vali...

  • Answered by AI
  • Q2. Write Django models for school database. Note: 1. School can have multiple classes. 2. Classes can have multiple students. 3. A class will have a primary teacher.
  • Ans. 

    Django models for school database with classes, students, and teachers.

    • Create a School model with a name field

    • Create a Class model with a foreign key to School and a primary teacher field

    • Create a Student model with a foreign key to Class

    • Use ForeignKey and OneToOneField relationships in Django models

  • Answered by AI
  • Q3. On the above school model. Write ORM query to fetch all classes with number of students greater than 50. (Need single optimised ORM query)
  • Ans. 

    Fetch all classes with more than 50 students using ORM query.

    • Use ORM query to filter classes with student count greater than 50

    • Join tables to get class information along with student count

    • Optimize query for better performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Advance Django ORM query.

Interview Questions & Answers

user image Anonymous

posted on 11 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. I was asked about my proficiency in coding and then asked basic oops concepts like polymorphism and inheritence.
  • Q2. Reverse an array
  • Q3. Basic os questions
  • Q4. Difference between list and dict and tuple in python

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is select_related and prefecth_related in django?
  • Ans. 

    select_related and prefetch_related are query optimization techniques in Django to reduce the number of queries executed when accessing related objects.

    • select_related is used to retrieve related objects in a single query using a SQL JOIN operation

    • prefetch_related is used to retrieve related objects in separate queries to avoid duplicate data retrieval

    • select_related is suitable for foreign key and one-to-one relationshi...

  • Answered by AI
  • Q2. Django orm queries
Round 2 - Technical 

(2 Questions)

  • Q1. React virtual Dom,hooks,etc
  • Q2. How page load in browser?
  • Ans. 

    Page load in browser is the process of fetching and rendering a web page.

    • Browser sends a request to the server for the web page

    • Server processes the request and sends back the HTML, CSS, and JavaScript files

    • Browser renders the content and executes the scripts to display the page

    • Page load time can be affected by factors like server response time, network speed, and browser cache

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Merge dictionaries
  • Q2. Decorators in python
  • Q3. Remove duplicate

Team Manager Interview Questions & Answers

user image Ragini Jagtap

posted on 6 Jun 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Team management Skills
  • Q2. Work life balance skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the detailed process involved in searching for google.com?
  • Ans. 

    The detailed process of searching for google.com involves DNS resolution, HTTP request, server response, and rendering the webpage.

    • 1. User enters 'google.com' in the browser address bar.

    • 2. Browser checks cache for DNS resolution, if not found, sends a DNS query to resolve the domain name to an IP address.

    • 3. Browser sends an HTTP request to the resolved IP address for google.com.

    • 4. Google's server processes the request,...

  • Answered by AI
  • Q2. MongoDB query.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com

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 - HR 

(4 Questions)

  • Q1. Introduce yourself
  • Q2. Tell us about your academics
  • Q3. What are your strengths
  • Q4. What are your projects that you have handled

Interview Preparation Tips

Topics to prepare for EASEBUZZ Business Analyst interview:
  • Requirement Analysis
  • Requirement Gathering
  • Requirement management
Interview preparation tips for other job seekers - Be precise
Have a confident body language
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Group Discussion 

The controversy between Asheer Grover and BharatPe

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about Easebuzz and the product you liked the most?
  • Ans. 

    Easebuzz is a payment gateway platform that enables businesses to accept online payments easily.

    • Easebuzz offers a variety of payment options including credit/debit cards, net banking, UPI, and wallets.

    • One of the products I liked the most from Easebuzz is their recurring payment feature, which allows businesses to set up automatic payments for subscription-based services.

    • Another product I found useful is their payment l...

  • Answered by AI
  • Q2. What was mentioned in the JD and what did you understand?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the website read about the products and understand the product.

How the product can be used in real life.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Lot of os internals
  • Q2. Design irctc integrations and choice of DBs
  • Ans. 

    Designing IRCTC integrations involves selecting appropriate databases for scalability, performance, and data consistency.

    • Use a relational database like PostgreSQL for transactional data (e.g., booking details).

    • Implement NoSQL databases like MongoDB for unstructured data (e.g., user reviews).

    • Consider using a caching layer like Redis to improve performance for frequently accessed data.

    • Utilize message queues (e.g., Rabbit...

  • Answered by AI

Financial Analyst Interview Questions & Answers

user image Sayali Thakare

posted on 3 May 2024

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

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is profile and loss stament c What is cash flow statement What is balansheet What is Aging analysis and accrual entries?
  • Ans. 

    Financial statements and analysis tools used in financial reporting and decision-making.

    • Profit and Loss Statement (P&L): Shows a company's revenues, expenses, and profits over a specific period of time.

    • Cash Flow Statement: Reports a company's sources and uses of cash during a specific period, showing how changes in balance sheet accounts and income affect cash and cash equivalents.

    • Balance Sheet: Provides a snapshot of ...

  • Answered by AI
  • Q2. What is Easebuzz
  • Ans. 

    Easebuzz is a payment gateway platform that enables businesses to accept online payments easily.

    • Payment gateway platform

    • Facilitates online payments for businesses

    • Offers easy integration for websites and apps

  • Answered by AI
  • Q3. What is balansheet
  • Ans. 

    A balance sheet is a financial statement that provides a snapshot of a company's financial position at a specific point in time.

    • It shows a company's assets, liabilities, and shareholders' equity.

    • Assets are what the company owns, liabilities are what it owes, and shareholders' equity is the difference between the two.

    • The balance sheet follows the accounting equation: Assets = Liabilities + Shareholders' Equity.

    • It helps ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy and friendly interview questions

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about EASEBUZZ?
Ask anonymously on communities.

EASEBUZZ Interview FAQs

How many rounds are there in EASEBUZZ interview?
EASEBUZZ interview process usually has 1-2 rounds. The most common rounds in the EASEBUZZ interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for EASEBUZZ 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 EASEBUZZ. The most common topics and skills that interviewers at EASEBUZZ expect are Python, MySQL, Django, Javascript and Project Management.
What are the top questions asked in EASEBUZZ interview?

Some of the top questions asked at the EASEBUZZ interview -

  1. Given a string consisting solely of the characters '(', ')', '{', '}', '[', and...read more
  2. Write Django models for school database. Note: 1. School can have multiple cla...read more
  3. Tell me about Easebuzz and the product you liked the mo...read more
How long is the EASEBUZZ interview process?

The duration of EASEBUZZ 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

3.9/5

based on 12 interview experiences

Difficulty level

Easy 29%
Moderate 57%
Hard 14%

Duration

Less than 2 weeks 57%
2-4 weeks 29%
4-6 weeks 14%
View more

Interview Questions from Similar Companies

Kissht Finance Interview Questions
3.9
 • 36 Interviews
FNZ Interview Questions
2.8
 • 36 Interviews
Jupiter Money Interview Questions
3.0
 • 31 Interviews
Uni Cards Interview Questions
3.9
 • 25 Interviews
indiagold Interview Questions
4.2
 • 23 Interviews
Experian Interview Questions
3.7
 • 23 Interviews
iServeU Interview Questions
3.8
 • 20 Interviews
View all

EASEBUZZ Reviews and Ratings

based on 64 reviews

3.0/5

Rating in categories

2.9

Skill development

2.4

Work-life balance

2.9

Salary

2.8

Job security

2.5

Company culture

2.6

Promotions

2.7

Work satisfaction

Explore 64 Reviews and Ratings
Senior Manager
26 salaries
unlock blur

₹11 L/yr - ₹25 L/yr

Senior Business Development Manager
25 salaries
unlock blur

₹13.6 L/yr - ₹23 L/yr

Business Development Manager
20 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Software Developer
15 salaries
unlock blur

₹5.3 L/yr - ₹22 L/yr

Software Engineer
13 salaries
unlock blur

₹4 L/yr - ₹8.8 L/yr

Explore more salaries
Compare EASEBUZZ with

Kissht Finance

3.9
Compare

VSoft Technologies

3.2
Compare

Innoviti Technologies Private Limited

3.1
Compare

KhataBook

3.5
Compare
write
Share an Interview