Add office photos
Employer?
Claim Account for FREE

MindTickle

2.8
based on 86 Reviews
Filter interviews by

10+ APS Multi-Speciality Hospital and ICCU Interview Questions and Answers

Updated 5 Feb 2024

Q1. Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the position of ...read more

Ans.

This question asks to find the position of a target integer in a row-wise and column-wise sorted matrix.

  • Iterate through each row and column of the matrix

  • Compare the target integer with the current element

  • If the target integer is found, return the position as {i, j}

  • If the target integer is not found, return {-1, -1}

Add your answer

Q2. Trapping Rain Water Problem Statement

You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine the tota...read more

Ans.

The question asks to find the total amount of rainwater that can be trapped in the given elevation map.

  • Iterate through the array and find the maximum height on the left and right of each bar.

  • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

  • Sum up the trapped water for all bars and return the total amount.

Add your answer

Q3. Is Bipartite Graph Problem

You are provided with an undirected graph having 'N' nodes numbered from 0 to 'N-1'. There is a list 'EDGES' of size 'M', which contains all the edges of this graph. The task is to de...read more

Ans.

Determine if a given undirected graph is Bipartite or not.

  • Check if the graph can be divided into two sets such that each edge connects nodes from different sets.

  • Use BFS or DFS to color nodes alternatively and check for any conflicts.

  • If a conflict is found, the graph is not Bipartite.

  • If no conflict is found, the graph is Bipartite.

Add your answer

Q4. Ninja and His Meetings Problem Statement

Ninja has started a new startup with a single conference room available for meetings. Given an array/list MEETINGS of consecutive appointment requests, Ninja must decide...read more

Ans.

Find the maximum total booked minutes possible in a conference room for all meetings with a 15-minute break between meetings.

  • Iterate through the list of meeting durations and calculate the maximum total booked minutes considering the 15-minute break constraint.

  • Keep track of the total booked minutes and skip consecutive meetings that violate the break constraint.

  • Return the maximum total booked minutes for each test case.

Add your answer
Discover APS Multi-Speciality Hospital and ICCU interview dos and don'ts from real experiences

Q5. Smallest Subarray With K Distinct Elements

Given an array A consisting of N integers, your task is to find the smallest subarray of A that contains exactly K distinct integers.

If multiple such subarrays exist,...read more

Ans.

Find the smallest subarray with exactly K distinct elements in an array.

  • Use a sliding window approach to keep track of the subarray with K distinct elements.

  • Maintain a hashmap to count the frequency of each element in the window.

  • Update the window size based on the number of distinct elements.

  • Return the smallest subarray with K distinct elements.

Add your answer

Q6. Trapping Rain Water II Problem Statement

Given an M * N matrix where each cell's value represents its height in a 2-D elevation map, calculate the total volume of water that can be trapped after rainfall.

Input...read more

Ans.

Calculate the total volume of water that can be trapped in a 2-D elevation map after rainfall.

  • Iterate through each cell in the matrix and calculate the trapped water based on the surrounding heights.

  • Use a stack or queue to keep track of the cells to be processed.

  • Consider edge cases such as when the matrix is empty or has only one row or column.

Add your answer

Q7. Topological Sort Problem Statement

You have a directed acyclic graph (DAG). The task is to determine any topological sorting of this graph.

Explanation:

A Directed Acyclic Graph (DAG) is a graph that has direct...read more

Ans.

Implement a function to determine any topological sorting of a directed acyclic graph (DAG).

  • Create a graph using the given input of nodes and edges

  • Perform a topological sort on the graph to find a valid ordering of vertices

  • Output the sorted vertices as a single line for each test case

Add your answer
Q8. Can you design an online Chess Board Game?
Ans.

Yes, an online Chess Board Game can be designed with features like multiplayer mode, AI opponent, chat functionality, and leaderboard.

  • Implement a chess board with 64 squares and pieces (king, queen, rook, etc.)

  • Include multiplayer mode for playing against friends or random opponents

  • Develop an AI opponent with varying difficulty levels

  • Incorporate chat functionality for communication between players

  • Include a leaderboard to track player rankings

Add your answer
Q9. Can you design an online transport rental service?
Ans.

An online transport rental service allows users to book vehicles for short-term use.

  • Users can search for available vehicles based on location, date, and time.

  • The service should include options for different types of vehicles such as cars, bikes, and scooters.

  • Users should be able to make reservations, view rental details, and make payments online.

  • The platform should have a rating system for both users and vehicles to ensure quality service.

  • Integration with mapping services lik...read more

Add your answer

Q10. tell something that is not in the resume

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at APS Multi-Speciality Hospital and ICCU

based on 2 interviews
Interview experience
4.5
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.6
 • 262 Interview Questions
4.1
 • 232 Interview Questions
4.2
 • 191 Interview Questions
3.9
 • 173 Interview Questions
3.6
 • 146 Interview Questions
3.3
 • 134 Interview Questions
View all
Top MindTickle Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter