Upload Button Icon Add office photos

Medlife

Compare button icon Compare button icon Compare

Filter interviews by

Medlife Interview Questions, Process, and Tips

Updated 22 Jun 2024

Top Medlife Interview Questions and Answers

View all 13 questions

Medlife Interview Experiences

Popular Designations

27 interviews found

Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2021

Interview Questionnaire 

1 Question

  • Q1. Ur previous work experience?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go this company, because there is no any job security.

I applied via Referral and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Interview was based on previous experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Any one needs to understand their market value.

Senior Area Business Manager Interview Questions asked at other Companies

Q1. Where areas should be covered current role
View answer (1)

Pharmacist Interview Questions & Answers

user image Anonymous

posted on 3 May 2019

Interview Questionnaire 

2 Questions

  • Q1. Ctc round
  • Q2. Good dress up neat maintain and give respect to senior

Interview Preparation Tips

Round: Test
Experience: Written test about medicine

Round: Resume Shortlist
Experience: Write their your experince

Round: Case Study Interview
Experience: About waht is h1p 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 (17)

Pharmacist Interview Questions & Answers

user image Anonymous

posted on 20 Feb 2021

I applied via Walk-in and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduce your self. what is your straight. How much salary you accept.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is good far me because that is my first interview. And I gain knowledge from that interview.

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 (17)

Medlife interview questions for popular designations

 Associate Pharmacist

 (5)

 Pharmacist

 (3)

 Senior IT Support Engineer

 (2)

 Customer Support Executive

 (1)

 Accounts & Finance Executive

 (1)

 Software Engineer

 (1)

 Business Analyst

 (1)

 Data Entry Operator

 (1)

Software Engineer Interview Questions & Answers

user image nerella saikrishna

posted on 9 Jan 2016

Interview Questionnaire 

