Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Practo Team. If you also belong to the team, you can get access from here

Practo

Compare button icon Compare button icon Compare

Filter interviews by

Practo Interview Questions, Process, and Tips

Updated 29 Jan 2025

Top Practo Interview Questions and Answers

View all 59 questions

Practo Interview Experiences

Popular Designations

74 interviews found

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

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Past Experiences
  • Q2. Future growth and lead generation

Territory Sales Manager Interview Questions asked at other Companies

Q1. Do you know abou Distributor ROI , If yes then pls explain how we calculate ROI with formula
View answer (52)

I applied via Naukri.com and was interviewed in Oct 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself?
  • Q2. What has been your role in the previous organisation?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me something about yourself?
  • Q2. What is has been your role in the previous organisation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make sure that you ask questions in the interview. Do an in depth research of the role they will be offering, ask questions basis that. They share a different job description and make you do an altogether different job. In my case the job description shared was a complete B2B sales, but when joined and training it was a complete operations role. It was like an administration job I was doing. There is a whole lot of ambiguity in the process, they will inform that you’ll be paid other than that of your conveyance if the limit of the conveyance provided exceeds which is not to be. They offer a very little amount of conveyance which is not at all worth since you’ll be doing whole lot of meetings and travelling tremendously which will quaff of your conveyance limit in a whisker.
It’s been 14 years since they have been in business and they still call themselves a start up, there is no work-life balance, be ready to get a call or start your day at 6-7am in the morning which can continue till 10-11pm at night.
If you are offered a role of TSM or a SR. TSM please avoid, they have completely changed the definition of these roles. These roles are fit only for the freshers and if you have an experience of 4-5 years and are looking for growth then it is definitely not for you. For these roles they will hire the freshers and for the same role they will hire people with experience of 4 years, 6 years, 7 years.

Senior Territory Sales Manager Interview Questions asked at other Companies

Q1. How many dealers in Chhattisgarh. A d product category
View answer (1)
Practo Interview Questions and Answers for Freshers
illustration image

I applied via Campus Placement and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Video Synthesis 

(2 Questions)

  • Q1. Self Introduction and basic questions about plannings in life
  • Q2. Describe your good time with your friends
Round 3 - Technical 

(1 Question)

  • Q1. How do you sell a particular object and how do you promote that
  • Ans. 

    To sell and promote a particular object, I focus on understanding the target audience, highlighting the unique features and benefits, and utilizing various marketing channels.

    • Research and understand the target audience and their needs

    • Highlight the unique features and benefits of the object

    • Utilize various marketing channels such as social media, email marketing, and advertising

    • Offer promotions or discounts to incentiviz...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have no job you can go with this and if you have time you can wait for other opportunities

Business Development Manager Interview Questions asked at other Companies

Q1. If your not getting support from bank or agent, then what will make further to generate business, what is the approach or strategy to be implemented during such cases to convince the customers ?
View answer (14)

BDM Sales Interview Questions & Answers

user image Anonymous

posted on 12 Apr 2022

I applied via Recruitment Consulltant

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 Resume tips
Round 2 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic question self intruduction, education back round

Interview Preparation Tips

Interview preparation tips for other job seekers - just normal question and if you have healthcare back round they will give 1st opportunity.

BDM Sales Interview Questions asked at other Companies

Q1. How will you deal an owner who is asking less commission every month and debay to pay commission.
View answer (1)

