Upload Button Icon Add office photos

Filter interviews by

Indian Dental Association Software Developer Interview Questions and Answers

Updated 22 Jul 2024

Indian Dental Association Software Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How Many types of joining in SQL
  • Ans. 

    There are four types of joins in SQL: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table, and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table, and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q2. Make Form in ASP.NET MVC include DateTime checkbox radio and drop-down list..

Interview Preparation Tips

Interview preparation tips for other job seekers - As mentioned things should learn then start interview there.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Normal questions (technical and logical question)

Round 2 - Technical 

(2 Questions)

  • Q1. On technology only
  • Q2. Some logical wuesrion also
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Prepare well on arrays, lists and its operations
  • Q2. Get to know well about your current project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops related insharitance encapsulation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic introduction and soo on.
Round 2 - Coding Test 

Question related to profile.

Round 3 - Aptitude Test 

Aptitude test questions

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via unstop and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It was medium to difficult level test

Round 2 - Technical 

(2 Questions)

  • Q1. Questions about core subjects like oops pillars
  • Q2. Questions about projects, technologies used
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join this
  • Q2. Your previous experience and questions about your background
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Anna University and was interviewed in Aug 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 - Coding Test 

Two Easy questions to be solved

Round 3 - Technical 

(3 Questions)

  • Q1. Some Technical based questions
  • Q2. It was amazing . Interviewer asked me to code for heap sort and asked me to explain.
  • Q3. Write a code for heap sort algorithm and explain it?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort works by building a binary heap from the array and then repeatedly extracting the maximum element and placing it at the end of the array.

    • The heap is maintained as a complete binary tree, where each parent node is greater than or equal to its children.

    • The time complexity of heap sort is O(n log n) and it is an in-place sor...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GE Healthcare Software Developer interview:
  • C++
  • C
  • Python
Interview preparation tips for other job seekers - Learn very well and expertise in one coding language. To be have a clear vision on theory concepts like OS, DBMS, OOPS, CN...etc.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There were 5 interview rounds.

Round 1 - Coding Test 

IT was basic question from string and array

Round 2 - One-on-one 

(2 Questions)

  • Q1. Data structure question find all leaf node from tree.
  • Ans. 

    Use depth-first search to traverse the tree and identify leaf nodes.

    • Implement depth-first search algorithm to traverse the tree.

    • Identify nodes with no children as leaf nodes.

    • Store leaf nodes in an array for retrieval.

  • Answered by AI
  • Q2. Print sentence word in reverse order without using default function. eg: input:-> I live in New York. output:-> I evil ni weN kroY.
  • Ans. 

    Reverse each word in a sentence without using default function.

    • Split the sentence into words

    • Iterate through each word and reverse it

    • Join the reversed words back into a sentence

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Programming question :Fibonacci series using recursion.
  • Ans. 

    Fibonacci series using recursion is a classic programming problem where each number is the sum of the two preceding ones.

    • Define a recursive function that takes an integer n as input

    • Base case: if n is 0 or 1, return n

    • Recursive case: return the sum of the previous two Fibonacci numbers

    • Call the function recursively with n-1 and n-2 until base case is reached

  • Answered by AI
  • Q2. Programming question: Find 1st 2nd and 3rd highest from array of integer.
  • Ans. 

    Find 1st, 2nd, and 3rd highest integers from an array.

    • Sort the array in descending order.

    • Retrieve the first three elements from the sorted array.

    • Handle cases where array length is less than 3.

  • Answered by AI
Round 4 - Mangerial Round 

(1 Question)

  • Q1. They asked Puzzle
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference b/w full and partial selectors
  • Ans. 

    Full selectors select all descendants of a specified element, while partial selectors select only direct children.

    • Full selectors use a space between the parent and child elements, while partial selectors use the > symbol.

    • Full selectors are more general and can target multiple levels of descendants, while partial selectors are more specific and target only direct children.

    • Example of full selector: div p selects all

      ele...

  • Answered by AI
  • Q2. What is Screen scraping and data scraping
  • Ans. 

    Screen scraping is extracting data from a website's HTML code, while data scraping is extracting data from various sources.

    • Screen scraping involves extracting data from the visual representation of a website, usually using automation tools like web scrapers.

    • Data scraping involves extracting data from various sources such as databases, APIs, and documents.

    • Both screen scraping and data scraping are used to collect and an...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain about pagination
  • Ans. 

    Pagination is the process of dividing content into separate pages to improve user experience and optimize performance.

    • Pagination is commonly used in websites to display a large amount of data in manageable chunks.

    • It allows users to navigate through different pages of content, typically with options like 'Next' and 'Previous'.

    • Pagination can also include features like page numbers, page size selection, and total item cou...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. General Managerial questions

Skills evaluated in this interview

Indian Dental Association Interview FAQs

How many rounds are there in Indian Dental Association Software Developer interview?
Indian Dental Association interview process usually has 1 rounds. The most common rounds in the Indian Dental Association interview process are Technical.
What are the top questions asked in Indian Dental Association Software Developer interview?

Some of the top questions asked at the Indian Dental Association Software Developer interview -

  1. How Many types of joining in ...read more
  2. Make Form in ASP.NET MVC include DateTime checkbox radio and drop-down lis...read more

Tell us how to improve this page.

Indian Dental Association Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Indian Dental Association Software Developer Salary
based on 7 salaries
₹1.8 L/yr - ₹9.5 L/yr
42% less than the average Software Developer Salary in India
View more details

Indian Dental Association Software Developer Reviews and Ratings

based on 3 reviews

3.1/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 3 Reviews and Ratings
Software Developer
7 salaries
unlock blur

₹1.8 L/yr - ₹9.5 L/yr

Project Manager
7 salaries
unlock blur

₹5.3 L/yr - ₹7 L/yr

Administration Executive
5 salaries
unlock blur

₹2.4 L/yr - ₹3.1 L/yr

Senior Graphic Designer
5 salaries
unlock blur

₹3.8 L/yr - ₹4.5 L/yr

Senior Web Designer
4 salaries
unlock blur

₹3.2 L/yr - ₹5.9 L/yr

Explore more salaries
Compare Indian Dental Association with

Apollo Hospitals

4.1
Compare

UnitedHealth

4.0
Compare

GeBBS Healthcare Solutions

3.7
Compare

Sahrudaya Healthcare (Medicover Hospitals)

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