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 DOT NET Developer Interview Questions and Answers

Updated 14 Dec 2024

IKS Health DOT NET Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between clustered and non clustered index
  • Ans. 

    Clustered index physically reorders the data in the table while non-clustered index creates a separate structure.

    • Clustered index determines the physical order of data in the table, while non-clustered index does not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered index is faster for retrieval of data, while non-clustered index is faster for retrieval of specific rows.

    • Example: Clu...

  • Answered by AI
  • Q2. Palindrome

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. About your self
  • Q2. Explain well about my self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident on your self and speak out with energy
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round was very low question easy to clear

Round 2 - Technical 

(2 Questions)

  • Q1. Three interviewer panel will be their
  • Q2. Basic of C, c++ and oops
Round 3 - HR 

(1 Question)

  • Q1. General HR interview
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Python selenium
Round 2 - One-on-one 

(2 Questions)

  • Q1. Write a query for to get emp info under the managers
  • Ans. 

    Query to retrieve employee information under managers

    • Use a JOIN statement to connect the employee and manager tables

    • Filter the results by selecting only employees who report to a manager

  • Answered by AI
  • Q2. Write a query for to get product info from order table
  • Ans. 

    Query to retrieve product info from order table

    • Use SELECT statement to retrieve data

    • Join order table with product table using product ID

    • Include necessary columns like product name, price, etc.

  • Answered by AI

I was interviewed in May 2022.

Round 1 - Coding Test 

Coding interviews test candidates' technical knowledge, coding ability, problem solving skills, and creativity, typically on a whiteboard.

Round 2 - Assignment 

A detail assignment is the temporary placement of a career employee in another established position that is vacant or from which the incumbent is absent.

Round 3 - Aptitude Test 

An aptitude test is a way for employers to assess a candidate's abilities through a variety of different testing formats. Aptitude tests will test your ability to perform tasks and react to situations at work. This includes problem-solving, prioritisation and numerical skills, amongst other things.

Round 4 - Technical 

(3 Questions)

  • Q1. Consider the tools and skills necessary for the role. Think about the basic requirements of the job. ...
  • Q2. Study helpful books and digital publications. .
  • Ans. For books about studying productively, I think you'd be hard-pressed to find better than Eat That Frog – For Students by Brian Tracy and Anna Leinberger, The Productivity Project and Hyperfocus by Chris Bailey, The Procrastination Equation by Dr Piers Steel and Deep Work by Cal Newport.
  • Answered Anonymously
  • Q3. Take the time you need
  • Ans. Said to mean that you can spend as much time as you need in doing something, or that you should slow down
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - tips for a successful job interview
1) Be punctual at your interview. It is mandatory to be on time at a job interview. ...
2) Do your research on the company. ...
3) Don't forget about nonverbal communication. ...
4) Be polite with everyone. ...
5) Be prepared for your interview.

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oops concept and MSSQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical interview with OOPS concept and SQL queries. Questions are not tough.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Code write to connected domain

Round 3 - Technical 

(1 Question)

  • Q1. Depth knowledge on Subject
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test went well

Round 2 - Coding Test 

Interveiwer asked 2 coding questions , which was quite easy

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

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Experienced in Java, C++, and Python

    • Developed a mobile app using React Native

    • Worked on a team to implement a cloud-based CRM system

    • Strong problem-solving and analytical skills

  • Answered by AI
  • Q2. Why are you looking for a change?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for a change to expand my skill set and learn new technologies.

    • Seeking a more collaborative and innovative work culture.

    • Wanting to work on larger and more complex projects.

    • Desiring better work-life balance and career advancement opportunities.

  • Answered by AI
  • Q3. Share details of your previous job.
  • Ans. 

    I worked as a Software Developer at XYZ Company.

    • Developed and maintained software applications using Java and Python.

    • Collaborated with cross-functional teams to gather requirements and design solutions.

    • Implemented new features and fixed bugs in existing software.

    • Performed code reviews and provided feedback to team members.

    • Participated in agile development processes and scrum meetings.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is the differences of const ,readonly , static keywords?
  • Ans. 

    const, readonly, and static are keywords used in programming to define variables with different characteristics.

    • const is used to define a variable that cannot be reassigned after initialization

    • readonly is used to define a variable that can only be assigned a value during initialization or in a constructor

    • static is used to define a variable that belongs to the class rather than an instance of the class

  • Answered by AI
  • Q2. What is var , dynamic keywords?
  • Ans. 

    var and dynamic are keywords used in C# for declaring variables with implicit typing.

    • var keyword allows the compiler to infer the type of the variable from the value assigned to it.

    • dynamic keyword allows the variable to be resolved at runtime instead of compile time.

    • var is used for local variables while dynamic is used for objects that implement the dynamic language runtime.

    • Example: var num = 10; dynamic obj = new Expa

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep going forward never give up

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Star and snow flake

IKS Health Interview FAQs

How many rounds are there in IKS Health DOT NET Developer interview?
IKS Health interview process usually has 1 rounds. The most common rounds in the IKS Health interview process are Technical.

Tell us how to improve this page.

IKS Health DOT NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Omega Healthcare Interview Questions
3.7
 • 434 Interviews
R1 RCM Interview Questions
3.9
 • 278 Interviews
Conduent Interview Questions
3.5
 • 193 Interviews
IntouchCX Interview Questions
2.9
 • 191 Interviews
TaskUs Interview Questions
3.3
 • 174 Interviews
Alldigi Tech Interview Questions
4.0
 • 154 Interviews
Foundever Interview Questions
3.6
 • 142 Interviews
View all
IKS Health DOT NET Developer Salary
based on 4 salaries
₹6 L/yr - ₹9.2 L/yr
37% more than the average DOT NET Developer Salary in India
View more details

IKS Health DOT NET Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

2.0

Salary

3.0

Job security

3.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Clinical Documentation Specialist
680 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Revenue Cycle Representative
635 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
451 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Revenue Cycle Officer
350 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Manager
313 salaries
unlock blur

₹0 L/yr - ₹0 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