Practo interview questions for popular designations

 Business Development Manager

 (9)

 Software Engineer

 (5)

 Software Developer

 (5)

 Product Support Specialist

 (3)

 Territory Sales Manager

 (3)

 BDM Sales

 (2)

 Business Analyst

 (2)

 Senior Territory Sales Manager

 (2)

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This round had 3 coding questions of Medium to Hard level of difficulty.

  • Q1. 

    Intersection of Two Unsorted Arrays Problem Statement

    Given two integer arrays ARR1 and ARR2 of sizes 'N' and 'M' respectively, find the intersection of these arrays. The intersection is defined as the se...

  • Ans. 

    Find the intersection of two unsorted arrays while maintaining the order of elements from the first array.

    • Iterate through the elements of the first array and check if they exist in the second array.

    • Use a hash set to keep track of elements already seen in the second array for efficient lookup.

    • Maintain the order of elements from the first array while finding the intersection.

    • Handle duplicate elements in both arrays appro...

  • Answered by AI
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to determine the total number of ways to make change for a specified value using given denominations.

    • Create a function that takes in the number of denominations, the denominations array, and the value to make change for as input

    • Use dynamic programming to iterate through all possible combinations of coins to make the specified value

    • Keep track of the number of ways to make change for each value from 0 to the ...

  • Answered by AI
  • Q3. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. 

    Find the length of the longest substring without repeating characters in a given string.

    • Use a sliding window approach to keep track of the longest substring without repeating characters.

    • Use a hashmap to store the index of each character in the string.

    • Update the start index of the window when a repeating character is encountered.

    • Calculate the maximum length of the substring as you iterate through the string.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round started with 2 coding questions and then moved on to some more questions from OOPS.

  • Q1. 

    Palindrome Linked List Problem Statement

    You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true if it is a pali...

  • Ans. 

    Check if a given singly linked list is a palindrome or not.

    • Traverse the linked list to find the middle element using slow and fast pointers.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to determine if it's a palindrome.

  • Answered by AI
  • Q2. 

    Search Element in a Rotated Sorted Array

    Given a sorted array that has been rotated, the task is to find the index of a specific element. The array is initially sorted in ascending order and then rotated ...

  • Ans. 

    Search for an element in a rotated sorted array efficiently in O(logN) time complexity.

    • Implement binary search to find the pivot point where rotation occurs.

    • Divide the array into two subarrays and perform binary search on the appropriate subarray.

    • Handle cases where the element may be in the left or right subarray after rotation.

    • Return the index of the element if found, else return -1.

  • Answered by AI
  • Q3. What is a static variable in C?
  • Ans. 

    A static variable in C is a variable that retains its value between function calls.

    • Declared using the 'static' keyword

    • Retains its value throughout the program's execution

    • Useful for maintaining state across function calls

  • Answered by AI
  • Q4. What is the difference between abstraction and inheritance?
  • Ans. 

    Abstraction is hiding the implementation details while inheritance is a mechanism for creating new classes using existing classes.

    • Abstraction focuses on hiding the internal implementation details of a class, allowing the user to only interact with the necessary information.

    • Inheritance allows a class to inherit properties and behavior from another class, promoting code reusability and creating a hierarchy of classes.

    • Abs...

  • Answered by AI
Round 3 - Video Call 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had questions mainly from HTML,CSS and JavaScript as I had mentioned some Frontend Projects in my resume so the interviewer wanted to check my skills on those. He also asked me some SQL queries and a simple coding question towards the end of the interview.

  • Q1. What is event bubbling in JavaScript?
  • Ans. 

    Event bubbling is the process where an event triggered on a child element is propagated up through its parent elements.

    • In event bubbling, when an event occurs on a child element, it first runs the event handlers on the child element, then on its parent, then all the way up to the top level of the DOM.

    • Event bubbling allows for delegation of event handling to a parent element, reducing the number of event listeners neede...

  • Answered by AI
  • Q2. How can you optimize the loading of website assets?
  • Ans. 

    Optimizing website asset loading involves minimizing file sizes, reducing HTTP requests, utilizing caching, and prioritizing critical resources.

    • Minimize file sizes by compressing images, scripts, and stylesheets.

    • Reduce HTTP requests by combining files, using sprites, and lazy loading non-essential resources.

    • Utilize browser caching to store static assets locally for faster subsequent page loads.

    • Prioritize critical resou...

  • Answered by AI
  • Q3. In how many ways can you display HTML elements?
  • Ans. 

    There are multiple ways to display HTML elements, including inline, block, inline-block, and flex.

    • HTML elements can be displayed as inline, which allows them to flow with surrounding content.

    • Block elements take up the full width available and start on a new line.

    • Inline-block elements are displayed as blocks, but flow like inline elements.

    • Flexbox allows for more advanced layout options, such as aligning items and distri

  • Answered by AI
  • Q4. 

    Check if Two Strings are Anagrams

    Anagrams are words or names that can be formed by rearranging the letters of another word. For instance, 'spar' can be rearranged to form 'rasp', making them anagrams.

    E...

  • Ans. 

    Check if two strings are anagrams by rearranging their letters.

    • Create a frequency map of characters for both strings

    • Compare the frequency maps to check if they are equal

    • Return True if the frequency maps are equal, else False

  • Answered by AI
Round 4 - HR 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This is a cultural fitment testing round. HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. What is something about you that is not included in your resume?
  • Q2. Why should we hire you?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPracto interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, JavaScript, HTML, CSS, OOPSTime required to prepare for the interview - 4 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

Top Practo Software Developer Interview Questions and Answers

