Upload Button Icon Add office photos
Engaged Employer

i

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

Loop Health Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 80 Reviews

Filter interviews by

Loop Health Software Engineer Interview Questions and Answers

Updated 1 Feb 2024

Loop Health Software Engineer Interview Experiences

2 interviews found

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 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 

Some coding que and some technical que were asked on dsa and oops

Round 3 - HR 

(1 Question)

  • Q1. Hr que were asked on basic personal que on why joining this company and this role

Software Engineer Interview Questions & Answers

user image Nagalakshmi Panda

posted on 1 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Cutshort and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Case Study 

On java and reactjs, asked few programming questions

Round 2 - Coding Test 

Coding roungmd for java

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Leetcode Medium questions on hackerrank

Round 2 - One-on-one 

(3 Questions)

  • Q1. Kadane algorithm based question
  • Q2. Leetcode medium
  • Q3. Resume based questions
Round 3 - One-on-one 

(4 Questions)

  • Q1. Probability question math problem
  • Q2. Puzzle to solve
  • Q3. AI based question
  • Q4. 1 question to solve Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with DSA and communication skill
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Left view of BST
  • Ans. 

    Left view of BST is the nodes visible when viewing the tree from the left side.

    • The left view of a BST includes the leftmost node at each level.

    • Use level order traversal to find the left view nodes.

    • Example: For BST with nodes 1, 2, 3, 4, 5, the left view is 1, 2.

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

(2 Questions)

  • Q1. Detect loop in a Linked List
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect loop in a Linked List.

    • Initialize two pointers, slow and fast, at the head of the Linked List.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a loop in the Linked List.

  • Answered by AI
  • Q2. Second largest salary from employee table

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 2023. There were 3 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 

60 Minutes coding test was there

Round 3 - Technical 

(5 Questions)

  • Q1. Worst experience ever, never apply for company in this, highly unstable company
  • Q2. Add two numbers in a linked list, don't apply
  • Ans. 

    Traverse the linked list and add the values of each node without using additional data structures.

    • Traverse the linked list while keeping track of the sum in a variable

    • Update the sum by adding the value of each node as you traverse the list

    • Handle carry over if the sum of two nodes is greater than 9

  • Answered by AI
  • Q3. Sort the array by using all sorting algorithms, don't join
  • Q4. Subset problem find all the subsets
  • Ans. 

    To find all subsets of a given set, use recursion to generate all possible combinations.

    • Use recursion to generate all possible combinations of including or excluding each element in the set.

    • Start with an empty subset and recursively add each element to create new subsets.

    • Each subset can be represented as an array of strings.

  • Answered by AI
  • Q5. LRU Cache problem, explain it and implement it
  • Ans. 

    LRU Cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • LRU Cache uses a combination of a doubly linked list and a hashmap to efficiently store and retrieve items.

    • When an item is accessed, it is moved to the front of the linked list to indicate it is the most recently used item.

    • If the cache is full, the least recently used item at the end of the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join, Worst Experience every

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 2 rounds, 2 coding questions in each round. Managerial round.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is ACID Prop?
  • Ans. 

    ACID Prop stands for Atomicity, Consistency, Isolation, Durability properties in database transactions.

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that multiple transactions can be executed concurrently without affecting each other.

    • Durability ensures...

  • Answered by AI
  • Q2. WHAT IS ER Dia?
  • Ans. 

    ER Dia stands for Entity-Relationship Diagram, a visual representation of entities and their relationships in a database.

    • ER Dia is used to design databases by showing the entities (such as customers, products, orders) and the relationships between them.

    • Entities are represented as rectangles, relationships as diamonds, and attributes as ovals.

    • For example, in a library database, you may have entities like 'Book', 'Author...

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic Python Programming question with list, regex, strings
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Telegram and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is the job culture of zopsmart
  • Ans. 

    The job culture at Zopsmart is collaborative, innovative, and fast-paced.

    • Collaborative work environment where team members support and help each other

    • Emphasis on innovation and creativity in problem-solving

    • Fast-paced atmosphere with opportunities for growth and learning

    • Open communication and feedback encouraged

    • Diverse and inclusive workplace culture

  • Answered by AI
Round 2 - Coding Test 

Medium level leetcode problem

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

I applied via Referral and was interviewed in Nov 2022. There were 6 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 - One-on-one 

