Upload Button Icon Add office photos

Filter interviews by

MORRIS MATHIAS HOSPITAL Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Java jdbc oops hibernate
  • Q2. Javascript related questions
  • Q3. Spring springboot
  • Q4. Mysql database related

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops concept you should learn completely
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. Your achievements
  • Ans. 

    I have successfully led projects, improved team performance, and enhanced operational efficiency in my previous roles.

    • Led a team of 10 in a project that increased sales by 25% within six months.

    • Implemented a new inventory management system that reduced costs by 15%.

    • Developed training programs that improved employee productivity by 20%.

    • Streamlined communication processes, resulting in a 30% reduction in project turnarou...

  • Answered by AI
  • Q3. Your job profile and responsibility
  • Ans. 

    As a Deputy Manager, I oversee operations, manage teams, and ensure project goals are met efficiently and effectively.

    • Supervise daily operations to ensure smooth workflow and adherence to company policies.

    • Coordinate with various departments to align project objectives, such as collaborating with marketing for product launches.

    • Manage a team of employees, providing guidance and support to enhance productivity and morale.

    • ...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Question related to dcs
  • Q2. Question related to field instrumentation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be original, keep smiling and full of confidence
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About my past experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice recommendation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

String and arrays duplicate and sorting questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project details
  • Q2. Project deployment
Round 3 - HR 

(2 Questions)

  • Q1. Previous company details
  • Q2. CTC discussion and company review
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is RCM
  • Q2. What are icds and cpts
  • Q3. How many insurance are available for a person
  • Q4. What is selfpay

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good experience in health care services.
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 

It was straightforward

Round 3 - HR 

(2 Questions)

  • Q1. Was easy explaining about role
  • Q2. Previous experience. How to handle the role and expectation. Work schedule. Explain about the team
  • Ans. 

    The candidate should discuss their previous experience, how they handle their role and expectations, their work schedule, and provide an explanation about their previous team.

    • Discuss previous experience in software engineering roles

    • Explain how you handled your role and met expectations in previous positions

    • Describe your typical work schedule and any flexibility you have

    • Provide an overview of your previous team, their s...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Dec 2022. 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. How do you find the code performance issue in the code deployed in production?
  • Ans. 

    To find code performance issues in production, use monitoring tools and profiling techniques.

    • Use monitoring tools like New Relic, AppDynamics, or Datadog to track performance metrics and identify bottlenecks.

    • Use profiling techniques like CPU profiling, memory profiling, and network profiling to pinpoint specific areas of the code that are causing performance issues.

    • Analyze logs and error messages to identify patterns a...

  • Answered by AI
  • Q2. What is asynchronous programming
  • Ans. 

    Asynchronous programming is a programming paradigm that allows multiple tasks to run concurrently without blocking each other.

    • Asynchronous programming is used to improve the performance of applications that require a lot of I/O operations.

    • It involves the use of callbacks, promises, and async/await keywords in JavaScript.

    • Asynchronous programming can be used in both front-end and back-end development.

    • Examples of asynchro...

  • Answered by AI
  • Q3. Write a program to change background after every 0.5 sec interval to orange,white,green on button click in Angular?
  • Ans. 

    Program to change background color on button click in Angular

    • Create a button in Angular template

    • Add click event listener to the button

    • Use setInterval() function to change background color after every 0.5 sec

    • Use ngStyle directive to change background color dynamically

  • Answered by AI
  • Q4. How to load a component only after 3 of my services are loaded?
  • Ans. 

    Use Angular's 'resolve' property to load component after services are loaded.

    • Create a resolver service that waits for all three services to complete before resolving.

    • Add the resolver service to the 'resolve' property of the component's route.

    • Access the resolved data in the component using the ActivatedRoute service.

    • Example: { path: 'my-component', component: MyComponent, resolve: { data: MyResolverService } }

  • Answered by AI
  • Q5. What is difference between iquerable and ienumrable
  • Ans. 

    IQueryable is for querying data from a source that implements IQueryable interface while IEnumerable is for iterating over a collection of data.

    • IQueryable is used for deferred execution while IEnumerable is used for immediate execution.

    • IQueryable is used for querying data from a remote data source while IEnumerable is used for querying data from an in-memory collection.

    • IQueryable is more efficient for large datasets as...

  • Answered by AI
  • Q6. When you go with entity framework and ado.net
  • Ans. 

    Entity Framework is an ORM while ADO.NET is a data access technology.

    • Entity Framework is easier to use and provides more abstraction than ADO.NET.

    • ADO.NET is faster and more flexible than Entity Framework.

    • Use Entity Framework for simple CRUD operations and ADO.NET for complex queries and performance-critical applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on skills from your resume. Prepare more on Angular,Design patterns. Should have knowledge on Azure.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Apr 2022. There were 3 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 - Assignment 

General RCM, process specific

Round 3 - One-on-one 

(1 Question)

  • Q1. Team Management, client interaction

I applied via LinkedIn and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

50 questions 12 mins

Round 2 - Technical 

(1 Question)

  • Q1. Quant based questions (P&C,Averages,probability) followed by case study

Interview Preparation Tips

Interview preparation tips for other job seekers - approach is important more than the answer

Tell us how to improve this page.

MORRIS MATHIAS HOSPITAL Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.8

Salary

4.9

Job security

4.9

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
Compare MORRIS MATHIAS HOSPITAL with

Becton Dickinson

4.0
Compare

Vidal Health Insurance

3.7
Compare

Vidal Health Tpa

3.5
Compare

Air Liquide

3.8
Compare
write
Share an Interview