Upload Button Icon Add office photos
Engaged Employer

i

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

Narayana Health Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Narayana Health Software Developer Interview Questions and Answers

Updated 18 Aug 2024

Narayana Health Software Developer Interview Experiences

1 interview found

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 questions from similar companies

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 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 

(6 Questions)

  • Q1. React hooks, Explain using code
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components

    • useState() is a hook that allows you to add state to functional components

    • useEffect() is a hook that allows you to perform side effects in functional components

    • useContext() is a hook that allows you to use the context API in functio

  • Answered by AI
  • Q2. Factory Patterns?
  • Q3. Liskov Substitution Principle
  • Ans. 

    Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Subtypes must be substitutable for their base types.

    • Derived classes must be able to replace their base classes without affecting the program's behavior.

    • Violating this principle can lead to unexpected behavior and errors in the code.

    • Example: If a program expec...

  • Answered by AI
  • Q4. Oops Concept and give examples
  • Ans. 

    Oops concept is a programming paradigm that focuses on objects and classes.

    • Oops stands for Object-Oriented Programming

    • Key concepts include inheritance, encapsulation, polymorphism, and abstraction

    • Examples: Class Car with properties like make, model, and methods like start(), stop()

    • Example: Inheritance - Class SUV extends Car and adds property numSeats

  • Answered by AI
  • Q5. JQuery - Ajax mechanisms
  • Q6. Docker and Kubernetes - Azure concepts

Skills evaluated in this interview

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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Input output pointers related
  • Q2. Polymorphism,casting class,
Round 2 - One-on-one 

(1 Question)

  • Q1. Data structure used for snake and ladder
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
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

I was interviewed 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...

  • 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...
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...

  • 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...

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)?
  • Q2. What is the difference between the 'WHILE' keyword and the 'HAVING' keyword in SQL?

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

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

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Template concept in c++
  • Q2. Questions related to string

Narayana Health Interview FAQs

How many rounds are there in Narayana Health Software Developer interview?
Narayana Health interview process usually has 2 rounds. The most common rounds in the Narayana Health interview process are Aptitude Test and Technical.
What are the top questions asked in Narayana Health Software Developer interview?

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

  1. Some logical wuesrion a...read more
  2. On technology o...read more

Tell us how to improve this page.

Narayana Health Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Apollo Hospitals Interview Questions
4.1
 • 341 Interviews
Max Healthcare Interview Questions
4.1
 • 135 Interviews
Fortis Healthcare Interview Questions
4.0
 • 125 Interviews
UnitedHealth Interview Questions
4.0
 • 83 Interviews
GE Healthcare Interview Questions
4.1
 • 72 Interviews
View all

Fast track your campus placements

View all
Narayana Health Software Developer Salary
based on 6 salaries
₹4 L/yr - ₹9.2 L/yr
16% less than the average Software Developer Salary in India
View more details

Narayana Health Software Developer Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
Staff Nurse
414 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Deputy Manager
206 salaries
unlock blur

₹3.6 L/yr - ₹13.3 L/yr

Senior Executive
167 salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Executive
151 salaries
unlock blur

₹1.2 L/yr - ₹5.1 L/yr

Pharmacist
86 salaries
unlock blur

₹1.6 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Narayana Health with

Apollo Hospitals

4.1
Compare

Fortis Healthcare

4.0
Compare

Manipal Hospitals

4.1
Compare

Columbia Asia

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