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 Questionnaire 

9 Questions

  • Q1. What is event bubbling?
  • Ans. 

    Event bubbling is the propagation of an event from the innermost child element to the outermost parent element.

    • Events triggered on a child element will also trigger on its parent elements

    • The event travels up the DOM tree until it reaches the document object

    • Can be stopped using event.stopPropagation()

    • Can be useful for event delegation

  • Answered by AI
  • Q2. Difference between .on(‘click’,function() and .click(function())
  • Ans. 

    The .on('click',function() is a more flexible method than .click(function())

    • The .on() method can handle multiple events and selectors

    • The .click() method can only handle one event and one selector

    • The .on() method can also handle dynamically added elements

    • The .click() method cannot handle dynamically added elements

  • Answered by AI
  • Q3. Write a function to check if two strings are anagram or not
  • Ans. 

    Function to check if two strings are anagram or not

    • Create two character arrays from the strings

    • Sort the arrays

    • Compare the sorted arrays

  • Answered by AI
  • Q4. Given an array of integers which can be in one of four order – i.Increasing 2.Decreasing 3.decreasing then increasing 4.increasing then decreasing .Write a function to find the type of array
  • Ans. 

    Function to determine the order of integers in an array.

    • Check first and last element to determine if increasing or decreasing

    • Check for inflection point to determine if order changes

    • Return order type as string

  • Answered by AI
  • Q5. How can you improve the performance of a site.(Only frontend)
  • Ans. 

    Optimize images, minify code, reduce HTTP requests, use caching, and lazy loading.

    • Optimize images using compression and appropriate file formats

    • Minify code to reduce file size and improve load times

    • Reduce HTTP requests by combining files and using sprites

    • Use caching to store frequently accessed data locally

    • Implement lazy loading to defer loading of non-critical resources

  • Answered by AI
  • Q6. Design database schema for a movie site.Where user can watch the movie,genre of movie,give ratings and recommended movies to user.Also Write an algorithm to show recommended movies to user
  • Ans. 

    Design a database schema for a movie site with user ratings and recommendations.

    • Create tables for movies, users, ratings, and recommendations

    • Use foreign keys to link tables

    • Include columns for movie genre and user watch history

    • Algorithm for recommendations can use user watch history and ratings to suggest similar movies

  • Answered by AI
  • Q7. By tossing a coin we can get either head or tail, i have a function toss() which return head or tail with equal probability
  • Q8. You have to write a function for dice which will return number from 1-6 with equal probability. constraints : you can not use random function, you can use only toss function
  • Ans. 

    Function to simulate dice roll with equal probability without using random function

    • Use a toss function that returns either 0 or 1 with equal probability

    • Call the toss function 3 times and convert the result to a binary number

    • If the binary number is greater than 0 and less than or equal to 6, return it

    • If the binary number is greater than 6, repeat the process

  • Answered by AI
  • Q9. Write a query to fetch duplicate email from table?
  • Ans. 

    Query to fetch duplicate email from table

    • Use GROUP BY and HAVING clause to filter out duplicates

    • SELECT email, COUNT(*) FROM table_name GROUP BY email HAVING COUNT(*) > 1;

    • This will return all the duplicate emails in the table

  • Answered by AI

Interview Preparation Tips

Skills: data structure, Algorithm
College Name: na
Motivation: Practo is the market leader in digital healthcare management with millions of consumers using our products to find doctors, book appointments and manage their healthcare efficiently. Practo Ray is the platform of choice for the vast majority of doctors and clinics deploying cloud based clinic management solution.I recently got an offer from Practo, here is my interview experience:

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Coding Test 

It was a 1.5-hour coding test. We were given three DSA questions to solve. Two of them were Easy to Medium problems and the third one was Medium to Hard question.

Round 2 - Technical 

(6 Questions)

  • Q1. Kotlin interview questions what you'll find in medium posts. (Medium diff)
  • Q2. Android Interview Questions that you'll find the medium posts. (Medium Diff)
  • Q3. SOLID principle
  • Q4. DSA 1 (Whiteboard): A two-pointer array question.
  • Q5. DSA 2 (Whiteboard): Leetcode jump-game question
  • Q6. Followup on space and time complexity and improvements.
Round 3 - System Design 

(1 Question)

  • Q1. Design a video streaming app's search page
  • Ans. 

    The search page of a video streaming app should allow users to easily search for and discover content.

    • Include a search bar at the top for users to enter keywords or phrases

    • Display relevant search results in a grid or list format

    • Provide filters or sorting options to refine search results

    • Include thumbnails, titles, and brief descriptions of the search results

    • Allow users to click on search results to view more details or

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. General behavioural questions. No tech questions.
  • Q2. Past experiences/Past projects/Past achievements

Interview Preparation Tips

Topics to prepare for Practo Senior Android Developer interview:
  • Android Basics
  • Java
  • Kotlin
  • solid principles
  • OOPS
  • DSA
  • Problem Solving
Interview preparation tips for other job seekers - The interview process was smooth. Non-virtual. Interviewers were very friendly.

Skills evaluated in this interview

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)
Practo Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 DSA questions with in one hour.

Round 2 - Technical 

(2 Questions)

  • Q1. Merge two binary trees
  • Ans. 

    Merge two binary trees by summing up the values of corresponding nodes

    • Traverse both trees simultaneously and sum up the values of corresponding nodes

    • If a node exists in only one tree, add it to the merged tree as is

    • Recursively merge the left and right subtrees

  • Answered by AI
  • Q2. Explain project
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented a RESTful API using Node.js and Express for back-end functionality

    • Utilized MongoDB for database storage and retrieval

    • Incorporated user authentication and authorization using JWT tokens

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why should we hire you.
  • Ans. 

    I am a dedicated and quick learner with strong problem-solving skills and a passion for software development.

    • Strong problem-solving skills demonstrated through previous projects and coding challenges.

    • Quick learner who can adapt to new technologies and tools efficiently.

    • Passionate about software development and constantly seeking to improve my skills.

    • Dedicated to delivering high-quality code and meeting project deadline...

  • Answered by AI

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you scale a business
  • Ans. 

    Scaling a business involves strategic planning, efficient resource allocation, and continuous growth.

    • Identify key growth opportunities and target markets

    • Invest in technology and automation to streamline processes

    • Build a strong team and delegate responsibilities effectively

    • Establish partnerships and collaborations to expand reach

    • Monitor performance metrics and adjust strategies accordingly

  • Answered by AI
  • Q2. PRIOR EXPERIANCE
Round 2 - One-on-one 

(1 Question)

  • Q1. Similar to round one

Interview Preparation Tips

Interview preparation tips for other job seekers - IT s a good company to work for

Zonal Sales Manager Interview Questions asked at other Companies

Q1. How to digital transaction helps in economical growth?
View answer (6)

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)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Self intro and basic questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. About previous company and role and responsibilities
  • Q2. CRM KNOWLEDGE about previous used software