Q1. Intersection of Two Unsorted Arrays Problem Statement Given two integer arrays ARR1 and ARR2 of sizes 'N' and 'M' respectively, find the intersection of these arrays. The intersection is defined as the set of elements common to both arrays.... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top Practo Interview Questions

HR Executive Interview Questions & Answers

user image Anonymous

posted on 28 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Newspaper Ad and was interviewed before Oct 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. General Discussion with regard to my education and what I know about the Human resources department
Round 3 - One-on-one 

(1 Question)

  • Q1. This was a general discussion with the Head of Talent Acquisition

HR Executive Interview Questions asked at other Companies

Q1. What do you know about Labor Law
View answer (6)

Jobs at Practo

View all
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Self introduction
Round 2 - One-on-one 

(1 Question)

  • Q1. About job profile and experience

Manager - Finance Operations Interview Questions asked at other Companies

Q1. Would you like to work in GBS environment
View answer (1)

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

Interview Questionnaire 

3 Questions

  • Q1. Explain about your previous job role?
  • Q2. Tell me about yourself
  • Q3. Why you left your previous company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't sttuter and talk confidently as fast as you can go, talk about your previous job, include a story like how you started there and how it ended so you can easily engage your listener , provide examples from that job as how you will be a significant contribution to this next company, tell them you're always ready to work for more than what you're paid for. Tell them you're honoured to work for a very well know brand like practo and medical field esp. Tell them you pick this company as you have seen a lot of postive reviews over the internet. Show them you have an edge over others by thinking out of the box.

Inside Sales Executive Interview Questions asked at other Companies

Q1. Sell me an android phone, if I am already having a iPhone.
View answer (1)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Introduction about yourself
Round 2 - Behavioral 

(1 Question)

  • Q1. About company and previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Please donot join this company and don't waste your carrier. Join other company and work

Product Support Specialist Interview Questions asked at other Companies

Q1. How will you explain the new product in simple terms? give example
View answer (1)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Introduction about yourself
Round 2 - Group Discussion 

Introduction of your self
Experience of previous company
Skills and knowledge

Round 3 - Final round 

(1 Question)

  • Q1. About salary discussion and further process

Interview Preparation Tips

Interview preparation tips for other job seekers - Please donot join this company. You will suffer a lot from managers politics everywhere mainly in Patient experience and other process are also getting shutting down
Contribute & help others!
anonymous
You can choose to be anonymous

Practo Interview FAQs

How many rounds are there in Practo interview?
Practo interview process usually has 2-3 rounds. The most common rounds in the Practo interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for Practo 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 Practo. The most common topics and skills that interviewers at Practo expect are Healthcare, Sales, Management, Billing and MS Office.
What are the top questions asked in Practo interview?

Some of the top questions asked at the Practo interview -

  1. You have to write a function for dice which will return number from 1-6 with eq...read more
  2. Given three arrays sorted in non-decreasing order, print all common elements in...read more
  3. Given an array of integers which can be in one of four order – i.Increasing 2...read more
How long is the Practo interview process?

The duration of Practo interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

GMR Group

LIST OF COMPANIES

GMR Group

Overview

SALARIES

GMR Group

INTERVIEWS

Practo

No Interviews

COMPANY BENEFITS

Kellton

No Benefits

SALARIES

Kellton

No Salaries

INTERVIEWS

MokshTech

No Interviews

REVIEWS

Kellton

No Reviews

Tell us how to improve this page.

Practo Interview Process

based on 43 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
HealthifyMe Interview Questions
3.0
 • 47 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Portea Medical Interview Questions
4.3
 • 28 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
Mfine Interview Questions
3.6
 • 24 Interviews
Medgenome Labs Interview Questions
3.8
 • 17 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
CURE India Interview Questions
4.7
 • 2 Interviews
View all

Practo Reviews and Ratings

based on 498 reviews

3.2/5

Rating in categories

2.9

Skill development

3.0

Work-life balance

3.0

Salary

2.4

Job security

3.0

Company culture

2.5

Promotions

2.9

Work satisfaction

Explore 498 Reviews and Ratings
Business Analyst

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Enterprise Sales Manager

Pune,

Chennai

3-7 Yrs

₹ 7-11 LPA

Explore more jobs
Business Development Manager
244 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Support Specialist
137 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Sales Manager
114 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
62 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Area Manager
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Practo with

Lybrate

3.5
Compare

Mfine

3.6
Compare

DocsApp

3.9
Compare

Portea Medical

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