Upload Button Icon Add office photos
Engaged Employer

i

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

Mirra HealthCare Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mirra HealthCare Interview Questions, Process, and Tips

Updated 13 Feb 2025

Top Mirra HealthCare Interview Questions and Answers

View all 7 questions

Mirra HealthCare Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I appeared for an interview in Dec 2022.

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 

(7 Questions)

  • Q1. What is distributed architecture and disconnected architecture?
  • Ans. 

    Distributed architecture is a system where components are spread across multiple computers. Disconnected architecture is a system where components can operate independently without a constant connection.

    • Distributed architecture involves multiple computers working together to achieve a common goal.

    • Disconnected architecture allows components to operate independently without a constant connection to a central system.

    • Distr...

  • Answered by AI
  • Q2. What is stateless and state management?
  • Ans. 

    Stateless refers to a system that does not store any data or information about previous interactions. State management is the process of managing and maintaining the state of a system.

    • Stateless systems do not rely on previous interactions or data to function

    • State management involves keeping track of the current state of a system

    • State can be managed through various techniques such as cookies, sessions, and local storage

    • ...

  • Answered by AI
  • Q3. What are sessions? What is Caching?
  • Ans. 

    Sessions are a way to maintain state between HTTP requests. Caching is a technique to store frequently accessed data in memory.

    • Sessions are used to store user-specific data across multiple requests

    • Caching is used to improve performance by storing frequently accessed data in memory

    • Sessions can be implemented using cookies or server-side storage

    • Caching can be implemented using in-memory caches or distributed caches like ...

  • Answered by AI
  • Q4. What is disadvantage of using indexes?
  • Ans. 

    Indexes can slow down write operations and take up additional storage space.

    • Indexes can slow down write operations because every time data is added, updated, or deleted, the index must also be updated.

    • Indexes can take up additional storage space because they are essentially a copy of the data in the table, just sorted differently.

    • Indexes can also become fragmented over time, which can lead to decreased performance.

    • Inde...

  • Answered by AI
  • Q5. What is referencial integrity?
  • Ans. 

    Referential integrity ensures that relationships between tables in a database remain consistent.

    • It is a set of rules that ensures that the relationships between tables in a database are maintained correctly.

    • It prevents orphaned records in a database by enforcing constraints on foreign keys.

    • For example, if a record in one table has a foreign key that references a record in another table, referential integrity ensures th...

  • Answered by AI
  • Q6. What is difference between left join and left outer join?
  • Ans. 

    Left join and left outer join are the same thing.

    • Both return all records from the left table and matching records from the right table.

    • The only difference is in the case of no matching records in the right table.

    • Left join returns null values for the right table columns while left outer join returns all columns with null values for non-matching records.

  • Answered by AI
  • Q7. What is observable and subscribe?
  • Ans. 

    Observable and subscribe are two important concepts in reactive programming.

    • Observable is a stream of data that emits values over time.

    • Subscribe is a method that listens to the emitted values from an observable.

    • Observable can be created from various sources like events, promises, arrays, etc.

    • Subscribe can have three callbacks - next, error, and complete.

    • Next callback is called when a new value is emitted, error callbac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basics. Keep open mind to answer questions on scenarios.

Skills evaluated in this interview

Top Mirra HealthCare Senior Software Engineer Interview Questions and Answers

Q1. What is difference between left join and left outer join?
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Question based on resume
  • Q2. Scenario based question
Round 2 - Technical 

(1 Question)

  • Q1. Resume based question

Application Support Analyst Interview Questions asked at other Companies

Q1. Dhcp and dns server ? What is latest version of Windows server? Ip address denge ? What's the range of private ip address? Diffrent between public and private ip address.
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 13 Feb 2025

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

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Resume based question
Round 2 - Technical 

(1 Question)

  • Q1. Resume based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for other company, this is a trap. Work as a delivery boy or a cashier in some mall. Atleast you will have peace. Or if you worried about your status start cloud kitchen.

I applied via Campus Placement and was interviewed in Apr 2021. There were 2 interview rounds.

Round 1 - Group Discussion 

There was one GD round on PROS and CONS of a distributed system.

Round 2 - Technical 

(1 Question)

  • Q1. The discussions were mainly on the System Design and SQL Scenarios.

Interview Preparation Tips

Topics to prepare for Mirra HealthCare Full Stack Developer interview:
  • SQL
  • DSA
  • System Des
  • OOPS
Interview preparation tips for other job seekers - Be confident while answering.
If you don't know something just say IDK about it as of now. Be clear.
Show your learning attitude.

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

Mirra HealthCare interview questions for popular designations

 Application Support Analyst

 (1)

 Full Stack Developer

 (1)

 Senior Software Engineer

 (1)

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related to project worked on wlan testing and networking concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall Good.
They gave taken 3 technical and 1hr round

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts

Interview Questionnaire 

3 Questions

  • Q1. 1. Assignment
  • Q2. 2. Bunch of python questions.
  • Q3. 3. coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basics.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Technical mcq from basic of dsa

Round 2 - Coding Test 

Question from DSA and time will given to solve it

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical HR and the next is general HR
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy to medium level questions were asked

Round 2 - Coding Test 

Questions were given asked to explain the concept

Round 3 - Technical 

(1 Question)

  • Q1. Basics of c++,java,oops

Mirra HealthCare Interview FAQs

How many rounds are there in Mirra HealthCare interview?
Mirra HealthCare interview process usually has 2 rounds. The most common rounds in the Mirra HealthCare interview process are Technical, Resume Shortlist and Group Discussion.
How to prepare for Mirra HealthCare 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 Mirra HealthCare. The most common topics and skills that interviewers at Mirra HealthCare expect are C#, Full Stack, MVC, SQL and SQL Server.
What are the top questions asked in Mirra HealthCare interview?

Some of the top questions asked at the Mirra HealthCare interview -

  1. What is difference between left join and left outer jo...read more
  2. What is distributed architecture and disconnected architectu...read more
  3. What is stateless and state manageme...read more

Tell us how to improve this page.

Mirra HealthCare Interview Process

based on 3 interviews

Interview experience

2.7
  
Poor
View more

Mirra HealthCare Reviews and Ratings

based on 24 reviews

3.4/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.5

Salary

2.9

Job security

3.3

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 24 Reviews and Ratings
Software Engineer
43 salaries
unlock blur

₹3 L/yr - ₹10.6 L/yr

Software Developer
17 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Software Engineer II
10 salaries
unlock blur

₹5 L/yr - ₹16.6 L/yr

Full Stack Developer
9 salaries
unlock blur

₹4.6 L/yr - ₹13.8 L/yr

Software Engineer Level 1
7 salaries
unlock blur

₹7.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Mirra HealthCare with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.3
Compare

Global Edge Software

3.5
Compare

Trawex Technologies

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