Interview Preparation Tips

Interview preparation tips for other job seekers - Practo is a good company ,you can join and cherish

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)

Get interview-ready with Top Practo Interview Questions

Java Developer Interview Questions & Answers

user image atchum naidu kadagala

posted on 5 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They have conducted on their own platform

Round 2 - Technical 

(2 Questions)

  • Q1. Spring boot annotations
  • Q2. Java questions , hashmap
Round 3 - System design 

(2 Questions)

  • Q1. Not sure at all
  • Q2. Unable to recollect

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

Jobs at Practo

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Coding test based on Binary trees, String Manipulation

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)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Salesforce Developer with 5 years of experience in designing and implementing custom solutions.

    • 5 years of experience in Salesforce development

    • Proficient in designing and implementing custom solutions

    • Strong knowledge of Apex, Visualforce, and Lightning components

    • Experience in integrating Salesforce with external systems

    • Certified Salesforce Developer

  • Answered by AI
  • Q2. About your sales revenue

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2024

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

(2 Questions)

  • Q1. Your overall experience
  • Q2. Why Practo and reason to change the JOB

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

SDE Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Simple dsa ques and sql too

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself?
  • Q2. Introduction about me

Operations Analyst Interview Questions asked at other Companies

Q1. What is the entry of interest received in advance?
View answer (10)
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

JOBS

Concentrix Catalyst

No Jobs

LIST OF COMPANIES

Kellton

Overview

INTERVIEWS

Practo

No Interviews

SALARIES

Aptroid Technologies

SALARIES

Aptroid Technologies

JOBS

Kellton

No Jobs

SALARIES

Concentrix Catalyst

INTERVIEWS

GMR Group

No Interviews

INTERVIEWS

Practo

No Interviews

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