Upload Button Icon Add office photos

Partha Dental

Compare button icon Compare button icon Compare

Filter interviews by

Partha Dental Interview Questions and Answers for Experienced

Updated 10 Mar 2024
Popular Designations

Partha Dental Interview Experiences for Experienced

4 interviews found

Orthodontist Interview Questions & Answers

user image Anonymous

posted on 6 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I appeared for an interview in Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How many cases have u handled
  • Q2. What are the special cases u handled
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 - HR 

(3 Questions)

  • Q1. What is your educational background?
  • Ans. I answered," I have graduated B.Ed having maths and physics methodologies and passed out in the year of 2020. I have done degree with B.Sc background".
  • Answered by aushani mounika
  • Q2. What do you know about advance excel?
  • Ans. I answered," I have knowledge on Ms excel and advanced Excel, like pivot table,formulas,indexmatch,vlookup,hlookup,logical functions,sum if and ifs,count if and ifs,conditional formatting,filter,find and replace,shortcut keys,removing duplicates,freeze pans,insert etc.....
  • Answered by aushani mounika
  • Q3. What is your life goal?
  • Ans. I answered,"my life goal is to work independently and not depending on others".
  • Answered by aushani mounika
Round 3 - Technical 

(2 Questions)

  • Q1. How to get data from one sheet to another work book having reference data in excel?
  • Ans. 

    To get data from one sheet to another workbook with reference data in Excel, you can use the VLOOKUP function.

    • Open both workbooks in Excel

    • In the destination workbook, select the cell where you want the data to appear

    • Type the formula =VLOOKUP(lookup_value, '[WorkbookName]SheetName'!table_array, col_index_num, range_lookup)

    • Replace [WorkbookName] with the name of the source workbook, SheetName with the name of the source ...

  • Answered by AI
  • Q2. What is your typing speed?
  • Ans. 25-30wpm
  • Answered by aushani mounika

Interview Preparation Tips

Interview preparation tips for other job seekers - I suggest those who are seeking jobs
The company partha dental skin hair corporate office is well established,good in industry, and good learning environment.

Skills evaluated in this interview

General Dentist Interview Questions & Answers

user image Dr R.Sivakumar

posted on 6 Mar 2023

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

I applied via Naukri.com and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are procedures you could do confidently
  • Q2. General treatment, rct

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on your answers and words. Don't be shy. Just be calm. Stay strong. Be smart and customized.

I applied via Indeed and was interviewed in May 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 

(5 Questions)

  • Q1. Tell me about yourself?
  • Q2. What was your last experience?
  • Q3. What was your last Company?
  • Q4. What was your previous role ?
  • Q5. What are your responsibility's in pervious Company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Self Confidence with Proper Communication Skills and Formal look

Top trending discussions

View All
Interview Hub
2w
a client servicing executive
FeedCard Image
Got a question about Partha Dental?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

30 Aptitude problems and two coding questions

  • Q1. 

    Count Inversions Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of inversions that exist in the array.

    An inversion is defined for a pair of integers in the...

  • Ans. 

    Count the total number of inversions in an integer array.

    • Iterate through the array and for each pair of elements, check if the conditions for inversion are met.

    • Use a nested loop to compare each pair of elements efficiently.

    • Keep a count of the inversions found and return the total count at the end.

  • Answered by AI
  • Q2. 

    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]
    Out...
  • Ans. 

    Find the maximum sum of any contiguous subarray within an array of integers.

    • Iterate through the array and keep track of the maximum sum of subarrays encountered so far.

    • At each index, decide whether to include the current element in the subarray or start a new subarray.

    • Use Kadane's algorithm to solve the problem efficiently.

    • Example: For array [34, -50, 42, 14, -5, 86], the maximum subarray sum is 137.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Data structure and algorithms plus object oriented problems

  • Q1. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Divide the input array into two halves recursively until each array has only one element.

    • Merge the sorted halves to produce a completely sorted array.

    • Time complexity of Merge Sort is O(n log n).

    • Example: Input: [3, 1, 4, 1, 5], Output: [1, 1, 3, 4, 5]

  • Answered by AI
  • Q2. 

    Problem Statement: Delete Node In A Linked List

    Given a singly linked list of integers and a reference to a node, your task is to delete that specific node from the linked list. Each node in the linked li...

  • Ans. 

    Given a singly linked list of integers and a reference to a node, delete the specified node from the linked list.

    • Traverse the linked list to find the node to be deleted

    • Update the pointers to skip over the node to be deleted

    • Print the modified linked list after deletion

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 miinutes
Round difficulty - Easy