(2 Questions)

  • Q1. What's your motivation to join this team?
  • Ans. 

    I am motivated to join this team because of the challenging work and the opportunity to learn and grow.

    • I am excited about the projects this team is working on and the potential impact they can have.

    • I am impressed by the team's expertise and collaborative approach.

    • I am looking for a supportive and innovative work environment where I can contribute my skills and knowledge.

    • I am eager to learn from my colleagues and develo...

  • Answered by AI
  • Q2. What are the projects/initiatives you have worked-on in your current role?
  • Ans. 

    I have worked on multiple projects including developing a new e-commerce platform and implementing a machine learning algorithm for fraud detection.

    • Developed a new e-commerce platform using React and Node.js

    • Implemented a machine learning algorithm for fraud detection using Python and TensorFlow

    • Collaborated with cross-functional teams to ensure project success

    • Improved website performance by optimizing code and reducing

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Design VS code(any IDE)
  • Ans. 

    Designing an IDE like VS code requires a deep understanding of software development and user experience.

    • Identify the target audience and their needs

    • Choose the programming languages and frameworks to support

    • Create a user-friendly interface with customizable features

    • Implement debugging and testing tools

    • Ensure compatibility with different operating systems

    • Continuously update and improve the IDE based on user feedback

  • Answered by AI
  • Q2. Discuss the architechture, limitations and abilities you would want in your app
  • Ans. 

    The app architecture should be scalable, with a user-friendly interface and secure data storage.

    • The app should have a modular architecture to allow for easy scalability and maintenance.

    • The user interface should be intuitive and easy to navigate.

    • The app should have robust security measures in place to protect user data.

    • The app should be able to handle large amounts of data and traffic.

    • The app should be compatible with m...

  • Answered by AI
  • Q3. The objective is not to code, but rather to discuss how would you implement certain features
Round 4 - Technical 

(6 Questions)

  • Q1. No coding involved but deep JavaScript, CSS, Browser, APIs related questions were asked
  • Q2. Need to explain very minute details, explain working and uses
  • Q3. What is a CDN? How does the browser work?
  • Ans. 

    CDN stands for Content Delivery Network. Browser works by sending requests to servers and receiving responses.

    • CDN is a network of servers that deliver content to users based on their geographic location.

    • CDN reduces latency and improves website performance.

    • Browser sends HTTP requests to servers and receives responses containing HTML, CSS, JS, and other assets.

    • Browser renders the received content and displays it to the u

  • Answered by AI
  • Q4. CSS positioning
  • Q5. Flexbox, Grid, Browser internals
  • Q6. NO DSA question ❌
Round 5 - Coding Test 

You get 60 minutes to code an application in your choice of programming stack. Out of which 45 minutes are set aside for implementation and 15 minutes for problem discussion and conclusion.

Make sure that you think out loud while implementing the solution and not just silently coding.

Round 6 - HR 

(1 Question)

  • Q1. Conclude the whole process, discuss salary expectations, perks, benefits, and other policy discussions

Skills evaluated in this interview

Loop Health Interview FAQs

How many rounds are there in Loop Health Software Engineer interview?
Loop Health interview process usually has 2-3 rounds. The most common rounds in the Loop Health interview process are Coding Test, Resume Shortlist and HR.

Tell us how to improve this page.

Loop Health Software Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Loop Health Software Engineer Salary
based on 4 salaries
₹10 L/yr - ₹23.8 L/yr
71% more than the average Software Engineer Salary in India
View more details

Loop Health Software Engineer Reviews and Ratings

based on 3 reviews

3.6/5

Rating in categories

2.8

Skill development

3.3

Work-life balance

3.5

Salary

3.3

Job security

3.6

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 3 Reviews and Ratings
Customer Success Manager
17 salaries
unlock blur

₹10 L/yr - ₹24 L/yr

Business Development Manager
10 salaries
unlock blur

₹5 L/yr - ₹19.6 L/yr

Claims Executive
9 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Claims Specialist
8 salaries
unlock blur

₹4 L/yr - ₹6.6 L/yr

Marketing Research Executive
8 salaries
unlock blur

₹2.4 L/yr - ₹6.6 L/yr

Explore more salaries
Compare Loop Health with

Practo

3.1
Compare

PharmEasy

3.7
Compare

Tata 1mg

3.6
Compare

Netmeds.com

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