Upload Button Icon Add office photos
Engaged Employer

i

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

ElasticRun Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

ElasticRun Software Developer Interview Questions and Answers

Updated 26 Jun 2023

ElasticRun Software Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Interview Preparation Tips

Interview preparation tips for other job seekers - Know your concepts.
Be confident about stuff that you know but be humble enough to say No to what you don't know.

Interview questions from similar companies

I appeared for an interview before May 2021.

Round 1 - Assignment 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

  • Q1. Design a class booking application for students.
  • Ans. 

    A class booking application for students to schedule and manage their classes.

    • Create a class booking system where students can view available classes, book classes, and manage their schedule.

    • Include features like class search, class details, booking confirmation, and calendar view.

    • Implement user authentication to ensure only registered students can book classes.

    • Allow students to cancel or reschedule classes with proper...

  • Answered by AI
Round 2 - Telephonic Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer understand the current problem statement I was working on. 
Asked the clarifying questions and alternative approaches to solve the same and their tradeoffs.
Also, asked about the technologies I was using in depth and reason for choosing the same.

  • Q1. 

    Gas Tank Problem Statement

    You have a car with a gas tank of infinite capacity. There are 'N' gas stations located along a circular route, numbered from 0 to N-1. You begin your journey with an empty tank...

  • Ans. 

    Find the starting gas station index to complete a circular route with gas and cost arrays.

    • Iterate through gas stations, keeping track of gas remaining after each station

    • If gas remaining is negative, reset starting station to current station + 1

    • If total gas remaining at the end is greater than or equal to total cost, return starting station index

  • Answered by AI
Round 3 - Telephonic Call 

Round duration - 45 Minutes
Round difficulty - Medium

This round was their with the CTO and was mostly the culture fitment round.

 

Round 4 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This round was with the cofounder and was mostly culture fitment.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaRIVIGO interview preparation:Topics to prepare for the interview - Data Structures, Competitive Programming, Databases, Java, Spring , Hibernate, Jenkins, AWSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on leetcode
Tip 2 : Understand the best solutions in depth and algorithm used
Tip 3 : Ask clarifying questions to the interviewer and break the problem to smaller sub parts

Application resume tips for other job seekers

Tip 1 : Highlight your most impactful work on the resume
Tip 2 : Keep it easy to understand

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Design a stack that support getmin in O(1) time and O(1) space complexities
  • Ans. 

    Design a stack that supports getmin in O(1) time and O(1) space complexities.

    • Use two stacks, one for storing the actual values and the other for storing the minimum values.

    • When pushing a new value, check if it is smaller than the current minimum value and push it to the minimum stack if it is.

    • When popping a value, check if it is the current minimum value and pop it from the minimum stack if it is.

    • To get the minimum val...

  • Answered by AI
  • Q2. Questions related OS and DBMS
  • Q3. Binary tree traversal
  • Ans. 

    Binary tree traversal is the process of visiting each node in a binary tree exactly once in a specific order.

    • There are three main types of binary tree traversal: inorder, preorder, and postorder.

    • Inorder traversal visits the left subtree, then the root, then the right subtree.

    • Preorder traversal visits the root, then the left subtree, then the right subtree.

    • Postorder traversal visits the left subtree, then the right subt...

  • Answered by AI
  • Q4. LRU cache explanation
  • Ans. 

    LRU cache is a data structure that stores the most recently used items and discards the least recently used items.

    • LRU stands for Least Recently Used

    • It has a fixed size and when the cache is full, the least recently used item is removed to make space for a new item

    • It uses a combination of a doubly linked list and a hash map to achieve O(1) time complexity for both insertion and deletion

    • Example: A web browser cache that ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good with your programming skills and fundamentals.

Skills evaluated in this interview

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

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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1 - Technical: The first round involved solving one tree-based question and one array-based question. I was also asked about object-oriented programming concepts, Git commands, and SQL queries. In addition, I faced questions based on my resume projects, and I was asked to explain the difference between a primary key and a unique key.

Round 2 - Technical: The second round focused more on system design and APIs. I was asked to explain the difference between PUT and POST in REST APIs, design the database schema of one of my projects, and discuss inheritance and access modifiers (public, private, protected). Git commands were also covered. A scenario-based question was presented: "How would you send an email to a million users, ensuring that if an email fails, the system retries sending it three times? If the retries fail, the system should move on to the next email. Additionally, if the system crashes after sending 1000-2000 emails, how would you ensure that upon restart, it resumes from where it left off without resending emails?"

The HR was friendly, clearly explained the next steps, and provided constructive feedback. Overall, it was a positive interview experience.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

ElasticRun Interview FAQs

How many rounds are there in ElasticRun Software Developer interview?
ElasticRun interview process usually has 3 rounds. The most common rounds in the ElasticRun interview process are Resume Shortlist, HR and Technical.
What are the top questions asked in ElasticRun Software Developer interview?

Some of the top questions asked at the ElasticRun Software Developer interview -

  1. Knowledge on SQL and how to write a qu...read more
  2. Knowledge on DSA and coding problems to sol...read more
  3. Knowledge on APIS (structure, security et...read more

Recently Viewed

SALARIES

Indian Space Research Organisation

REVIEWS

Hindustan Aeronautics

No Reviews

REVIEWS

Hindustan Aeronautics

No Reviews

INTERVIEWS

Oyo Rooms

No Interviews

INTERVIEWS

XpressBees

No Interviews

INTERVIEWS

GMR Group

No Interviews

COMPANY BENEFITS

Hindustan Aeronautics

No Benefits

REVIEWS

Hindustan Aeronautics

No Reviews

REVIEWS

Hindustan Aeronautics

No Reviews

REVIEWS

Hindustan Aeronautics

No Reviews

Tell us how to improve this page.

ElasticRun Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
ElasticRun Software Developer Salary
based on 8 salaries
₹9.6 L/yr - ₹19.4 L/yr
42% more than the average Software Developer Salary in India
View more details

ElasticRun Software Developer Reviews and Ratings

based on 6 reviews

4.0/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

4.1

Salary

3.6

Job security

4.1

Company culture

4.1

Promotions

4.3

Work satisfaction

Explore 6 Reviews and Ratings
Team Lead
683 salaries
unlock blur

₹1.8 L/yr - ₹6 L/yr

Team Lead Operations
269 salaries
unlock blur

₹2 L/yr - ₹5.3 L/yr

Area Sales Manager
189 salaries
unlock blur

₹7.4 L/yr - ₹24.7 L/yr

Area Manager
182 salaries
unlock blur

₹3 L/yr - ₹10.8 L/yr

City Manager
156 salaries
unlock blur

₹3 L/yr - ₹10.2 L/yr

Explore more salaries
Compare ElasticRun with

Shadowfax Technologies

3.6
Compare

Delhivery

3.9
Compare

BlackBuck

3.8
Compare

LogiNext Solutions

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