Database questions and discussion about projects

  • Q1. What is a normal form in database management systems, and can you explain Boyce-Codd Normal Form (BCNF)?
  • Ans. 

    Normal forms in database management systems help in organizing data to reduce redundancy and improve data integrity.

    • Normal forms are rules used to design relational database tables to minimize redundancy and dependency.

    • Boyce-Codd Normal Form (BCNF) is a stricter version of Third Normal Form (3NF) where every determinant is a candidate key.

    • BCNF helps in eliminating anomalies like insertion, update, and deletion anomalie...

  • Answered by AI
  • Q2. What is the difference between the 'WHILE' keyword and the 'HAVING' keyword in SQL?
  • Ans. 

    WHILE is used in loops to repeatedly execute a block of code, while HAVING is used in SQL queries to filter results based on aggregate functions.

    • WHILE is used in programming languages like SQL to create loops for executing a block of code multiple times.

    • HAVING is used in SQL queries to filter results based on aggregate functions like SUM, COUNT, AVG, etc.

    • WHILE is used for iterative operations, while HAVING is used for ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Kamla Nehru Institute of Technology, Sultanpur (U.P.). I applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 70% marksUnitedHealth Group interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, SQL,Operating SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Competitive Programming
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : To be precise, mention your technical skills, achievements, dont write anything unnecessary plus write your professional summary good mention your project details in not more than 2 lines and make sure those sentences make sense to reader.
Tip 2 : Resume should be not more than one page. Write everything within one page

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why u want to be part of this company?
  • Q2. What motivates u to get a job?
  • Ans. 

    I am motivated by the opportunity to learn, contribute to a team, and make a positive impact through my work.

    • Desire for personal growth: I thrive in environments where I can learn new skills, like when I took on a challenging project that expanded my expertise.

    • Team collaboration: Working with diverse teams inspires me, as seen in my previous role where we achieved a common goal through effective teamwork.

    • Making a diffe...

  • Answered by AI
  • Q3. How u manage urself in hectic environment?
  • Ans. 

    I manage myself in a hectic environment by prioritizing tasks, staying organized, and practicing stress management techniques.

    • Prioritize tasks based on urgency and importance

    • Break down complex tasks into smaller, manageable steps

    • Use tools like to-do lists, calendars, and reminders to stay organized

    • Practice time management techniques, such as setting deadlines and allocating specific time slots for different tasks

    • Take s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not be so Over confident, Employer might trick u with his questions, But stick to u r opinion
Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via LinkedIn and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, JS and angular fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on fundamentals first
Are these interview questions helpful?

Interview Questionnaire 

7 Questions

  • Q1. Build a stack using queues and vice versa
  • Ans. 

    Stack using queues: push() - enqueue to queue1, pop() - dequeue from queue2 after transferring n-1 elements from queue1 to queue2

    • To push an element, enqueue it to queue1

    • To pop an element, transfer n-1 elements from queue1 to queue2, dequeue the last element from queue1 and swap the names of queue1 and queue2

    • Queue using stacks: enqueue() - push to stack1, dequeue() - pop from stack2 after transferring all elements from ...

  • Answered by AI
  • Q2. Implement doubly linked list
  • Ans. 

    Doubly linked list is a data structure where each node has a pointer to both previous and next nodes.

    • Create a Node class with data, prev and next pointers

    • Create a LinkedList class with head and tail pointers

    • Implement methods to add, remove and traverse nodes

  • Answered by AI
  • Q3. Asked some questions on Distributed computing, Computer Networks
  • Q4. Asked some in depth questions on my project
  • Q5. Standard HR interview like what are your strengths and weakness, why do you want to join in our company etc
  • Q6. Are you a leader? why do you think so?
  • Ans. 

    Yes, I am a leader.

    • I have experience leading teams in previous projects.

    • I am able to communicate effectively and motivate team members.

    • I am proactive in identifying and solving problems.

    • I am able to delegate tasks and trust team members to complete them.

    • I am constantly seeking to improve my leadership skills through learning and feedback.

  • Answered by AI
  • Q7. Given a case about leader managing his team and asked some questions like what would you do in that situation

Interview Preparation Tips

Round: Technical Interview
Experience: Good and peaceful interview. Questions on computer background were simple. Interviewer had a good knowledge on my project field so he asked some really good questions.
Tips: Be clear with every single point written on your CV. Be confident !!

Round: Behavioural Interview
Experience: Overall a good experience.
Tips: The interviewer want to know how you handle the situations. Clearly express your views on the situation

