Upload Button Icon Add office photos
Engaged Employer

i

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

Nirvasa Healthcare Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nirvasa Healthcare Senior PHP Developer Interview Questions and Answers

Updated 11 May 2023

Nirvasa Healthcare Senior PHP Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 

(5 Questions)

  • Q1. Ask to rate yourself in different technologies.
  • Ans. Interviewer you have to rate yourself carefully because he will only ask questions from the technology you have rated yourself best I rated mysql
  • Answered by promptasparagus
  • Q2. What are different storage engines?
  • Ans. 

    Different storage engines are used in databases to manage data storage and retrieval efficiently.

    • InnoDB: ACID-compliant, supports transactions and foreign keys

    • MyISAM: Fast and efficient for read-heavy workloads, no transaction support

    • Memory: Stores data in memory for fast access, but data is lost on restart

    • CSV: Stores data in CSV files, suitable for importing and exporting data

    • Archive: Optimized for high compression, s

  • Answered by AI
  • Q3. Aggregate functions
  • Q4. What is difference between group by and distinct function
  • Ans. 

    Group by is used to group rows based on a column, while distinct function is used to remove duplicate values from a column.

    • Group by is used with aggregate functions like count, sum, avg, etc.

    • Distinct function is used to retrieve unique values from a column.

    • Group by can be used with multiple columns to create groups based on multiple criteria.

    • Distinct function can be used with multiple columns to retrieve unique combina...

  • Answered by AI
  • Q5. Second highest salary
  • Ans. 

    To find the second highest salary, we can use the SQL query 'SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees)'.

    • Use the MAX() function to find the highest salary in the table

    • Use a subquery to find the maximum salary excluding the highest salary

    • Use the WHERE clause to filter out the highest salary

    • Use the MAX() function again to find the second highest salary

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Nov 2021. There were 4 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 

Basic problem solving easy to medium level

Round 3 - One-on-one 

(1 Question)

  • Q1. Coding questions based on loops, arrays
Round 4 - One-on-one 

(1 Question)

  • Q1. Coding a sorting algorithm
  • Ans. 

    Sorting algorithm arranges elements in a specific order.

    • Choose an appropriate sorting algorithm based on the data size and type.

    • Common sorting algorithms include bubble sort, insertion sort, merge sort, quicksort, and selection sort.

    • Implement the chosen algorithm in the programming language of choice.

    • Test the algorithm with various input sizes and types to ensure correctness and efficiency.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with what is in resume, decent problem solving skills + some basic design patterns will help you clear the interview

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Computer fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Technical questions of projects ,dsa
Round 3 - HR 

(2 Questions)

  • Q1. What is ur background
  • Q2. Manegarial and behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well
Interview experience
4
Good
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 - One-on-one 

(1 Question)

  • Q1. Explain end to end automation cycle
  • Ans. 

    End to end automation cycle involves automating the entire software development process from planning to deployment.

    • The cycle starts with requirements gathering and planning

    • Next, the code is developed and tested using automation tools

    • Continuous integration and delivery are used to deploy the code to production

    • Monitoring and feedback are used to improve the process

    • Examples of automation tools include Jenkins, Selenium,

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join this company.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 

It was an MCQ based test. Code Snippets as well as OOPS, OS, DBMS questions were there

Round 3 - One-on-one 

(1 Question)

  • Q1. How to implement a stack OS Questions Problem Solving Questions OOPS concepts DS questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Smart Pointers About the project done in college
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
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
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

I applied via Company Website and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Concepts of Oops. Ex: Encapsulation, Abstraction, Polymorphism with real time examples.
  • Q2. Multithreading concepts in Java
  • Ans. 

    Multithreading in Java allows multiple threads to execute concurrently within a single program.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Threads can be created by extending the Thread class or implementing the Runnable interface.

    • Synchronization is used to prevent race conditions and ensure thread safety.

    • Java also provides several classes and interfaces for managing thread exec...

  • Answered by AI
  • Q3. 2 Coding Questions were asked. first was easy and was medium type.
  • Q4. Questions related to my project in detail.

Interview Preparation Tips

Interview preparation tips for other job seekers - They had asked Questions according to my resume. So, be confident with the skills you mentioned. Be Confident and cool. The interviewers were very friendly.

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Oops, c#, design , .net framework
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial, projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice oops , data structures and algorithms, problem solving

Nirvasa Healthcare Interview FAQs

How many rounds are there in Nirvasa Healthcare Senior PHP Developer interview?
Nirvasa Healthcare interview process usually has 2 rounds. The most common rounds in the Nirvasa Healthcare interview process are Resume Shortlist and One-on-one Round.
How to prepare for Nirvasa Healthcare Senior PHP 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 Nirvasa Healthcare. The most common topics and skills that interviewers at Nirvasa Healthcare expect are GIT, PHP, API, CRM and CakePHP.
What are the top questions asked in Nirvasa Healthcare Senior PHP Developer interview?

Some of the top questions asked at the Nirvasa Healthcare Senior PHP Developer interview -

  1. What is difference between group by and distinct funct...read more
  2. What are different storage engin...read more
  3. Aggregate functi...read more

Tell us how to improve this page.

Nirvasa Healthcare Senior PHP Developer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Max Healthcare Interview Questions
4.1
 • 141 Interviews
Dr Lal PathLabs Interview Questions
4.2
 • 125 Interviews
Paras Hospital Interview Questions
4.4
 • 81 Interviews
Pacific BPO Interview Questions
3.5
 • 79 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
Advantmed Interview Questions
3.6
 • 51 Interviews
View all
Team Lead
17 salaries
unlock blur

₹2.7 L/yr - ₹5.2 L/yr

Sales Executive
15 salaries
unlock blur

₹1.7 L/yr - ₹2.6 L/yr

Assistant Manager
6 salaries
unlock blur

₹4.1 L/yr - ₹13.1 L/yr

BPO Executive
5 salaries
unlock blur

₹1.8 L/yr - ₹2.1 L/yr

Customer Service Executive
5 salaries
unlock blur

₹2.2 L/yr - ₹2.6 L/yr

Explore more salaries
Compare Nirvasa Healthcare with

Max Healthcare

4.1
Compare

Paras Hospital

4.4
Compare

Dr Lal PathLabs

4.2
Compare

Johnson & Johnson

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