i
Indus Health Plus
Filter interviews by
I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.
Graduated with a degree in Computer Science
Passionate about coding and problem-solving
Completed internships at tech companies
Participated in coding competitions
I am a dedicated and hardworking individual with relevant skills and experience that make me a strong candidate for this position.
I have a strong work ethic and am committed to delivering high-quality results
I have relevant experience and skills that align with the requirements of the position
I am a quick learner and adaptable to new challenges
I am a team player and can collaborate effectively with colleagues
I am passi...
Top trending discussions
I applied via campus placement at Indian Institute of Technology (IIT), Guwahati and was interviewed in Oct 2022. There were 4 interview rounds.
2 coding questions to be solved in 90 min. Medium difficulty
I applied via Referral and was interviewed before Mar 2023. There were 3 interview rounds.
I was interviewed in Nov 2020.
Round duration - 45 Minutes
Round difficulty - Medium
The first Round was held on Hackerrank and the questions were of medium difficulty based on Data Structures and Algorithms.
The time of test was 1:00 PM and it was of 45 minutes with 2 coding questions to be solved.
I firstly sorted the intervals based on their second values and then I considered each interval if it overlaps with the previous one or not.
Time Complexity : O(nlogn)
Space complexity : O(n)
Firstly I tried recursively to fix my position to every place and check if I am remaining till Last to survive. But the Interviewer asked me to do better, then I thought of this question as a circular Linked List where in each step length decreases by one. Then I derived Mathematical formula for the position to survive till last with :
Time Complexity : O(n)
Space Complexity : O(n)
Round duration - 75 minutes
Round difficulty - Medium
A google Doc was shared with us and we were supposed to write code there.
Use of IDEs was not allowed so we had to write correct code on Google Docs which was later checked by them through online IDEs.
The Interviewer were friendly and observative and helped us through code if we made some silly error.
Firstly I tried brute force considering all possible left and right pointer and checking what all rectangle areas we can get and taking maximumm from them.
But the interviewer wanted better time complexity than O(n*n)
So I used two arrays Left and right and kept check of next shorter rectangle index to the present one.
This had Time Complexity of O(n) and Space Complexity : O(n)
The interviewer was pleased with this approa
The boundary ...
I made three functions as the order given in Problem statement and did the Traversals in the same way making sure to cover all the edge cases .
This is similar to Preorder/Postorder/Inorder type problems.
Time Complexity : O(n)
Round duration - 60 minutes
Round difficulty - Easy
The face to face round was held on Google Meet where initially interviewer asked a DS/Algo problem. Later the manager joined and asked about our resume projects in detail.
The time was 10:00 AM.
First I tried brute force approach with taking sum between all left top corner and bottom right corners rectangle formed .
This had time complexity of O(n^4).
Then I brought down the time complexity to O(n^3) by using Kadane's Algorithm and coded it on Docs Shared.
Firstly I gave the solution of Linear Search but he asked to implement binary search with all corner cases .
So I implemented binary search for finding the number of rotations array has went through.
Tip 1 : Prepare OS,DBMS,OOPs too
Tip 2 : Mention at-least one project or past work experience in your resume
Tip 3 : Try maintaining 8+ CGPA as sometimes shortlist is done based on CGPA
Tip 4 : Try past interview questions from Leetcode,Interviewbit.
Tip 1 : Try to Keep Resume 1 Pager
Tip 2 : Have atleast one project or past work experience mentioned
Tip 3 : Don't put false things on Resume as questions are asked in detail from Resume
I was interviewed before Sep 2020.
Round duration - 60 Minutes
Round difficulty - Medium
It was early in the morning from 8 am. It was a test from home itself. It was a conducted on HackerEarth and was of 60 minutes duration. 30 students were shortlisted. I was also shortlisted.
You can use any string of A mult...
In this solution, we will try to generate all prefixes and If we want a prefix present in the string then we will recur for the remaining string.
Steps:
wordBreakHelper(s):
This problem can be solved using the greedy approach. By greedy, we mean that we simply start cutting the board along every horizontal and vertical line. But this cutting needs to be in a specific manner. Let’s see how we can do this.
Round duration - 45 Minutes
Round difficulty - Hard
This round was scheduled around 12 pm. It was a virtual round with one interviewer who was a Cure.Fit employee. My resume was scanned and a brief introduction was asked. After that a question was put up which I had to find solution to and code it. In the end, I asked questions regarding the type of projects they work on etc. I was selected for the next round
The idea is to use stack data structure and is pretty much similar to the algorithm where we check if the expression is balanced or not.
We mainly have 3 conditions to fulfil i.e.
Round duration - 60 Minutes
Round difficulty - Easy
As soon as the HR round got over. I was asked to sit for my next round. It was again a problem solving round along with Data Structure questions in the end. The interviewer was an employee of Cure.Fit and after a brief introduction, I was given a question. After solving it, I was asked questions on Hashmaps, their implementation, time complexities. Finally, I was selected :)
The idea is to fix one node and try to find, if there exists, a node whose sum along with the fixed node is equal to the given ‘target’.
The steps are as follows:
Tip 1 : Do competitive programming and maintain a decent rating across platforms. This will make you comfortable with the coding rounds and thinking under pressure and in a time-bounded manner.
Tip 2 : Practice some company wise questions, especially of Google, Facebook, Amazon, Microsoft from Leetcode 1-2 months before the placement/internship season to get yourself accustomed to good interview type questions.
Tip 3 : Practice Dynamic Programming using a top-down approach as this not only improves DP but also improves recursion thinking. Recursion in turn help you to solve questions on Trees, graphs, and backtracking.
Tip 4 : Have at least 2 good projects on your resume which is solving some real-life problems. I won't recommend making just clones, rather add more functionalities. Web Development projects are good to start with.
Tip 5 : Study the core subjects for internships in the following priority manner: OOPS>>OS>=DBMS. Some colleges may have System Design as well. That can be studied in the same manner like OS.
Tip 6 : Get yourself a good mentor to guide yourself.
Tip 1 : Keep your resume simple and formal.
Tip 2 : Having a past internship opportunity is a plus.
Tip 3 : Have good projects and mention them only if you know the depth of it.
Tip 4 : List your achievements chronologically and focus on participating in various competitions and getting recognition.
I was interviewed before Sep 2020.
Round duration - 60 minutes
Round difficulty - Easy
Had to solve 2 easy coding problems. Could be solved in 25 minutes if you are well prepared with DS-Algo.
I used maxheap to keep track of max element [(frequency, taskname),...] and queue to keep track of used elements [(time last used, (frequency, taskname)),...] I used t as current time. I removed max from heap, added max to result , updated the timestamp and pushed to queue each time Then I checked from queue if I could use it based on timestamp, if yes I pushed to heap and repeated above step again
Hint: DFS on matrix
I had solved this problem before. Didn't require much thinking on the spot. Always prepare company archives.
Round duration - 40 minutes
Round difficulty - Medium
Questions on Computer science subjects like OS, DBMS, OOP
What is virtual class in OOP?
Questions on Data Abstractions and polymorphism
Tip 1 : Do not use bookish language
Tip 2 : Use examples
Tip 3 : Be to the point
Questions on types of memories
Tip 1 : Do not use bookish language
Tip 2 : Use examples
Tip 3 : Be to the point
Round duration - 40 minutes
Round difficulty - Easy
General Discussion on Resume, some in depth questions on a project of interviewer's choice.
Web development based questions, server-client questions and some questions on javascript.
Tip 1 : Do not use bookish language
Tip 2 : Use examples
Tip 3 : Be to the point
Tip 1 : Never leave any topic from any chapter or subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : At least have 4 projects in Resume
Tip 1 : At least have 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.
Assistant Manager
16
salaries
| ₹5.4 L/yr - ₹9 L/yr |
Team Lead
16
salaries
| ₹3.5 L/yr - ₹5.2 L/yr |
Executive
14
salaries
| ₹1.4 L/yr - ₹3.5 L/yr |
Senior Executive
12
salaries
| ₹1.9 L/yr - ₹7 L/yr |
Relationship Executive
12
salaries
| ₹1.9 L/yr - ₹2.7 L/yr |
Thyrocare Technologies
Suburban Diagnostics
Metropolis Healthcare
DRJ & CO