Upload Button Icon Add office photos

Filter interviews by

ILS Hospitals Interview Questions, Process, and Tips

Updated 21 Feb 2025

Top ILS Hospitals Interview Questions and Answers

ILS Hospitals Interview Experiences

Popular Designations

7 interviews found

Interview Questionnaire 

3 Questions

  • Q1. What is hospital pharmacist?
  • Q2. What are the brands of metformin tablet?
  • Q3. Tell me about yourself and you experiences.

Hospital Pharmacist Interview Questions asked at other Companies

Q1. Which among the following is function of Insulin
View answer (9)

Pharmacist Interview Questions & Answers

user image Atanu Roy

posted on 17 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your experience
  • Q2. Do you know the basic for dispensing the medicine

Pharmacist Interview Questions asked at other Companies

Q1. 1. in which temperature we can store insulin inj sol 2.what are the parts of prescription. 3. how many types of inventry 4. what is LASA, FIFO examples of LASA. 5. which drugs are come under schedule x 6. What is GRN and why it is important... read more
View answer (20)

Executive Accountant Interview Questions & Answers

user image Bishal Purkayastha

posted on 21 Feb 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell us about TDS

Executive Accountant Interview Questions asked at other Companies

Q1. What is the file extension name which is created by the TDS Return software
View answer (4)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Proffession experience related questions
Round 2 - HR 

(1 Question)

  • Q1. Regarding the own personal information and Proffession experience

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (56)

ILS Hospitals interview questions for popular designations

 Executive

 (1)

 Resident Medical Officer

 (1)

 Executive Accountant

 (1)

 Pharmacist

 (1)

 Hospital Pharmacist

 (1)

 Senior Executive

 (1)

Interview Questions & Answers

user image Anonymous

posted on 3 Jul 2022

I applied via LinkedIn and was interviewed in Jun 2022. There were 2 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 - Technical 

(1 Question)

  • Q1. Any questions about pathology

Interview Preparation Tips

Topics to prepare for ILS Hospitals interview:
  • All pathology
Interview preparation tips for other job seekers - Know yourself and what you want.
Job search like it's your job.
Pump yourself up and stay positive.
Use informational interviews to network.

Executive Interview Questions & Answers

user image Anonymous

posted on 31 Dec 2022

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 Dec 2021. 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 - One-on-one 

(3 Questions)

  • Q1. What was your last job profile?
  • Q2. Do you ok with night shifts?
  • Q3. What is your salary expectation?
Round 3 - HR 

(1 Question)

  • Q1. What kind of shifts you can do?

Interview Preparation Tips

Interview preparation tips for other job seekers - If you ok with all types of shifts along with night shifts then this will be a positive point for you. Although not all department need night staffs.

Executive Interview Questions asked at other Companies

Q1. How will you start RS method Development for known drug product?
View answer (16)

Jobs at ILS Hospitals

View all

I applied via Referral and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. My work experience?
  • Q2. My knowledge about various procedures?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, state clearly about what work you know and you don't.

Resident Medical Officer Interview Questions asked at other Companies

Q1. A patient came in emergency with sudden loss off consciousness with no history or attendant. what will further course of action?
View answer (3)