General Tips: Be prepared and confident
Skills: java, Computer Networks, Analytic Skills
College Name: IIT Kharagpur
Motivation: This company is number one in US market. It has revenue more than Microsoft!!

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. Whole database design of one of my project. Asked some SQL queries also
  • Q2. You are given a triangle with height h and base length b and a square of side length a. How many squares can you fit in triangle? Need to derive formula
  • Ans. 

    Formula to calculate number of squares that can fit inside a triangle

    • Calculate the area of the triangle and the area of the square

    • Divide the area of the triangle by the area of the square to get the number of squares that can fit inside the triangle

    • Formula: (h*b)/(a*a)

  • Answered by AI
  • Q3. A pattern matching problem with special characters. He wanted the full working code. Similar question: -----/
  • Q4. What is SVM (Support Vector Machines
  • Ans. 

    SVM is a machine learning algorithm used for classification and regression analysis.

    • SVM finds the best hyperplane that separates data into different classes.

    • It works by maximizing the margin between the hyperplane and the closest data points.

    • SVM can handle both linear and non-linear data using kernel functions.

    • It is widely used in image classification, text classification, and bioinformatics.

    • SVM has been shown to be ef...

  • Answered by AI
  • Q5. ANN(Artificial Neural Networks)
  • Q6. GP(Genetic Programming)
  • Q7. Differences between them and how it is better than linear regression
  • Ans. 

    Logistic regression is used for classification while linear regression is used for regression analysis.

    • Logistic regression predicts the probability of an event occurring, while linear regression predicts the value of a continuous variable.

    • Logistic regression uses a sigmoid function to map input values to a probability between 0 and 1.

    • Linear regression assumes a linear relationship between the independent and dependent ...

  • Answered by AI
  • Q8. Questions related to AI and Machine Learning
  • Q9. He also asked few java OOPS questions

Interview Preparation Tips

Round: Test
Experience: Contained basic logic based questions. 30 problems. Difficulty Level ->Medium
Duration: 60 minutes
Total Questions: 30

Round: Test
Experience: 1) 15 multiple choice questions. Difficulty level -> Medium-Hard

2) 3 programming problems: Difficulty level -> Easy

a) You have an array of integers. Find that index for which sum of all the elements before it will be equal to sum of all elements after it.

b) Implement queue using stacks.

c) Find minimum value in a binary tree.

3) There were 2 networking related questions. We need to write the answers in detail. I don’t remember the questions.
Duration: 30 minutes
Total Questions: 15

College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

11 Questions

  • Q1. Vodafone wants to launch 4G services in India. You are asked to send emails and messages to only the most eligible consumers to advertise about this service. You have every detail of your customers.Whom wi...
  • Ans. 

    Eligible customers for Vodafone's 4G service launch in India.

    • Customers with 4G compatible devices

    • Customers with high data usage

    • Customers in areas with good network coverage

    • Customers who have shown interest in technology and gadgets

    • Customers who have previously used Vodafone's high-speed data services

    • Customers who have opted-in to receive promotional messages

  • Answered by AI
  • Q2. Tell me about yourself, Strengths and Weakness
  • Ans. 

    I am a detail-oriented Business Analyst with strong analytical skills. My strengths include problem-solving and communication, while my weakness is sometimes being too detail-oriented.

    • Strengths: strong analytical skills

    • Strengths: problem-solving abilities

    • Strengths: effective communication skills

    • Weakness: being too detail-oriented

    • Weakness: sometimes struggle with delegation

  • Answered by AI
  • Q3. Why UHG; Analytics?
  • Q4. Can you work for extra hours and weekends?
  • Q5. Are you ok with working in Noida?
  • Q6. There are 100 people. 1st person has a sword. He kills 2nd person and gives the sword to 3rd person. He kills 4th and gives the sword to 5th person.99th person kill 100th person and gives the sword to 1st ...
  • Q7. There are 8 balls out of which only one ball is heavier. You have a weighing balance. In how many attempts (Min and Max) can u find the heavier ball?
  • Q8. There are 11 balls out of which only one ball is heavier. You have a weighing balance. In how many attempts (Min) can u find the heavier ball?
  • Q9. There are 'n' balls out of which only one ball is heavier. You have a weighing balance. Come up with a formula to find the heavier ball
  • Q10. How many soft drinks can be sold on a particular day in J&K?
  • Ans. 

    The number of soft drinks sold in J&K on a particular day depends on various factors such as population, demand, availability, and marketing strategies.

    • The population of J&K can be a factor in determining the potential number of soft drink sales.

    • The demand for soft drinks can vary based on factors such as weather, events, and cultural preferences.

    • The availability of soft drinks in J&K, including distribution channels a...

  • Answered by AI
  • Q11. Estimate the market size of 4K and 8K display screens
  • Ans. 

    Estimating the market size of 4K and 8K display screens.

    • Analyze sales data and market research reports

    • Consider the adoption rate of 4K and 8K technology

    • Evaluate the market demand from various industries (entertainment, gaming, advertising, etc.)

    • Assess the pricing and availability of 4K and 8K displays

    • Factor in the growth potential and competition in the market

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Difficult to complete all the questions in time. Level of questions is moderate.
Tips: Practice aptitude as much as possible. Speed and time matter a lot.
Duration: 30 minutes
Total Questions: 30

