Upload Button Icon Add office photos

Filter interviews by

Dentaweb Services Interview Questions and Answers

Updated 14 Jul 2023

Dentaweb Services Interview Experiences

1 interview found

CSR Executive Interview Questions & Answers

user image Vishnudas Menon

posted on 14 Jul 2023

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2022. There were 4 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 

Online Test Aptitude, Speed Test,

Round 3 - One-on-one 

(4 Questions)

  • Q1. Where do you live in Ahmedabad?
  • Q2. Are you ok working in night shift?
  • Q3. We can pay you only 22000 a month for next 6 month. Then we will decide, is that ok.
  • Q4. Do you have you lr own vehicle? We dont provide petrol expenses as well.
  • Ans. 

    Yes, I have my own vehicle and I am comfortable with covering my own petrol expenses.

    • I do have my own vehicle and can commute to work independently.

    • I am willing to cover my own petrol expenses for work-related travel.

    • Having my own vehicle gives me flexibility in terms of commuting to different locations for work.

    • I understand the responsibility of maintaining my own vehicle for work purposes.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Salary you must have discussed with HR executive?
  • Q2. When can you join us?

Interview Preparation Tips

Interview preparation tips for other job seekers - This office never has permanent employees, they keep changing. You should join only if think you can tolerate stupid employees. Some of them can ruin your friendship morals for lifetime by giving you negative experiences. Example lending money and crying over it when it comes to repaying.

CSR Executive Interview Questions asked at other Companies

Q1. Do you have you lr own vehicle? We dont provide petrol expenses as well.
View answer (1)

Interview questions from similar companies

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

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Why do you want to join

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
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

I applied via Naukri.com

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 

(1 Question)

  • Q1. About you and your previous company experience
  • Ans. Be cool and answer..its all about how you & the company can contribute mutually.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Take a deeep breathe and Be confident

I applied via Walk-in and was interviewed in Mar 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 

(1 Question)

  • Q1. As per experience and position they will ask questions and give some casestudy

Interview Preparation Tips

Interview preparation tips for other job seekers - Its bit difficult need to clear casesruddy
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me About yourself
  • Q2. Excel formula sum if countif
  • Ans. 

    Using Excel formula SUMIF and COUNTIF to calculate a sum based on a condition.

    • SUMIF function adds the values in a range that meet a specified condition.

    • COUNTIF function counts the number of cells in a range that meet a specified condition.

    • Combine both functions to calculate the sum based on a condition.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Different types of joins in SQL, Delete drop truncate difference
  • Ans. 

    Different types of joins in SQL, Delete drop truncate difference

    • Types of joins: Inner join, Left join, Right join, Full outer join

    • Inner join returns only matching rows from both tables

    • Left join returns all rows from left table and matching rows from right table

    • Right join returns all rows from right table and matching rows from left table

    • Full outer join returns all rows from both tables

    • Delete is used to remove specific ...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Find the type of data structure based on the operation performed. Given the order of insertion and deletion. Find whether this operation corresponds to stack/queue /priority queue
  • Ans. 

    Identify data structure based on insertion and deletion order

    • If insertion and deletion follow LIFO order, it is a stack

    • If insertion follows FIFO order and deletion follows LIFO order, it is a queue

    • If insertion and deletion follow priority order, it is a priority queue

  • Answered by AI
  • Q2. Find maximum element in an array in less dhan O(N)
  • Ans. 

    Find maximum element in an array in less than O(N)

    • Use divide and conquer approach

    • Compare maximum of left and right subarrays

    • Recursively find maximum element

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in data structures

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. About sdlc
  • Q2. About web development

Dentaweb Services Interview FAQs

How many rounds are there in Dentaweb Services interview?
Dentaweb Services interview process usually has 4 rounds. The most common rounds in the Dentaweb Services interview process are Resume Shortlist, Aptitude Test and One-on-one Round.
How to prepare for Dentaweb Services 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 Dentaweb Services. The most common topics and skills that interviewers at Dentaweb Services expect are Healthcare, MySQL, PHP, Back Office Operations and Excel.
What are the top questions asked in Dentaweb Services interview?

Some of the top questions asked at the Dentaweb Services interview -

  1. Do you have you lr own vehicle? We dont provide petrol expenses as we...read more
  2. We can pay you only 22000 a month for next 6 month. Then we will decide, is tha...read more

Tell us how to improve this page.

Dentaweb Services Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
Practo Interview Questions
3.2
 • 74 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
MediBuddy Interview Questions
3.5
 • 31 Interviews
Portea Medical Interview Questions
3.8
 • 28 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
HealthKart Interview Questions
4.0
 • 25 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
View all

Dentaweb Services Reviews and Ratings

based on 6 reviews

3.6/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.7

Salary

3.4

Job security

3.7

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 6 Reviews and Ratings
Application Support Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Dentaweb Services with

Practo

3.2
Compare

Lybrate

3.5
Compare

Portea Medical

3.8
Compare

PharmEasy

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