Interview questions from similar companies

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Denials and about the calling methods and analysing them.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with your process and be confident in answering them.

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a technical Interview round with questions on C#, .NET and DBMS.

  • Q1. What is the difference between the Ref and Out keywords in C#?
  • Ans. 

    Ref is used for passing arguments by reference, Out is used for returning multiple values.

    • Ref keyword is used for passing arguments by reference, allowing the method to modify the original value.

    • Out keyword is used for returning multiple values from a method, as it does not require the variable to be initialized before being passed.

  • Answered by AI
  • Q2. What is the difference between ViewData, ViewBag, and TempData in C#?
  • Ans. 

    ViewData, ViewBag, and TempData are ways to pass data between controllers and views in ASP.NET MVC.

    • ViewData is a dictionary object used to pass data from controller to view. It requires typecasting.

    • ViewBag is a dynamic property used to pass data from controller to view. No typecasting is required.

    • TempData is a dictionary object used to pass data from one controller to another or from one action to another.

  • Answered by AI
  • Q3. What is the difference between managed and unmanaged code in C#?
  • Ans. 

    Managed code is executed by the CLR with memory management, while unmanaged code is executed directly by the operating system without memory management.

    • Managed code is executed by the Common Language Runtime (CLR) in .NET framework.

    • Unmanaged code is executed directly by the operating system without CLR.

    • Managed code provides automatic memory management through garbage collection.

    • Unmanaged code requires manual memory man...

  • Answered by AI
  • Q4. What are the different types of triggers in SQL Server?
  • Ans. 

    Triggers in SQL Server are special types of stored procedures that are automatically executed when certain events occur in a database.

    • Types of triggers include DML triggers (for INSERT, UPDATE, DELETE operations), DDL triggers (for CREATE, ALTER, DROP operations), and Logon triggers.

    • Triggers can be set to fire before or after the triggering event.

    • Examples of triggers include auditing changes to a table using an INSERT ...

  • Answered by AI
  • Q5. What are generic and non-generic collections in C#?
  • Ans. 

    Generic collections in C# allow for type-safe collections, while non-generic collections do not enforce type safety.

    • Generic collections use type parameters to specify the type of elements they can contain, ensuring type safety.

    • Non-generic collections do not specify the type of elements they can contain, leading to potential runtime errors if incorrect types are used.

    • Example of generic collection: List<string> nam...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This was a typical managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAUnitedHealth Group interview preparation:Topics to prepare for the interview - C#, .NET, DBMS, Data Structures, Algorithms, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts JVM questions String programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on java,selenium they look for jebhave and leanft

ILS Hospitals Interview FAQs

How many rounds are there in ILS Hospitals interview?
ILS Hospitals interview process usually has 1-2 rounds. The most common rounds in the ILS Hospitals interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for ILS Hospitals 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 ILS Hospitals. The most common topics and skills that interviewers at ILS Hospitals expect are Nursing, GNM, Healthcare, Medical Records and Patient Care.
What are the top questions asked in ILS Hospitals interview?

Some of the top questions asked at the ILS Hospitals interview -

  1. What are the brands of metformin tabl...read more
  2. Do you know the basic for dispensing the medic...read more
  3. What is hospital pharmaci...read more

Tell us how to improve this page.

ILS Hospitals Interview Process

based on 12 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

UnitedHealth Interview Questions
4.0
 • 82 Interviews
Paras Hospital Interview Questions
4.4
 • 81 Interviews
Pacific BPO Interview Questions
3.5
 • 79 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
HCL Healthcare Interview Questions
4.5
 • 63 Interviews
SRL Diagnostics Interview Questions
4.1
 • 55 Interviews
View all

ILS Hospitals Reviews and Ratings

based on 162 reviews

3.6/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.0

Salary

3.4

Job security

3.3

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 162 Reviews and Ratings
Physiotherapist

Raipur

0-2 Yrs

Not Disclosed

Emergency Medical Technician (EMT)

Raipur

0-2 Yrs

Not Disclosed

CSSD Technician

Raipur

1-2 Yrs

Not Disclosed

Explore more jobs
Staff Nurse
41 salaries
unlock blur

₹1 L/yr - ₹3.8 L/yr

Operations Executive
31 salaries
unlock blur

₹1.3 L/yr - ₹2.6 L/yr

Resident Medical Officer
16 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Senior Executive
9 salaries
unlock blur

₹2.3 L/yr - ₹3.8 L/yr

Executive
9 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Explore more salaries
Compare ILS Hospitals with

GeBBS Healthcare Solutions

3.7
Compare

UnitedHealth

4.0
Compare

Sahrudaya Healthcare (Medicover Hospitals)

4.5
Compare

Paras Hospital

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