Round: Puzzle Interview
Experience: Knew answer for the first question but forgot the logic behind. Said the same to the interviewer. To ask the 4th question, 2nd and 3rd questions were asked. Easy to solve 2nd and 3rd. Was checked for my approach to getting the formula.
Tips: Practice a lot of interview questions. Most of the companies ask similar and popular questions only. Google for those

Round: Guesstimate Interview
Experience: Got carried away a couple of times. But the interviewer helped me through the questions.
Tips: Ask plenty of questions. Use latest statistics as much as possible. Give proper reasoning for the figures you utter while solving the question.

Round: Case Study Interview
Experience: Initially made a couple of mistakes while approaching the problem. But corrected them with inputs from the interviewer.
Tips: Listen to the interviewer.

Round: HR Interview
Experience: It was cool.

General Tips: Whatever you utter, say with confidence
Skills: LOGICAL THINKING ABILITIES, Logical And Structured Thinking
College Name: BITS Pilani
Motivation: It provides a right platform for a person who wants to do analytical work in medical context.
Funny Moments: Guys who stay in Pilani can stay anywhere

Partha Dental Interview FAQs

How many rounds are there in Partha Dental interview for experienced candidates?
Partha Dental interview process for experienced candidates usually has 2 rounds. The most common rounds in the Partha Dental interview process for experienced candidates are One-on-one Round, Resume Shortlist and HR.
How to prepare for Partha Dental interview for experienced candidates?
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 Partha Dental. The most common topics and skills that interviewers at Partha Dental expect are Bds, Dentistry, Hiring, Communication Skills and Customer Service.
What are the top questions asked in Partha Dental interview for experienced candidates?

Some of the top questions asked at the Partha Dental interview for experienced candidates -

  1. How to get data from one sheet to another work book having reference data in e...read more
  2. What do you know about advance exc...read more
  3. What are procedures you could do confiden...read more
What are the most common questions asked in Partha Dental HR round for experienced candidates?

The most common HR questions asked in Partha Dental interview are for experienced candidates -

  1. What are your strengths and weakness...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from other companies in Healthcare Industry

Clove Dental Interview Questions
3.9
 • 57 Interviews
Brawn Group Interview Questions
3.6
 • 19 Interviews
Dr Lal PathLabs Interview Questions
4.1
 • 155 Interviews
Aster MIMS Interview Questions
4.4
 • 6 Interviews
Yashoda Hospitals Interview Questions
3.8
 • 57 Interviews
Sarvodaya Hospital Interview Questions
3.7
 • 17 Interviews
View all

Partha Dental Reviews and Ratings

based on 151 reviews

3.7/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.4

Salary

3.3

Job security

3.4

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 151 Reviews and Ratings
Senior MDS (Any Specialty)

Hyderabad / Secunderabad,

Chennai

+1

0-4 Yrs

Not Disclosed

Senior BDS

Hyderabad / Secunderabad,

Chennai

+1

0-3 Yrs

Not Disclosed

Explore more jobs
Dentist
16 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Dental Surgeon
11 salaries
unlock blur

₹3.7 L/yr - ₹8.4 L/yr

Administration Executive
9 salaries
unlock blur

₹1.5 L/yr - ₹3.4 L/yr

Resident Doctor
8 salaries
unlock blur

₹3.2 L/yr - ₹7 L/yr

General Dentist
8 salaries
unlock blur

₹3.2 L/yr - ₹6.1 L/yr

Explore more salaries
Compare Partha Dental with other companies in Healthcare Industry

Pathcare Labs

3.5
Compare

Biotech Vision Care

3.4
Compare

Narayana Medical College & Hospital

4.0
Compare

Cytecare Cancer Hospital

4.6
Compare
write
Share an Interview