Upload Button Icon Add office photos

Filter interviews by

NextGen Healthcare Senior Software Engineer Interview Questions and Answers

Updated 3 Jan 2024

NextGen Healthcare Senior Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jan 2023. There were 5 interview rounds.

Round 1 - Coding Test 

Haker rank coding test on c# and sql

Round 2 - One-on-one 

(1 Question)

  • Q1. Ist technical interview
Round 3 - One-on-one 

(1 Question)

  • Q1. 2nd technical interview
Round 4 - Behavioral 

(1 Question)

  • Q1. This is technical with manager round
Round 5 - HR 

(1 Question)

  • Q1. HR round ,in this round HR asked about your strength and comming 5 years where you want to reach.

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for very good and technical sound candidate.
They flow the process as well

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. DSA Array, String and Hashmap questions
  • Q2. Functional programming java questions
Round 2 - Technical 

(5 Questions)

  • Q1. Spring and spring boot related
  • Q2. HLD scenario level questions
  • Q3. SQL queries nested and joins
  • Q4. DB related questions and experience level questions and previous project situations related questions
  • Q5. Security level questions like XSS vulnerability and SQL injection
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Backend Questions regarding
  • Q2. UI Questions regarding Angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Explain the technology stack you have been working on.
  • Ans. 

    I have been working on a technology stack that includes Java, Spring Boot, Angular, and MySQL.

    • Java programming language for backend development

    • Spring Boot framework for building and deploying Java applications

    • Angular framework for frontend development

    • MySQL database for data storage and retrieval

  • Answered by AI
  • Q2. Deep dive into the .Net framework and its use in developing microservices using Web APIs
  • Ans. 

    The .Net framework is a powerful tool for developing microservices using Web APIs.

    • The .Net framework provides a set of libraries and tools for building scalable and reliable microservices.

    • Web APIs in .Net allow for easy communication between different services and clients.

    • Features like dependency injection and middleware in .Net make it easier to develop and maintain microservices.

    • Examples of popular frameworks for bui...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain how you would troubleshoot a network bottleneck in your web API application hosted in a public cloud like Azure or AWS.
  • Ans. 

    To troubleshoot a network bottleneck in a web API application hosted in a public cloud like Azure or AWS, one can analyze network traffic, monitor server performance, and optimize resource allocation.

    • Use network monitoring tools to analyze traffic patterns and identify potential bottlenecks.

    • Monitor server performance metrics such as CPU usage, memory usage, and disk I/O to pinpoint any resource constraints.

    • Optimize res...

  • Answered by AI
  • Q2. Explain the usage of Azure service fabric clusters
  • Ans. 

    Azure Service Fabric clusters are used to deploy and manage microservices-based applications on Microsoft Azure.

    • Azure Service Fabric clusters provide a platform for deploying and managing scalable and reliable microservices.

    • They offer automatic scaling, rolling upgrades, and health monitoring for microservices.

    • Service Fabric clusters can be used to deploy stateless or stateful microservices.

    • They support multiple progra...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java,oop, microservice, JPA
  • Q2. Spring boot , MySQL
Round 2 - Technical 

(2 Questions)

  • Q1. Java, spring boot
  • Q2. Microservice, rest api
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 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 

(2 Questions)

  • Q1. Comparison between REST and SOAP
  • Ans. 

    REST is lightweight and flexible, while SOAP is more structured and standardized.

    • REST uses HTTP methods for communication, while SOAP uses XML messaging.

    • REST is better suited for mobile and web applications, while SOAP is better for enterprise-level applications.

    • REST is stateless, while SOAP can maintain state between requests.

    • REST is easier to implement and understand, while SOAP has a steep learning curve.

    • REST is mor

  • Answered by AI
  • Q2. Java Fibonnaci series using recursion, questions on complexity

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Job Portal and was interviewed in Mar 2023. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. Word formation Algorithm question
  • Q2. Architecture of project.
  • Ans. 

    The architecture of the project is based on microservices with a containerized approach using Docker and Kubernetes.

    • Utilizes microservices architecture for scalability and flexibility

    • Containerized approach using Docker for easy deployment and management

    • Orchestrated with Kubernetes for automated scaling and monitoring

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your introduction short because you might loose coding time for problem. They will end interview at sharp time. Unprofessional, and does not share the feedback.

