Upload Button Icon Add office photos
Engaged Employer

i

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

Esper Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Esper Interview Questions and Answers

Updated 11 Sep 2024

Esper Interview Experiences

Popular Designations

3 interviews found

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

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

Round 1 - HR 

(1 Question)

  • Q1. Questions regarding your experience and skill set
Round 2 - Technical 

(1 Question)

  • Q1. DSA questions 1) Reverse LinkedList 2) Find Good node in Tree
  • Ans. 

    Reverse a LinkedList and find good nodes in a Tree.

    • To reverse a LinkedList, iterate through the list and change the pointers to reverse the direction.

    • To find good nodes in a Tree, perform a depth-first search and check if each node meets the criteria of being a good node.

    • Example for reversing a LinkedList: 1->2->3->4->5 becomes 5->4->3->2->1 after reversal.

    • Example for finding good nodes in a Tree: Good nodes are those

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. HLD questions design youtube like streaming system

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company and interviewer also good help for active communication regarding questions.

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Intents, activity life cycle

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

I appeared for an interview before Sep 2021.

Round 1 - Technical 

(1 Question)

  • Q1. Remove n'th node from the end of the list
  • Ans. 

    Remove n'th node from the end of the list

    • Traverse the list to find the length of the list

    • Calculate the position of the node to be removed from the start

    • Traverse the list again and remove the node at the calculated position

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - write clean, readable, extensible code. Practice some basic leetcode questions

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (211)

Jobs at Esper

View all

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Dsa. , oops and basics of database management

Round 2 - Technical 

(2 Questions)

  • Q1. System design questions basics
  • Q2. Hiring managers questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a live coding round where expectation was to come up with a framework in Java from Scratch

Round 2 - Technical 

(1 Question)

  • Q1. It was a DS/Algo Round
Round 3 - Design R 

(1 Question)

  • Q1. Design Round in HLD
  • Ans. 

    Design Round in HLD involves creating a high-level design for a software system.

    • Identify the main components of the system and their interactions

    • Define the architecture of the system including layers, modules, and interfaces

    • Consider scalability, performance, security, and maintainability

    • Use UML diagrams like class diagrams, sequence diagrams, and component diagrams

    • Document the design decisions and rationale

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding questions were easy, not clear about shortlisting process

Round 2 - Technical 

(1 Question)

  • Q1. Basic DSA questions on arrays, linked lists
Round 3 - HR 

(1 Question)

  • Q1. Self introduction
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 - Coding Test 

There were 3 questions, which I had to do in 2 hours.
the questions were from arrays and Strings

Round 3 - One-on-one 

(1 Question)

  • Q1. They asked me concepts on OOPS and OS, also coding question on strings. all these were basic questions
Round 4 - HR 

(1 Question)

  • Q1. Questions such as where do you see yourself in coming years, interests and hobbies.

Interview Preparation Tips

Topics to prepare for HALODOC Software Engineer interview:
  • OOPS
  • Operating Systems
  • Coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions, Easy and medium based

Round 2 - Technical 

(1 Question)

  • Q1. Stacks queues and array questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions on projects
Round 4 - HR 

(1 Question)

  • Q1. How to tackle any uncertain situations? Behavioural questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Ans. 

    I structure my work by breaking down tasks, setting priorities, creating timelines, and regularly reviewing progress.

    • Break down tasks into smaller, manageable chunks

    • Set priorities based on deadlines and importance

    • Create timelines to track progress and ensure timely completion

    • Regularly review progress and adjust plans as needed

  • Answered by AI
  • Q2. How you make a project from scratch
  • Ans. 

    To make a project from scratch, start by defining requirements, creating a plan, designing the architecture, implementing the code, testing, and deploying.

    • Define project requirements and goals

    • Create a project plan with timelines and milestones

    • Design the architecture of the project, including database schema and system components

    • Implement the code following best practices and coding standards

    • Test the project thoroughly ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed before Sep 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Largest island (graph question)
  • Q2. SQL question related to joins
Round 3 - One-on-one 

(1 Question)

  • Q1. About the databases and questions from system design
Round 4 - One-on-one 

(1 Question)

  • Q1. Questions based on concurrency , suitable databases HLD,LLD,book my show design
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion

Esper Interview FAQs

How many rounds are there in Esper interview?
Esper interview process usually has 1-2 rounds. The most common rounds in the Esper interview process are Technical, HR and One-on-one Round.
How to prepare for Esper 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 Esper . The most common topics and skills that interviewers at Esper expect are Android, Healthcare, Logistics, Hospitality and Devops.
What are the top questions asked in Esper interview?

Some of the top questions asked at the Esper interview -

  1. DSA questions 1) Reverse LinkedList 2) Find Good node in T...read more
  2. Remove n'th node from the end of the l...read more
  3. HLD questions design youtube like streaming sys...read more

Tell us how to improve this page.

Esper Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 509 Interviews
Freshworks Interview Questions
3.5
 • 159 Interviews
Innovaccer Interview Questions
3.4
 • 81 Interviews
Zenoti Interview Questions
3.0
 • 42 Interviews
Druva Interview Questions
3.7
 • 25 Interviews
MindTickle Interview Questions
2.8
 • 21 Interviews
CleverTap Interview Questions
3.6
 • 16 Interviews
Chargebee Interview Questions
3.9
 • 16 Interviews
Postman Interview Questions
3.6
 • 11 Interviews
View all

Esper Reviews and Ratings

based on 21 reviews

4.1/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

4.4

Salary

2.8

Job security

4.1

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 21 Reviews and Ratings
Senior Technical Implementation Manager

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Senior Salesforce Administrator

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Software Development Engineer (SDE ) - Cloud

Bangalore / Bengaluru

1-3 Yrs

Not Disclosed

Explore more jobs
Software Engineer
9 salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹23 L/yr - ₹42 L/yr

Software Engineer III
6 salaries
unlock blur

₹19.9 L/yr - ₹24 L/yr

Staff Engineer
6 salaries
unlock blur

₹40 L/yr - ₹50.8 L/yr

Devops Engineer
5 salaries
unlock blur

₹9.5 L/yr - ₹18 L/yr

Explore more salaries
Compare Esper with

Pagarbook

3.6
Compare

Signzy Technologies

2.9
Compare

Xoxoday

3.7
Compare

ITILITE

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