Upload Button Icon Add office photos
Engaged Employer

i

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

IKS Health Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IKS Health Software Developer Interview Questions and Answers

Updated 1 Dec 2024

IKS Health Software Developer Interview Experiences

4 interviews found

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Database query of MySQL
  • Ans. 

    MySQL database query

    • Use SELECT statement to retrieve data from tables

    • Use WHERE clause to filter data based on conditions

    • Use JOIN to combine data from multiple tables

    • Use ORDER BY to sort data in ascending or descending order

    • Use LIMIT to limit the number of rows returned

  • Answered by AI
  • Q2. About React.js what is axios call, workflow of connection made with backend

Interview Preparation Tips

Interview preparation tips for other job seekers - More Focus on database and any one technology .

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic Java concepts - Oops, collection

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2023. 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 - Technical 

(5 Questions)

  • Q1. Bout your project
  • Q2. About technical skills
  • Q3. About handling problems
  • Q4. Technical questions
  • Q5. Namdjjdjdjdjdjf

Interview Preparation Tips

Interview preparation tips for other job seekers - It was average interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. OOPs concepts basics
  • Q2. Sql basics questions
  • Q3. Project related questions mostly
  • Q4. C# dotnet question.
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Some basic personal questions

Interview Preparation Tips

Topics to prepare for IKS Health Software Developer interview:
  • OOPS
  • SQL
  • C#.Net
Interview preparation tips for other job seekers - focus on basics and mostly projects based questions the project that you made in C-DAC.

IKS Health interview questions for designations

 Junior Software Developer

 (1)

 Analyst and Software Developer

 (1)

 DOT NET Developer

 (1)

 full stack .net developer

 (1)

 Application Support Engineer

 (1)

 Senior Product Engineer

 (1)

 Senior Implementation Analyst

 (1)

 Product Engineer

 (1)

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is Rabbit MQ?
  • Ans. 

    RabbitMQ is a message broker software that implements the Advanced Message Queuing Protocol (AMQP).

    • RabbitMQ allows different software systems to communicate by sending and receiving messages.

    • It can be used to decouple different parts of a system, making it more scalable and resilient.

    • RabbitMQ supports multiple messaging protocols, including AMQP, MQTT, and STOMP.

  • Answered by AI
  • Q2. What is LINQ in .net?
  • Ans. 

    LINQ (Language Integrated Query) is a feature in .NET that allows querying data from different data sources using a uniform syntax.

    • LINQ allows querying data from collections, databases, XML, and more.

    • It provides a set of standard query operators like Where, Select, OrderBy, etc.

    • LINQ queries are written in C# or VB.NET and are type-safe.

    • Example: var result = from num in numbers where num % 2 == 0 select num;

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Hash map implementation
  • Ans. 

    Hash map is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hash map uses a hash function to map keys to indices in an array.

    • Collision handling is important in hash map implementation.

    • Common operations include adding, removing, and retrieving key-value pairs.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
  • Q2. About software development models

Skills evaluated in this interview

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

I was interviewed in Aug 2023.

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 

10 day,Numbers,Alebra

Round 3 - Technical 

(5 Questions)

  • Q1. Oop,C++.html,css,javascrept
  • Q2. What is order list
  • Ans. 

    An ordered collection of items, typically displayed in a numbered list.

    • Order list is used to display items in a specific sequence.

    • Items in an order list are typically numbered or marked with bullets.

    • Example:

      1. Item 1
      2. Item 2

  • Answered by AI
  • Q3. What is javascript
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites.

    • JavaScript is commonly used for client-side web development.

    • It can be used to add interactivity to websites, such as form validation or dynamic content.

    • JavaScript can also be used for server-side development with Node.js.

    • Examples of JavaScript frameworks/libraries include React, Angular, and Vue.

  • Answered by AI
  • Q4. What is ===operator
  • Ans. 

    === operator is a strict equality operator in JavaScript that checks if two values are equal in both value and type.

    • === operator returns true if both operands are of the same type and have the same value

    • It does not perform type coercion, unlike the == operator

    • Example: 5 === '5' will return false because the operands are of different types

  • Answered by AI
  • Q5. What is the main features of oop
  • Ans. 

    Main features of OOP include encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability to create new classes based on existing classes, inheriting their attributes and methods.

    • Polymorphism: Ability for objects of different classes to respond to the same message in different ways.

    • Example: Encapsulation - a class 'Car' wi...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Project Explain
  • Ans. 

    Project Explain is a question where you are asked to describe a project you have worked on in detail.

    • Provide an overview of the project including its purpose and goals

    • Explain the technologies used and your role in the project

    • Discuss any challenges faced and how they were overcome

    • Highlight the outcomes and impact of the project

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was easy and u can do it very easily

Round 2 - Coding Test 

Basically question were asked from tree, bst, greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep patient and do grinding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Medium to normal test only h

Round 2 - HR 

(1 Question)

  • Q1. What is your strengthest

IKS Health Interview FAQs

How many rounds are there in IKS Health Software Developer interview?
IKS Health interview process usually has 1-2 rounds. The most common rounds in the IKS Health interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for IKS Health Software Developer 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 IKS Health. The most common topics and skills that interviewers at IKS Health expect are JQuery, Javascript, MVC Framework and Web Api.
What are the top questions asked in IKS Health Software Developer interview?

Some of the top questions asked at the IKS Health Software Developer interview -

  1. Database query of My...read more
  2. About React.js what is axios call, workflow of connection made with back...read more
  3. project related questions mos...read more

Tell us how to improve this page.

IKS Health Software Developer Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more
IKS Health Software Developer Salary
based on 75 salaries
₹4.5 L/yr - ₹8.3 L/yr
15% less than the average Software Developer Salary in India
View more details

IKS Health Software Developer Reviews and Ratings

based on 20 reviews

3.8/5

Rating in categories

3.7

Skill development

3.7

Work-life balance

3.3

Salary

3.3

Job security

4.0

Company culture

2.9

Promotions

3.9

Work satisfaction

Explore 20 Reviews and Ratings
Clinical Documentation Specialist
655 salaries
unlock blur

₹2.6 L/yr - ₹8.5 L/yr

Revenue Cycle Representative
636 salaries
unlock blur

₹1 L/yr - ₹4.9 L/yr

Associate
451 salaries
unlock blur

₹1.4 L/yr - ₹4.8 L/yr

Revenue Cycle Officer
346 salaries
unlock blur

₹1.9 L/yr - ₹6.5 L/yr

Team Manager
313 salaries
unlock blur

₹3.3 L/yr - ₹10.2 L/yr

Explore more salaries
Compare IKS Health with

M*Modal

3.6
Compare

Omega Healthcare

3.7
Compare

Saince Healthtech

4.5
Compare

VeeTechnologies

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