12 Questions

  • Q1. Insert a node in a Linked List, if a pointer to a node(it's not a head pointer) of Linked List is given.
  • Q2. What is the Time Complexity of Binary Search and it's derivation
  • Ans. 

    Binary Search has a time complexity of O(log n) and is derived from dividing the search space in half at each step.

    • Binary Search is a search algorithm that works on sorted arrays.

    • It starts by comparing the target value to the middle element of the array.

    • If the target value is smaller, the search continues on the lower half of the array.

    • If the target value is larger, the search continues on the upper half of the array.

    • T...

  • Answered by AI
  • Q3. Write code for QuickSort
  • Ans. 

    QuickSort is a sorting algorithm that uses divide and conquer approach.

    • Choose a pivot element from the array

    • Partition the array into two sub-arrays, one with elements less than the pivot and one with elements greater than the pivot

    • Recursively apply the above steps to the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
  • Q4. Write code for Fibonacci Series using Recursion, Iteration and Dynamic Programming
  • Ans. 

    Code for Fibonacci Series using Recursion, Iteration and Dynamic Programming

    • Recursion: Define a function that calls itself with the previous two numbers in the series as arguments

    • Iteration: Use a loop to calculate the series by adding the previous two numbers in each iteration

    • Dynamic Programming: Store the previous two numbers in variables and use them to calculate the next number in the series

  • Answered by AI
  • Q5. How to implement an operation with Stacks which will be similar to Queue
  • Ans. 

    Implementing a Queue using Stacks

    • Use two stacks to implement a queue

    • Push elements onto the first stack

    • When dequeuing, pop all elements from the first stack and push onto the second stack

    • Pop the top element from the second stack to dequeue

    • If the second stack is empty, pop all elements from the first stack and push onto the second stack

  • Answered by AI
  • Q6. Write code for MergeSort
  • Ans. 

    MergeSort is a divide and conquer algorithm that sorts an array of strings.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q7. 2 types of detective ball puzzles
  • Q8. 25 Horses, 5 Tracks, 3 Fastest Puzzle
  • Q9. How the letters of a text are determined(Basically about OCR)
  • Q10. Write code for Insertion Sort and Selection Sort and find their time complexities and also the cases where their usage is efficient
  • Q11. Explain about Counting Sort
  • Ans. 

    Counting Sort is a sorting algorithm that sorts elements by counting the number of occurrences of each unique element.

    • Count the occurrences of each element in the array

    • Calculate the cumulative sum of the counts

    • Place each element in the sorted array based on its count and cumulative sum

    • Time complexity is O(n+k) where n is the number of elements and k is the range of input

    • Example: Sort an array of strings based on their

  • Answered by AI
  • Q12. When we type a part of a word in chrome, how is it able to show all the types of words, which are consisted of that part
  • Ans. 

    Chrome uses an algorithm to predict and suggest words based on user input.

    • Chrome's algorithm uses a combination of user history, bookmarks, and popular searches to predict and suggest words.

    • The algorithm also takes into account the frequency and recency of the user's input.

    • Chrome's suggestion feature is powered by Google's Autocomplete API, which uses machine learning to predict and suggest words.

    • The suggestions are di...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: First Question, at the start I was not able to answer and he gave me an hint(He asked me the insertion in an array). So, I got the idea for the insertion in Linked List and was able to answer it.
Remaining questions, I was able to answer confidently.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I was able to answer all the questions confidently, since I know the answers for them, But the last question was out of my scope and I explained based on my intuition and knowledge.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

Round: Technical Interview
Experience: I have given the answers for 1&2 questions with clear explanation. And the third question is again out of my scope and I explained this also based intuition.
Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.

General Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skill Tips: Take your own time in answering a question and be clear over your answer before telling about the code that you have written.
If you don't know an answer for some question, just keep telling him simple cases(which are valid), so that the interviewer will sometimes try to guide you through the solution.
Skills: Logical Puzzles, Algorithms And DataStructures
College Name: IIT Madras
Motivation: 1. Primary Reason: Passionate about Programming and Problem solving.
2. The profile is software Engineer.
3. You can see your idea, having an impact on the society which is possible with this type of company.
4. And a good package.
Funny Moments: Nothing Really...

Skills evaluated in this interview

Top Medlife Software Engineer Interview Questions and Answers

Q1. When we type a part of a word in chrome, how is it able to show all the types of words, which are consisted of that part
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Interview Questionnaire 

1 Question

  • Q1. Education experience

Interview Preparation Tips

Round: HR Interview
Experience: Hr interviewed written test typing test language test
Tips: Should be good in speaking all language specially Hindi

Registered Pharmacist Interview Questions asked at other Companies

Q1. what is the drug category of paracetamol..??
View answer (2)

Pharmacist Interview Questions & Answers

user image Chand Basha

posted on 15 Jul 2017

Interview Questionnaire 

1 Question

  • Q1. How many experience you have

Interview Preparation Tips

Round: HR Interview
Experience: i give all HR question very nice, finally they push 2nd round to me

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 (17)

Medlife Interview FAQs

How many rounds are there in Medlife interview?
Medlife interview process usually has 2 rounds. The most common rounds in the Medlife interview process are HR, Technical and One-on-one Round.
How to prepare for Medlife 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 Medlife. The most common topics and skills that interviewers at Medlife expect are Outbound Sales, inbound, Upsell, Digitization and Sales.
What are the top questions asked in Medlife interview?

Some of the top questions asked at the Medlife interview -

  1. When we type a part of a word in chrome, how is it able to show all the types o...read more
  2. What is the Time Complexity of Binary Search and it's derivat...read more
  3. How to implement an operation with Stacks which will be similar to Qu...read more

Tell us how to improve this page.

Medlife Interview Process

based on 6 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 424 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
MedPlus Interview Questions
3.6
 • 79 Interviews
Practo Interview Questions
3.2
 • 74 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Portea Medical Interview Questions
4.3
 • 27 Interviews
HealthKart Interview Questions
4.0
 • 25 Interviews
Medikabazaar Interview Questions
4.5
 • 12 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
View all

Medlife Reviews and Ratings

based on 533 reviews

3.7/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.4

Salary

3.1

Job security

3.4

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 533 Reviews and Ratings
Executive Pharmacist
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Pharmacist
128 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Pharmacist
126 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
65 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
62 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Medlife with

PharmEasy

3.7
Compare

Netmeds.com

3.6
Compare

Tata 1mg

3.6
Compare

Practo

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