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 and Answers

Updated 22 Feb 2025

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

Top trending discussions

View All
Interview Tips & Stories
1w (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.

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is DBMS structure
  • Q2. What is API and MQTT

Interview Preparation Tips

Interview preparation tips for other job seekers - Super easy interview, practically free entry to prison
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions were based on basic aptitude like seating arrangement

Round 2 - Technical 

(2 Questions)

  • Q1. Basic oops concepts
  • Q2. SQL questions like triggers and creating an SQL table etc
Round 3 - Technical 

(1 Question)

  • Q1. Coding like arrays basic codes like reversing an array
  • Ans. 

    Reversing an array involves swapping elements from both ends towards the center.

    • Use a loop to iterate from the start to the middle of the array.

    • Swap the elements at the current index and its corresponding index from the end.

    • Example: For array ['a', 'b', 'c'], after reversing it becomes ['c', 'b', 'a'].

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics
Round 1 - Technical 

(2 Questions)

  • Q1. Basic oops concepts and our projects
  • Q2. Basic strucutes of oops concpts and micro services
  • Ans. 

    OOPs concepts include encapsulation, inheritance, polymorphism, and abstraction. Microservices are small, independent services that communicate with each other.

    • OOPs concepts help in creating modular and reusable code.

    • Encapsulation ensures that data is hidden and can only be accessed through defined methods.

    • Inheritance allows a class to inherit properties and methods from a parent class.

    • Polymorphism allows objects to ta...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared and don't lose your confidence while the interviewer interviewing you.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(5 Questions)

  • Q1. How much was your previous in hand salary?
  • Q2. How far do you stay from the office, during nights if needed can you come on your own during any critical situation (Note: I'm a woman)?
  • Q3. Are you ok with 40% less in-hand pay from your previous job in Banglore, since you're getting to stay in your hometown and your expenses will be less here?
  • Q4. Are you married? Do you have children? What does your husband do? How long are you planning to stay in Bhubaneswar?
  • Q5. Are you ok with an employment bond of 24 months with a probation period of 12 months
Round 2 - Technical 

(6 Questions)

  • Q1. What are different modules of node js?
  • Ans. 

    Node.js has several core modules that provide essential functionality for building applications.

    • HTTP: Allows Node.js to transfer data over the Hyper Text Transfer Protocol (HTTP)

    • FS: Provides file system operations like reading and writing files

    • OS: Gives information about the operating system on which Node.js is running

    • Path: Helps in working with file and directory paths

    • Events: Allows to handle events in Node.js applica...

  • Answered by AI
  • Q2. Difference between angular and node js
  • Ans. 

    Angular is a front-end framework for building client-side applications, while Node.js is a back-end runtime environment for running server-side applications.

    • Angular is used for building dynamic web applications with HTML, CSS, and TypeScript.

    • Node.js is used for server-side scripting and building scalable network applications.

    • Angular is a front-end framework developed and maintained by Google.

    • Node.js is a back-end runti...

  • Answered by AI
  • Q3. Difference between process.nextTick( ) and setImmediate( )
  • Ans. 

    process.nextTick() is called before any I/O events, while setImmediate() is called after I/O events.

    • process.nextTick() is called at the end of the current event loop cycle, before any I/O events.

    • setImmediate() is called at the beginning of the next event loop cycle, after I/O events.

    • Use process.nextTick() for executing code asynchronously but as soon as possible.

    • Use setImmediate() for executing code asynchronously afte...

  • Answered by AI
  • Q4. How to implement async in node js
  • Ans. 

    Async in Node.js can be implemented using callbacks, promises, or async/await.

    • Use callbacks to handle asynchronous operations in Node.js

    • Promises can be used for cleaner asynchronous code

    • Async/await provides a more synchronous way to write asynchronous code

  • Answered by AI
  • Q5. General operations of Casendra CQL
  • Ans. 

    Casendra CQL is a query language used for general operations in Casendra database.

    • Casendra CQL is similar to SQL but optimized for Cassandra database

    • It supports CRUD operations (Create, Read, Update, Delete)

    • It allows for filtering, sorting, and aggregating data

    • Example: SELECT * FROM table_name WHERE column_name = value;

  • Answered by AI
  • Q6. Characteristics of column family
  • Ans. 

    Column family is a data model used in NoSQL databases to store related data together.

    • Used in NoSQL databases like Apache Cassandra

    • Consists of rows and columns

    • Columns are grouped together and stored on disk sequentially

    • Supports wide rows and dynamic columns

    • Example: In a social media application, a column family could store user profiles with columns for name, age, and location

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. CEO asked to turn on camera. Asked if i'm married (i'm a woman), the interview was scheduled for 10;30pm in the night. Asked me not to be so formal and treat him like a friend and be casual. I suspect he w...

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't interview with such creeps and stay away from them. Really malicious intended people.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain about yourself?
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • I have a Bachelor's degree in Computer Science from XYZ University.

    • I have worked on developing web applications using Java Spring framework.

    • I am proficient in writing complex SQL queries for database management.

    • I have experience in developing automation scripts using Python.

  • Answered by AI
  • Q2. What is OOP'S Concept in Java?
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

MCQ on programing. Easy peasy.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interviews.

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

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. What is select_related and prefecth_related in djan...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 50%
Hard 50%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

FNZ Interview Questions
2.8
 • 37 Interviews
Kissht Finance Interview Questions
3.9
 • 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 Full Stack Developer Salary
based on 4 salaries
₹4.4 L/yr - ₹8 L/yr
21% less than the average Full Stack Developer Salary in India
View more details
Full Stack Developer

Pune

1-2 Yrs

Not Disclosed

Full Stack Developer

Gurgaon / Gurugram

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Manager
26 salaries
unlock blur

₹13 L/yr - ₹23.8 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.8 L/yr - ₹12 L/yr

Software Developer
15 salaries
unlock blur

₹9.3 L/yr - ₹18.1 L/yr

Software Engineer
13 salaries
unlock blur

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