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 Full Stack Developer Interview Questions, Process, and Tips

Updated 22 Feb 2025

Top EASEBUZZ Full Stack Developer Interview Questions and Answers

  • Q1. Given a string consisting solely of the characters '(', ')', '{', '}', '[', and ']', determine whether the string is valid. A string is considered valid if every opening ...read more
  • 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.
  • 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)

EASEBUZZ Full Stack Developer Interview Experiences

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

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query and Matrix Problem Statement You are given a binary matrix ... read more
asked in Accenture
Q2. Find Duplicates in an Array Given an array ARR of size 'N', where ... read more
asked in MakeMyTrip
Q3. Tower of Hanoi Problem Statement You have three rods numbered fro ... read more
Q4. Maximum Difference Problem Statement Given an array ARR of N elem ... read more
asked in Samsung
Q5. LCA of Binary Tree Problem Statement You are given a binary tree ... read more

Full Stack Developer Jobs at EASEBUZZ

View all

Interview questions from similar companies

Software Developer Interview Questions & Answers

FNZ user image Rudraksh Sharma

posted on 12 Nov 2024

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

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

Round 1 - Group Discussion 

We in group of 10 were given a topic on which 2 feature to select out of 4 for a project, it lasted about 10 minutes, was ok

Round 2 - Case Study 

Given a case study of a company, analyze it in 10 minutes and then questions were asked, i don't think it was useful for a Developer Role

Interview Preparation Tips

Interview preparation tips for other job seekers - Well not a good company for tech guys, they asked all non technical part to me, later on few students were given the coding link

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Use a set to store distinct elements for efficient processing.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substring...

  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Add skills iff you are sure

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where there are less than 3 elements in the array.

    • Consider edge cases like negative integers and duplicates.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Consider using a set to ensure distinct elements in the array.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Use the formula for finding the intersection point of two lines in 2D space.

    • Handle precision issues that may arise due to floating-point arithmetic.

    • Return -1.000000 -1.000000 if the lines do not intersect.

    • Ensure the lines 'AB' and 'PQ' are distinct.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

First round was coding round, where i was asked 2 DS algo questions, 1 was easy and other was of medium difficulty

  • Q1. 

    Shortest Path in a Binary Matrix Problem Statement

    Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to a destination cell, consisting only...

  • Ans. 

    Find the shortest path in a binary matrix from a source cell to a destination cell consisting only of 1s.

    • Use Breadth First Search (BFS) algorithm to find the shortest path.

    • Keep track of visited cells to avoid revisiting them.

    • Update the path length as you traverse through the matrix.

    • Return -1 if no valid path exists.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Easy

I was asked to design url shortner

  • Q1. Can you explain how you would design a URL shortener?
  • Ans. 

    Design a URL shortener system

    • Generate a unique short code for each URL

    • Store the mapping of short code to original URL in a database

    • Redirect users from short URL to original URL when accessed

    • Consider implementing features like custom short codes, expiration dates, and analytics

    • Ensure scalability and performance by using distributed systems and caching

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

This was hiring manager round

  • Q1. Can you discuss a coding problem you encountered, your past projects, and any behavioral questions related to your experiences?
  • Ans. 

    Discussed coding problem, past projects, and behavioral questions in SDE - 1 interview.

    • Coding problem: Discussed how I optimized a sorting algorithm in a previous project.

    • Past projects: Talked about a web application I developed using React and Node.js.

    • Behavioral questions: Shared how I handled a conflict within a team during a project.

    • Example: Explained how I implemented a feature in a mobile app that improved user en

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating System, DBMS, OOPSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and algo well(i prepared from GFG)
Tip 2 : Must know basics of DBMS and OS
Tip 3 : Be confident and genuine

Application resume tips for other job seekers

Tip 1 : Prepare resume iteratively
Tip 2 : show ur resume to seniors and ask for suggestions

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Aug 2023. 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 

(1 Question)

  • Q1. 1 - Easy Medium Question. Discuss the approach with interviewer and then implement it. The code should work, thats important.
Round 3 - Technical 

(1 Question)

  • Q1. LLD round to design Chess.
Round 4 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Grilling on resume and past experience questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Data Structure and algorithm
  • Q2. System design question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They have problem of K sorted array and you need to make an sorted array of it.

Round 2 - HR 

(2 Questions)

  • Q1. Your current job role
  • Q2. Software Developer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the DSA and basic OOPs question.

EASEBUZZ Interview FAQs

How many rounds are there in EASEBUZZ Full Stack Developer interview?
EASEBUZZ interview process usually has 1-2 rounds. The most common rounds in the EASEBUZZ interview process are Technical.
How to prepare for EASEBUZZ Full Stack Developer 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 Django, Javascript, PHP, Python and Debugging.
What are the top questions asked in EASEBUZZ Full Stack Developer interview?

Some of the top questions asked at the EASEBUZZ Full Stack Developer 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. On the above school model. Write ORM query to fetch all classes with number of ...read more

Tell us how to improve this page.

EASEBUZZ Full Stack Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Paytm Interview Questions
3.3
 • 753 Interviews
PhonePe Interview Questions
4.0
 • 303 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.6
 • 47 Interviews
BharatPe Interview Questions
3.5
 • 38 Interviews
Google Pay Interview Questions
4.2
 • 34 Interviews
Jupiter Money Interview Questions
3.3
 • 29 Interviews
Kissht Finance Interview Questions
3.9
 • 29 Interviews
View all
EASEBUZZ Full Stack Developer Salary
based on 4 salaries
₹7 L/yr - ₹8 L/yr
18% less than the average Full Stack Developer Salary in India
View more details
Full Stack Developer

Pune

1-2 Yrs

Not Disclosed

Explore more jobs
Senior Manager
25 salaries
unlock blur

₹11 L/yr - ₹25 L/yr

Senior Business Development Manager
24 salaries
unlock blur

₹8.4 L/yr - ₹23 L/yr

Business Development Manager
19 salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Software Engineer
14 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Explore more salaries
Compare EASEBUZZ with

Kissht Finance

3.9
Compare

BharatPe

3.5
Compare

VSoft Technologies

3.3
Compare

Innoviti Technologies Private Limited

3.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview