Upload Button Icon Add office photos
Engaged Employer

i

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

iPatientCare Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

iPatientCare Interview Questions, Process, and Tips

Updated 25 Nov 2024

Top iPatientCare Interview Questions and Answers

iPatientCare Interview Experiences

Popular Designations

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is elastic ip
  • Ans. 

    Elastic IP is a static IPv4 address designed for dynamic cloud computing.

    • Elastic IP is a static IP address that can be associated with an instance in a cloud environment.

    • It allows users to mask the failure of an instance by rapidly remapping the address to another instance.

    • Elastic IP addresses are free to use as long as they are associated with a running instance.

    • They are commonly used in scenarios where users need a p...

  • Answered by AI
  • Q2. Explain vertical and horizontal scaling
  • Ans. 

    Vertical scaling involves increasing the resources of a single server, while horizontal scaling involves adding more servers to distribute the load.

    • Vertical scaling increases the capacity of a single server by adding more resources such as CPU, RAM, or storage.

    • Horizontal scaling involves adding more servers to distribute the load, allowing for better performance and redundancy.

    • Vertical scaling is limited by the capacit...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How can you save un billing
  • Ans. 

    You can save on billing by optimizing resource usage, implementing cost management strategies, and leveraging discounts.

    • Optimize resource usage by right-sizing instances and using auto-scaling

    • Implement cost management strategies like setting budgets and monitoring usage

    • Leverage discounts through reserved instances or spot instances

    • Use cost allocation tags to track spending by project or team

  • Answered by AI
  • Q2. Difference between cloudwatch and cloudtrail
  • Ans. 

    CloudWatch is for monitoring and alerting, while CloudTrail is for logging and auditing AWS API calls.

    • CloudWatch is used for monitoring AWS resources and applications in real-time.

    • CloudTrail is used for logging AWS API calls for auditing and compliance purposes.

    • CloudWatch can be used to set alarms and trigger actions based on metrics.

    • CloudTrail provides a history of AWS API calls for security analysis, resource change ...

  • Answered by AI

Skills evaluated in this interview

Senior Cloud Engineer Interview Questions asked at other Companies

Q1. What all things we need to consider while creating a VM
View answer (2)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company

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 

(3 Questions)

  • Q1. General Technical Discussion
  • Q2. About Documentation
  • Q3. Basic testing process
  • Ans. 

    Testing process involves planning, designing, executing and reporting to ensure software quality.

    • Identify test requirements and objectives

    • Design test cases and test scenarios

    • Execute tests and record results

    • Report defects and track their status

    • Repeat the process until all requirements are met

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't take stress whether selected or rejected. The company is NOT worth to join due to full politics and heavy micro-management

Skills evaluated in this interview

Senior SQA Engineer Interview Questions asked at other Companies

Q1. How do you monitor suppliers performance.?
View answer (1)

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

(2 Questions)

  • Q1. What data structure is used to implement a priority queue?
  • Ans. 

    Binary heap is used to implement a priority queue.

    • Binary heap is a complete binary tree where each node has a value greater than or equal to its children.

    • It can be implemented using arrays, where the parent of node at index i is at index (i-1)/2.

    • Insertion and deletion operations have time complexity of O(log n) in a binary heap.

  • Answered by AI
  • Q2. How many trees will a binary tree have?
  • Ans. 

    A binary tree can have any number of nodes, but the maximum number of trees with n nodes is 2^n.

    • A binary tree can have 0 nodes, 1 node, 2 nodes, or any number of nodes.

    • The maximum number of binary trees with n nodes is 2^n.

    • For example, a binary tree with 3 nodes can have up to 8 different structures.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. SQL Query to return the second highest marks in a student database
  • Ans. 

    Use a SQL query to find the second highest marks in a student database.

    • Use the ORDER BY clause to sort the marks in descending order

    • Use the LIMIT clause to limit the result to the second row

  • Answered by AI
  • Q2. Program to check if two strings are anagrams
  • Ans. 

    Program to check if two strings are anagrams

    • Create a function that takes in two strings as input

    • Remove any spaces and convert both strings to lowercase for consistency

    • Sort the characters in both strings and compare if they are equal to determine if they are anagrams

    • Example: 'listen' and 'silent' are anagrams

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at International Institute of Information Technology (IIIT), Bhubaneswar and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a mcq + coding round with computer fundamentals and aptitude + easy-medium level dsa questions.

Round 2 - Aptitude Test 

It was an offline aptitute test with 30 questions for 30 minutes.

Round 3 - Technical 

(4 Questions)

  • Q1. Detect a loop in the linked list
  • Ans. 

    Detect a loop in a linked list by using Floyd's Cycle Detection Algorithm

    • Use two pointers, slow and fast, to traverse the linked list

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Initialize slow and fast pointers at the head of the linked list

    • Move slow pointer by one step and fast pointer by two steps in each iteration

    • If the fast pointer reaches the end of the list or meets the slow pointer,

  • Answered by AI
  • Q2. Find the unique element in an array
  • Ans. 

    Find the unique element in an array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • After iterating, check the hashmap for elements with frequency 1 to find the unique element

  • Answered by AI
  • Q3. Tell about your projects
  • Ans. 

    I have worked on various projects including a web application for a local business and a mobile app for tracking daily habits.

    • Developed a web application using HTML, CSS, and JavaScript for a local business to manage their inventory and sales.

    • Created a mobile app using React Native to track daily habits and provide reminders for healthy routines.

    • Collaborated with a team to implement new features and fix bugs in existin...

  • Answered by AI
  • Q4. Write a MySQL query for selecting the id of second highest salary from employee table
  • Ans. 

    MySQL query to select the id of second highest salary from employee table

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to select the second row

    • Use a subquery to avoid duplicates if multiple employees have the same salary

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Associate Software Engineer interview:
  • RDBMS
  • Frontend
  • DSA
  • System Design

Skills evaluated in this interview

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

(1 Question)

  • Q1. How Performance of application can be improved
  • Ans. 

    Performance of an application can be improved by optimizing code, using efficient algorithms, caching data, and scaling resources.

    • Optimize code by reducing unnecessary loops, improving database queries, and minimizing memory usage

    • Use efficient algorithms like binary search instead of linear search for large datasets

    • Implement caching mechanisms to store frequently accessed data and reduce database calls

    • Scale resources b...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output

UIUX dseigner Interview Questions & Answers

Knovos user image Akshar Patel

posted on 8 Jun 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce Yourself
  • Q2. What is current designation
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is your design process.
  • Q2. How do you work with developer push-back?
  • Q3. How do you overcome personal bias in user research?
Round 3 - Assignment 

Make a autobiography app

Round 4 - One-on-one 

(3 Questions)

  • Q1. Share your working experience
  • Q2. Why are you leaving current firm?
  • Q3. How do you percieve the design systems

Interview Preparation Tips

Topics to prepare for Knovos UIUX dseigner interview:
  • Product Design
  • Design Patterns

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was Machine test, i had to make a project and connect it to Database and submit details in database table from form.

Round 2 - Technical 

(4 Questions)

  • Q1. Technical verbal Interview, question were related to JavaScript, Json, JQuery, and how to perform click and other event on click, on change etc, and how to get text content entered in text box, mostly rel...
  • Q2. What is Collection Framework?
  • Ans. 

    Collection Framework is a unified architecture for representing and manipulating collections of objects in Java.

    • It provides interfaces (List, Set, Queue, etc.) and classes (ArrayList, HashSet, PriorityQueue, etc.) to store and manipulate groups of objects.

    • Collections can be easily sorted, searched, and iterated using methods provided by the Collection Framework.

    • Example: ArrayList is a class that implements the List int...

  • Answered by AI
  • Q3. What is RestApi?
  • Ans. 

    RestApi is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • RestApi stands for Representational State Transfer Application Programming Interface.

    • It allows communication between different software systems over the internet.

    • RestApi uses standard HTTP methods like GET, POST, PUT, DELETE for data manipulation.

    • JSON or XML formats are commonly used for data exchange in RestApi.

    • ...

  • Answered by AI
  • Q4. How to add one ArrayList object to another, which method is used to achieve this. Ans:- By using addAll() Method
  • Ans. 

    The addAll() method is used to add all elements of one ArrayList to another.

    • Use the addAll() method to add all elements of one ArrayList to another

    • Syntax: list1.addAll(list2);

    • Example: ArrayList list1 = new ArrayList<>(); list1.addAll(Arrays.asList(1, 2, 3));

Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Just Introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - This procedure can be different for anyone else, and hiring team didn't seem serious about hiring procedure .

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 at National Institute of Engineering (NIE) and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions, Easy and medium based

Round 2 - Technical 

(1 Question)

  • Q1. Stacks queues and array questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions on projects
Round 4 - HR 

(1 Question)

  • Q1. How to tackle any uncertain situations? Behavioural questions
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Based on resume
Round 2 - One-on-one 

(1 Question)

  • Q1. Based on resume
Round 3 - HR 

(1 Question)

  • Q1. Basic information
Round 4 - Technical 

(1 Question)

  • Q1. Based on resume
Round 5 - Coding Test 

Scenario questions logical solving

Round 6 - Case Study 

Need to explain about problems solved in previous round

Round 7 - One-on-one 

(1 Question)

  • Q1. Project discussion and basics information

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company no job guarantee. Dont waste your time on attending interview. They will conduct 10 around and reject the candidate easily in last round.

iPatientCare Interview FAQs

How many rounds are there in iPatientCare interview?
iPatientCare interview process usually has 2 rounds. The most common rounds in the iPatientCare interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for iPatientCare 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 iPatientCare. The most common topics and skills that interviewers at iPatientCare expect are Healthcare, SDLC, Health Management, ISO and Interpersonal Skills.
What are the top questions asked in iPatientCare interview?

Some of the top questions asked at the iPatientCare interview -

  1. How can you save un bill...read more
  2. Difference between cloudwatch and cloudtr...read more
  3. Explain vertical and horizontal scal...read more

Tell us how to improve this page.

iPatientCare Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.6
 • 146 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
Practo Interview Questions
3.2
 • 74 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Medlife Interview Questions
3.7
 • 27 Interviews
Portea Medical Interview Questions
4.3
 • 26 Interviews
Medgenome Labs Interview Questions
3.8
 • 17 Interviews
Lybrate Interview Questions
3.5
 • 5 Interviews
View all

iPatientCare Reviews and Ratings

based on 19 reviews

4.2/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

3.6

Salary

3.9

Job security

3.3

Company culture

2.9

Promotions

3.7

Work satisfaction

Explore 19 Reviews and Ratings
SQA Engineer
6 salaries
unlock blur

₹3.6 L/yr - ₹5.5 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹5.7 L/yr - ₹12.1 L/yr

Application Specialist
6 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Software Quality Assurance Engineer
5 salaries
unlock blur

₹2.2 L/yr - ₹8 L/yr

Software Engineer
4 salaries
unlock blur

₹4 L/yr - ₹13.6 L/yr

Explore more salaries
Compare iPatientCare with

Practo

3.2
Compare

Lybrate

3.5
Compare

Portea Medical

4.3
Compare

PharmEasy

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