Upload Button Icon Add office photos

Filter interviews by

Indian Institute Of Medical Representative Medical Representative Interview Questions and Answers

Updated 25 Jul 2021

Indian Institute Of Medical Representative Medical Representative Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Introduction
  • Q2. Pharmacology related
  • Q3. Body System related
  • Q4. Marketing and Selling
  • Q5. Hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Medical Representative

Interview questions from similar companies

I applied via Company Website and was interviewed in Apr 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 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and hardly WORKED, Apne kaam ke prati powerful hona.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - HR 

(2 Questions)

  • Q1. Few questions on understanding of hospital marketing
  • Q2. Few questions on hospital services and operations

I applied via Recruitment Consulltant and was interviewed in Nov 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 

(2 Questions)

  • Q1. What is good? and the staff answer okay are ww?
  • Ans. And nice to revert annd good to tgo eight
  • Answered Anonymously
  • Q2. Yes awkard and good tosee and fine

Interview Preparation Tips

Interview preparation tips for other job seekers - good to go and go for the high always and do weel vallahh
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed before 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 - One-on-one 

(2 Questions)

  • Q1. Which past projects you have handled
  • Q2. How many community you have connected from your tenure

Software Engineer Interview Questions & Answers

Medlife 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

I applied via Referral and was interviewed in Jan 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Will you be able to commute on a daily basis
  • Ans. 

    Yes, I am able to commute on a daily basis.

    • I have reliable transportation to commute daily

    • I live within a reasonable distance from the office

    • I am willing to adjust my schedule if needed

  • Answered by AI
  • Q2. MS Excel
  • Q3. Pie Charts
  • Q4. Formulas used in excel
  • Ans. 

    Formulas used in Excel

    • Excel has a wide range of formulas for various calculations

    • Common formulas include SUM, AVERAGE, MAX, MIN, COUNT

    • Formulas can be used for mathematical operations, logical functions, text manipulation, etc.

    • Examples: =SUM(A1:A10), =IF(B1>10, "Yes", "No"), =CONCATENATE(A1, " ", B1)

  • Answered by AI

Interview Preparation Tips

General Tips: I was asked to wait for sometime for my interview to start.
The HR interview round was held in 5 minutes but it took them 20 minutes to prepare for the technical round.
After that i was asked to wait, but after waiting for 1 and a half hours it turns out that I was free for the day and the result will be given to me the next day.

Skills: Excel Skills, Communication
Duration: <1 week

Skills evaluated in this interview

I applied via Referral and was interviewed in Jan 2018. There were 4 interview rounds.

Interview Preparation Tips

General Tips: I went through two phases of interview, first was HR round which lasted for 10 minutes. After this a technical interview was taken. Interviewer asked me about MS Excel and told me to wait for the result.
But after 2 hours it turns out that i was free for the day and the result will be conveyed to me via call.
Skills: Excel Skills, Communication
Duration: <1 week

I applied via Other and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Arrange odd and even numbers in an array , so that all even are placed on RHS and odd on LHS
  • Ans. 

    Arrange odd and even numbers in an array, even on RHS and odd on LHS.

    • Create two pointers, one at the start and one at the end of the array.

    • Swap the elements at the pointers if they are in the wrong position.

    • Continue swapping until the pointers meet in the middle.

  • Answered by AI
  • Q2. Evaluate BODMAS expression
  • Ans. 

    BODMAS is a mathematical rule used to evaluate expressions with multiple operators.

    • BODMAS stands for Brackets, Orders, Division, Multiplication, Addition, and Subtraction.

    • It is used to determine the order in which operations are performed in an expression.

    • Brackets are evaluated first, followed by orders (exponents and roots), then division and multiplication, and finally addition and subtraction.

    • For example, in the exp...

  • Answered by AI
  • Q3. Infix and Post fix expression
  • Q4. Android questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DS Algo, and Android core fundamentals.

Skills evaluated in this interview

Round 1 - One-on-one 

(3 Questions)

  • Q1. Remove duplicates from array
  • Ans. 

    Remove duplicates from array of strings

    • Create a new empty array

    • Loop through the original array

    • Check if the current element exists in the new array

    • If not, add it to the new array

    • Return the new array

  • Answered by AI
  • Q2. Check if num is int or not
  • Ans. 

    Use isinstance() function to check if num is int or not.

    • Use isinstance(num, int) to check if num is an instance of int class.

    • This function returns True if num is an instance of int class, else False.

    • Example: isinstance(5, int) will return True.

    • Example: isinstance(5.0, int) will return False.

  • Answered by AI
  • Q3. JS questions and fundamentalss

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn JS concepts and DSA really well.

Skills evaluated in this interview

Indian Institute Of Medical Representative Interview FAQs

What are the top questions asked in Indian Institute Of Medical Representative Medical Representative interview?

Some of the top questions asked at the Indian Institute Of Medical Representative Medical Representative interview -

  1. Marketing and Selli...read more
  2. Pharmacology relat...read more
  3. Body System relat...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Apollo Hospitals Interview Questions
4.1
 • 342 Interviews
Whitehat jr Interview Questions
3.5
 • 262 Interviews
Unacademy Interview Questions
3.0
 • 206 Interviews
upGrad Interview Questions
3.7
 • 198 Interviews
Vedantu Interview Questions
3.3
 • 184 Interviews
NxtWave Interview Questions
3.8
 • 177 Interviews
Chegg Interview Questions
4.1
 • 155 Interviews
View all
17% less than the average Medical Representative Salary in India
View more details

Indian Institute Of Medical Representative Medical Representative Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.8

Skill development

5.0

Work-life balance

4.7

Salary

4.8

Job security

4.7

Company culture

4.7

Promotions

4.7

Work satisfaction

Explore 2 Reviews and Ratings
Medical Representative
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Medical Sales Representative
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Marketing Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Officer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

MR
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Indian Institute Of Medical Representative with

Medvarsity Online

3.2
Compare

MediBuddy

3.5
Compare

Medlife

3.7
Compare

PharmaSecure

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