Healspan interview experience Real time questions & tips from candidates to crack your interview

SDE - Intern

Healspan
upvote
share-icon
2 rounds | 7 Coding problems

Interview preparation journey

expand-icon
Application story
I applied through LinkedIn. They urgently needed an intern, so the selection process was very fast. The interview was not tough. If you have some knowledge of Python and can solve DSA questions of easy to medium level, you are good to go. The HR round was simple and focused on negotiation; not many questions were asked. After all the rounds, the project manager explained what they expected from me.
Preparation
Duration: 1 Month
Topics: Python, DSA, React, CSS (must), SQL, Django, OOP, Operating System
Tip
Tip

Tip 1: Keep your resume clear and genuine, and avoid unnecessary details.
Tip 2: Python and CSS are essential for the interview.
Tip 3: Complete at least two projects; one should be in Python.

Application process
Where: Linkedin
Eligibility: NA, (Stipend: 10k)
Resume Tip
Resume tip

Tip 1: At least one Python project.

Tip 2: Don’t fake anything in your resume.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration45 minutes
Interview date1 Jul 2025
Coding problem3

1. Find All Triplets With Zero Sum

Moderate
30m average time
50% success
0/80
Asked in companies
MicrosoftFacebookDunzo

You are given an array Arr consisting of n integers, you need to find all the distinct triplets present in the array which adds up to zero.

An array is said to have a triplet {arr[i], arr[j], arr[k]} with 0 sum if there exists three indices i, j and k such that i!=j, j!=k and i!=k and arr[i] + arr[j] + arr[k] = 0.

Note :
1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then (2, -3, 1), (-3, 2, 1) etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
Try solving now

2. Reverse an Array

Easy
10m average time
95% success
0/40
Asked in companies
SamsungHealspan

Given an array 'arr' of size 'n'.


Return an array with all the elements placed in reverse order.


Note:
You don’t need to print anything. Just implement the given function.
Example:
Input: n = 6, arr = [5, 7, 8, 1, 6, 3]

Output: [3, 6, 1, 8, 7, 5]

Explanation: After reversing the array, it looks like this [3, 6, 1, 8, 7, 5].
Try solving now

3. MCQs

Python-based MCQs: Basic level
General Aptitude: Age-based and Speed-based questions

02
Round
Easy
Face to Face
Duration45 minutes
Interview date8 Jul 2025
Coding problem4

1. 2 Sum

Moderate
0/80
Asked in companies
Wells FargoHCL TechnologiesOLX Group

Given an integer array Arr of size N and an integer target, your task is to find the indices of two elements of the array such that their sum is equal to target. Return <-1,-1> if no such pair exists.

Note:

If more than one such pair of indices exist, return the lexicographically smallest pair
You may not use the same element twice.
Try solving now

2. Memory Allocation

Explain dynamic memory allocation in Python.

3. React Concepts

Explain hooks, what custom components are, and explain the virtual DOM.

4. About my project and Internships

They picked questions from my resume, such as what is Kafka and why I used Node.js in a particular project. Every question was based on my resume.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
961 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6450 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3452 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - Intern
3 rounds | 6 problems
Interviewed by Amazon
15480 views
4 comments
0 upvotes
company logo
SDE - Intern
4 rounds | 7 problems
Interviewed by Microsoft
15338 views
1 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 4 problems
Interviewed by Amazon
10142 views
2 comments
0 upvotes