Upload Button Icon Add office photos

Filter interviews by

NanoHealth Key Account Manager Interview Questions and Answers

Updated 30 Oct 2024

NanoHealth Key Account Manager Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Basic about previous experience
  • Q2. Basics about Pre
Round 2 - HR 

(2 Questions)

  • Q1. Ctc and esops negotiation
  • Q2. Nothing great nothing

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2023. 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 - Aptitude Test 

Basic aptitude test organized prescribe

Round 3 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself mock interview

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Sales Pitch on Anything, which is in front of you
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to join Cogoport?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Na human behaviour test, aptitude

Round 2 - HR 

(1 Question)

  • Q1. Info, experience and about sales salary
Round 3 - One-on-one 

(1 Question)

  • Q1. Sales interview, skills, tough questions abot sales
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Health tech knowledge needed
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2022. 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 - Aptitude Test 

Normal general knowledge questions

Round 3 - One-on-one 

(5 Questions)

  • Q1. Questions are been put up by your resume
  • Q2. Tell me about your self
  • Q3. Why do you want to join this company
  • Q4. What does this company do
  • Q5. If we hire you what we can expect from you

Interview Preparation Tips

Interview preparation tips for other job seekers - Please Please Please does not work with Cogoport, this company have no respect for employees, each day you will be get harassed by managers, no work culture, no proper work management, they will be offering you good package but they will be firing you after 1-2 month, so no use to getting hired in cogoport, you will waste your future and time in this company.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Personality test + aptitude tes + logical reasoning

Round 3 - One-on-one 

(5 Questions)

  • Q1. Just random questions on past experience
  • Q2. Tell me about your self
  • Q3. What have you heard about cogoport
  • Q4. Why Key account manager
  • Q5. What subject i liked most in mba

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay away from Cogoport
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude test is basically a kind of preliminary round where behavioral study is done along with logical and mathematical kniwledge is tested.

Round 2 - Technical 

(3 Questions)

  • Q1. What is FTL, LCL, FCL?
  • Ans. 

    FTL stands for Full Truck Load, LCL stands for Less than Container Load, FCL stands for Full Container Load.

    • FTL refers to a shipment that occupies an entire truck or trailer.

    • LCL refers to a shipment that does not fill a standard container and is combined with other shipments in the same container.

    • FCL refers to a shipment that fills an entire container and is not shared with other shipments.

    • Example: Shipping a large qua...

  • Answered by AI
  • Q2. Tell me about yourself
  • Q3. Basic knowledge of supply chain
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. Why should we hire you?
  • Q3. Why made you interview for this company?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

60 minutes and 100 questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Strength and weakness

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

NanoHealth Interview FAQs

How many rounds are there in NanoHealth Key Account Manager interview?
NanoHealth interview process usually has 2 rounds. The most common rounds in the NanoHealth interview process are One-on-one Round and HR.
What are the top questions asked in NanoHealth Key Account Manager interview?

Some of the top questions asked at the NanoHealth Key Account Manager interview -

  1. Ctc and esops negotiat...read more
  2. Nothing great noth...read more
  3. Basics about ...read more

Tell us how to improve this page.

NanoHealth Key Account Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

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
Cogoport Interview Questions
2.9
 • 53 Interviews
HealthifyMe Interview Questions
3.0
 • 47 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
MyCaptain Interview Questions
3.2
 • 40 Interviews
Portea Medical Interview Questions
3.8
 • 28 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
View all
General Manager Operations
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android App Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare NanoHealth with

Portea Medical

3.8
Compare

PharmEasy

3.7
Compare

Practo

3.2
Compare

Lybrate

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