I was interviewed before Mar 2021.

Round 1 - Technical 

(3 Questions)

  • Q1. How to check a number is power of 2
  • Ans. 

    To check if a number is a power of 2, we can use bitwise operations.

    • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

    • If n is a power of 2, then n & (n-1) will be 0.

    • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

  • Answered by AI
  • Q2. Sort a stack without using another data structure
  • Ans. 

    Sort a stack without using another data structure

    • Use recursion to pop the top element and insert it at the bottom of the remaining stack

    • Repeat until the stack is sorted in ascending order

    • Time complexity: O(n^2), space complexity: O(n) due to recursion

  • Answered by AI
  • Q3. Check weather array have continuous increasing than decreasing value
  • Ans. 

    Check if array has continuous increasing and decreasing values

    • Loop through the array and check if each element is greater than the previous one

    • Once you find the maximum element, check if the remaining elements are in decreasing order

    • If yes, return true else false

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design a cricinfo (LLD)
  • Ans. 

    Design a cricinfo (LLD)

    • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

    • Define the relationships between entities

    • Create a database schema to store the data

    • Implement APIs to fetch and update data

    • Design a UI to display the information

    • Consider scalability and performance

    • Ensure data security and privacy

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do study basic Data Structure questions and also prepare for Low level design.
Do work on behavioral questions too.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. React JS related questions
  • Q2. General questions in JS
Round 2 - Technical 

(1 Question)

  • Q1. React and Node js related questions
Round 3 - Behavioral 

(1 Question)

  • Q1. General topics were covered, nothing seem to be technical

Interview Preparation Tips

Interview preparation tips for other job seekers - From the last and final discussion, the manager seemed happy. I wasn't sure if it was the salary package or what went wrong. I didn't really got a call back from them. When I called them to check the status of my application, they said they'll get back to me in 10mins but that's the last I heard from them. Even if I got rejected for some reason, just a auto-denial email would have been better as all the interview process went great except the thing the HR didn't pick up the call or didn't share any thing back. This seems to be happening similarly for most of the companies now a days
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Core and Advance concepts of Java
Round 2 - Technical 

(1 Question)

  • Q1. Mainly on mutltithrerading concepts and previous experience on projects.
Round 3 - Behavioral 

(1 Question)

  • Q1. About projects and scenarios based questions.
Round 4 - HR 

(1 Question)

  • Q1. About Salary negotiation and final round

NextGen Healthcare Interview FAQs

How many rounds are there in NextGen Healthcare Senior Software Engineer interview?
NextGen Healthcare interview process usually has 5 rounds. The most common rounds in the NextGen Healthcare interview process are One-on-one Round, Behavioral and HR.
What are the top questions asked in NextGen Healthcare Senior Software Engineer interview?

Some of the top questions asked at the NextGen Healthcare Senior Software Engineer interview -

  1. This is technical with manager ro...read more
  2. Ist technical interv...read more
  3. 2nd technical interv...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 NextGen Healthcare interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
NextGen Healthcare Senior Software Engineer Salary
based on 92 salaries
₹8.9 L/yr - ₹28 L/yr
21% more than the average Senior Software Engineer Salary in India
View more details

NextGen Healthcare Senior Software Engineer Reviews and Ratings

based on 16 reviews

3.6/5

Rating in categories

2.8

Skill development

4.2

Work-Life balance

3.4

Salary & Benefits

3.4

Job Security

3.7

Company culture

3.0

Promotions/Appraisal

3.1

Work Satisfaction

Explore 16 Reviews and Ratings
Senior Software Engineer
92 salaries
unlock blur

₹8.9 L/yr - ₹28 L/yr

Senior Engineer
91 salaries
unlock blur

₹9.4 L/yr - ₹27 L/yr

Staff Engineer
86 salaries
unlock blur

₹13.4 L/yr - ₹35 L/yr

L2 Engineer
62 salaries
unlock blur

₹7.2 L/yr - ₹15 L/yr

Software Engineer
43 salaries
unlock blur

₹4.7 L/yr - ₹14 L/yr

Explore more salaries
Compare NextGen Healthcare with

Oracle Cerner

3.7
Compare

Veradigm

4.1
Compare

Athenahealth Technology

4.2
Compare

McKesson

4.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview