Add office photos
Employer?
Claim Account for FREE

UnitedHealth

4.1
based on 2.6k Reviews
Filter interviews by

90+ Infosystems Software And Consulting Interview Questions and Answers

Updated 3 Aug 2024
Popular Designations

Q1. There are 100 people standing in a circle, the first person has a gun he starts shooting the person next to him and hands over the gun to the 3rd person and so on. Who will be the last person surviving?

Ans.

The last person surviving will be the 73rd person.

  • The pattern of shooting skips every second person.

  • After each round of shooting, the number of people remaining is halved.

  • The last person standing will be the one who is skipped in every round of shooting.

View 5 more answers

Q2. There are 20 blue balls and 13 red balls in a container. I pick up randomly 2 balls from the container if the colour of the balls is same then I replace them with a blue ball and if otherwise then I replace the...

read more
Ans.

The last ball will be red.

  • If the first two balls are of different colors, they will be replaced with a red ball.

  • If the first two balls are of the same color, they will be replaced with a blue ball.

  • The number of balls in the container does not affect the outcome.

  • The last ball will be red because there are more red balls than blue balls in the container.

Add your answer
Q3. Program to check the validity of a Password

Ninjas are trying to hack a system of a terrorist organization so that they can know where they will be going to attack next. But to hack the system and to get access ...read more

View 3 more answers

Q4. There are 100 people. 1st person has a sword. He kills 2nd person and gives the sword to 3rd person. He kills 4th and gives the sword to 5th person.99th person kill 100th person and gives the sword to 1st perso...

read more
Ans.

The 100th person will be alive.

  • The pattern shows that every even numbered person is killed and every odd numbered person receives the sword.

  • The sword eventually comes back to the 1st person who started the cycle.

  • Therefore, the 100th person will be killed by the 99th person and the sword will go back to the 1st person.

  • Hence, the 1st person will be the only one left alive.

View 2 more answers
Discover Infosystems Software And Consulting interview dos and don'ts from real experiences
Q5. Reverse a number

Ninja is feeling very bored and wants to try something new. So, he decides to find the reverse of a given number. But he cannot do it on his own and needs your help.

Note:

If a number has traili...read more
View 2 more answers
Q6. Find prime numbers between given interval

You are given a positive integer 'N'. Your task is to return all the prime numbers less than or equal to the 'N'.

Note:

1) A prime number is a number that has only two f...read more
View 4 more answers
Are these interview questions helpful?
Q7. Delete Node In A Linked List

You are given a Singly Linked List of integers and a reference to the node to be deleted. Every node of the Linked List has a unique value written on it. Your task is to delete that ...read more

View 2 more answers
Q8. Bubble sort

Bubble Sort is one of the sorting algorithms that works by repeatedly swapping the adjacent elements of the array if they are not in sorted order.

You are given an unsorted array consisting of N non-...read more

View 2 more answers
Share interview questions and help millions of jobseekers 🌟

Q9. Given a square with side L and a circle is inscribed in it. Find the area in the square except the circle. (Pretty simple apti question)

Ans.

Area of square except inscribed circle

  • Find area of square

  • Subtract area of circle from square

  • Area of square = L^2, Area of circle = pi*(L/2)^2

  • Answer = L^2 - pi*(L/2)^2

Add your answer
Q10. Count Inversions

For a given integer array/list 'ARR' of size 'N', find the total number of 'Inversions' that may exist.

An inversion is defined for a pair of integers in the array/list when the following two co...read more

View 4 more answers
Q11. Maximum Subarray Sum

Given an array of numbers, find the maximum sum of any contiguous subarray of the array.

For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would ...read more

View 4 more answers
Q12. Copy and Reverse the array

You are given an array 'ARR' consisting of 'N' non-negative integers, your task is to copy the elements of 'ARR' into another array 'COPY_ARR' in reverse order.

For example:

If 'ARR' c...read more
View 2 more answers

Q13. What is SDLC(Software Development Life Cycle) and what are it's phases?

Ans.

SDLC is a process followed by software development teams to design, develop and test high-quality software.

  • SDLC stands for Software Development Life Cycle

  • It consists of several phases including planning, analysis, design, implementation, testing, and maintenance

  • Each phase has its own set of activities and deliverables

  • The goal of SDLC is to produce high-quality software that meets customer requirements and is delivered on time and within budget

  • Examples of SDLC models include W...read more

Add your answer

Q14. What are the things other than indexes and tables present in a dbms? (Ans - Views, .. etc.)

Ans.

Other than indexes and tables, a DBMS also includes views, stored procedures, triggers, and functions.

  • Views: Virtual tables that are based on the result of a query. They provide a way to simplify complex queries and restrict access to data.

  • Stored Procedures: Precompiled sets of SQL statements that can be executed with a single command. They enhance performance and allow for code reusability.

  • Triggers: Special types of stored procedures that are automatically executed when a sp...read more

Add your answer
Q15. Best Time to Buy and Sell

You are given an array(PRICES) of stock prices for N consecutive days. Your task is to find the maximum profit that you can make by completing as many transactions as you like, where a ...read more

View 5 more answers
Q16. Merge Sort

Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

Example :

Merge Sort Algorithm - Merge sort is a Div...read more
View 3 more answers
Q17. Reverse Linked List

Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

For example:
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked lis...read more
View 6 more answers

Q18. There are 8 balls out of which only one ball is heavier. You have a weighing balance. In how many attempts (Min and Max) can u find the heavier ball?

Ans.

Find the heavier ball out of 8 using a weighing balance in minimum and maximum attempts.

  • Divide the balls into 3 groups of 3, 3, and 2.

  • Weigh the first two groups against each other.

  • If they balance, the heavier ball is in the third group.

  • If one group is heavier, weigh two balls from that group against each other.

  • If they balance, the heavier ball is the remaining one.

  • If one ball is heavier, that is the answer.

  • In the worst case, it takes 3 attempts to find the heavier ball.

Add your answer

Q19. There are 11 balls out of which only one ball is heavier. You have a weighing balance. In how many attempts (Min) can u find the heavier ball?

Ans.

In 3 attempts, the heavier ball can be found using the weighing balance.

  • Divide the balls into 3 groups of 3, 3, and 5 balls.

  • Weigh the first two groups against each other.

  • If they balance, the heavier ball is in the third group. Weigh two balls from the third group against each other to find the heavier one.

  • If they don't balance, the heavier ball is in the heavier group. Take two balls from the heavier group and weigh them against each other to find the heavier one.

Add your answer
Q20. Puzzle

There are 25 horses among which you need to find out the fastest 3 horses. You can conduct race among at most 5 to find out their relative speed. At no point you can find out the actual speed of the horse...read more

Add your answer
Q21. Puzzle

Suppose you have a 3 liter jug and a 5 liter jug (this could also be in gallons). The jugs have no measurement lines on them either. How could you measure exactly 4 liter using only those jugs and as much...read more

Add your answer

Q22. How indexes are implemented? (Ans - B Trees, B+ Trees)

Ans.

Indexes are implemented using B Trees and B+ Trees.

  • B Trees and B+ Trees are data structures used to organize and efficiently search data in databases.

  • B Trees are balanced search trees that store data in nodes with multiple children.

  • B+ Trees are similar to B Trees but have additional features like leaf nodes that form a linked list.

  • Indexes are created on specific columns of a database table to improve query performance.

  • When a query is executed, the database uses the index to q...read more

Add your answer

Q23. There are 'n' balls out of which only one ball is heavier. You have a weighing balance. Come up with a formula to find the heavier ball

Ans.

Use a binary search approach to find the heavier ball among 'n' balls using a weighing balance.

  • Divide the 'n' balls into two equal groups and weigh them on the balance.

  • If one group is heavier, repeat the process with that group.

  • If both groups weigh the same, the heavier ball is among the remaining unweighed balls.

  • Continue dividing and weighing until the heavier ball is found.

Add your answer
Q24. LCA of binary tree

You have been given a Binary Tree of distinct integers and two nodes ‘X’ and ‘Y’. You are supposed to return the LCA (Lowest Common Ancestor) of ‘X’ and ‘Y’.

The LCA of ‘X’ and ‘Y’ in the bina...read more

View 3 more answers
Q25. Basic HR Questions

1. Why UHG?
2. What are your strengths and weaknesses?

Add your answer
Q26. Check if the Word is present in Sentence or not

You have been given a sentence ‘S’ in the form of a string and a word ‘W’, you need to find whether the word is present in the given sentence or not. The word must...read more

View 2 more answers

Q27. Draw a activity flow diagram for ola cabs management system and washing machine .

Ans.

Activity flow diagrams for Ola cabs management system and washing machine.

  • Ola cabs management system: User books a cab -> Driver accepts the ride -> User gets picked up -> User reaches destination -> Payment is made.

  • Washing machine: User selects wash cycle -> Machine fills with water -> Detergent is added -> Machine agitates clothes -> Water drains -> Clothes are rinsed -> Machine spins clothes -> Cycle ends.

Add your answer
Q28. C# Question

What is managed and unmanaged code in C#?

Add your answer
Q29. C# Question

What is generic and non-generic collection in C#?

Add your answer

Q30. How many soft drinks can be sold on a particular day in J&K?

Ans.

The number of soft drinks sold in J&K on a particular day depends on various factors such as population, demand, availability, and marketing strategies.

  • The population of J&K can be a factor in determining the potential number of soft drink sales.

  • The demand for soft drinks can vary based on factors such as weather, events, and cultural preferences.

  • The availability of soft drinks in J&K, including distribution channels and retail outlets, can impact sales.

  • Marketing strategies, ...read more

Add your answer

Q31. What is ‘vlookup’ in excel? Difference between vlookup and hlookup.

Ans.

VLOOKUP is a function in Excel used to search for a value in the first column of a range and return a corresponding value from another column.

  • VLOOKUP stands for vertical lookup.

  • It is commonly used to find specific data in large datasets.

  • The function takes four arguments: lookup value, table array, column index number, and range lookup.

  • VLOOKUP is case-insensitive and requires an exact match or an approximate match.

  • The function returns the value from the corresponding row in th...read more

Add your answer

Q32. What are the roles of a database administrator?

Ans.

A database administrator manages and maintains databases, ensuring their security, performance, and availability.

  • Designing and implementing database structures

  • Installing and configuring database software

  • Monitoring and optimizing database performance

  • Ensuring data integrity and security

  • Backing up and restoring databases

  • Troubleshooting and resolving database issues

  • Collaborating with developers and system administrators

  • Planning and implementing database upgrades and migrations

Add your answer

Q33. Write a program to find factorial using recursion (again, simple one)

Ans.

A program to find factorial using recursion.

  • Define a function that takes an integer as input.

  • Check if the input is 0 or 1, return 1 in that case.

  • Otherwise, call the function recursively with input-1 and multiply it with the input.

Add your answer

Q34. How many facebook users are there in the world?

Ans.

The exact number of Facebook users worldwide is constantly changing, but as of October 2021, there are over 2.8 billion monthly active users.

  • As of October 2021, Facebook reported having over 2.8 billion monthly active users.

  • The number of Facebook users is constantly changing as new users join and others deactivate or delete their accounts.

  • Facebook's user base is spread across different countries and demographics.

  • The number of Facebook users can be influenced by factors such a...read more

Add your answer

Q35. Types of integrity in dbms? (Ans- Foreign, referential, domain)

Ans.

Types of integrity in DBMS include foreign, referential, and domain.

  • Foreign integrity ensures that foreign key values in a table match primary key values in another table.

  • Referential integrity ensures that relationships between tables are maintained, preventing orphaned or invalid data.

  • Domain integrity ensures that data in a column adheres to specified data types, formats, or constraints.

  • For example, in a database for an online store, foreign integrity would ensure that a cus...read more

Add your answer

Q36. What are generic and non-generic collections in .net?

Ans.

Generic collections are type-safe and can store any type of data. Non-generic collections can only store objects of type 'object'.

  • Generic collections are preferred as they provide compile-time type safety.

  • Non-generic collections are slower and can cause runtime errors if the wrong type is added.

  • Examples of generic collections include List, Dictionary, and Queue.

  • Examples of non-generic collections include ArrayList and Hashtable.

Add your answer

Q37. What are the ways to improve performance of stored procedures?

Ans.

Ways to improve performance of stored procedures

  • Use SET NOCOUNT ON to reduce network traffic

  • Avoid using SELECT *

  • Use table variables instead of temporary tables

  • Avoid using cursors

  • Use appropriate indexes

  • Avoid using scalar functions

  • Minimize the use of triggers

  • Use stored procedures instead of ad hoc queries

Add your answer

Q38. You are given a triangle with height h and base length b and a square of side length a. How many squares can you fit in triangle? Need to derive formula

Ans.

Formula to calculate number of squares that can fit inside a triangle

  • Calculate the area of the triangle and the area of the square

  • Divide the area of the triangle by the area of the square to get the number of squares that can fit inside the triangle

  • Formula: (h*b)/(a*a)

Add your answer
Q39. C# Question

Difference between Ref and Out keywords in C#

Add your answer

Q40. Guesstimate : Number if tractors sold in haryana in a year.

Ans.

Approximately 50,000 tractors are sold in Haryana every year.

  • Consider the population of Haryana and the number of farmers in the state.

  • Look at the agricultural output of Haryana and the demand for tractors in the region.

  • Take into account the number of tractor dealerships in Haryana and their sales figures.

  • Research the sales figures of major tractor manufacturers in Haryana.

  • Assume a growth rate based on the previous year's sales figures.

  • Consider any government policies or subs...read more

Add your answer

Q41. What are indexes, views? (DBMS)

Ans.

Indexes are data structures that improve the speed of data retrieval operations in a database. Views are virtual tables created from queries.

  • Indexes are used to quickly locate data in a database by creating a sorted structure that allows for efficient searching.

  • Views are virtual tables that are created by executing a query and storing the result set as a named object.

  • Indexes can be created on one or more columns of a table to improve the performance of SELECT, UPDATE, and DEL...read more

Add your answer
Q42. SQL Question

Different Types of Triggers In SQL Server

Add your answer
Q43. C# Question

Difference Between ViewData, ViewBag and TempData

Add your answer
Q44. Check Palindrome

Ninja is given an integer ‘N’. Ninja wants to find whether the binary representation of integer ‘N’ is palindrome or not.

A palindrome is a sequence of characters that reads the same backward as...read more

Add your answer
Q45. Project Explanation

Explain your best project?
Why machine learning project?
What are data frames?
Difference between classification and regression.

Add your answer
Q46. Theoretical problem

What is hashing?
How to remove collision in hashing?
What is open addressing ?

Add your answer

Q47. What is agile methodology?

Ans.

Agile methodology is an iterative and incremental approach to software development.

  • Agile methodology emphasizes collaboration, flexibility, and customer satisfaction.

  • It involves breaking down the project into small, manageable tasks called user stories.

  • Teams work in short iterations called sprints, typically 1-4 weeks long.

  • Regular meetings like daily stand-ups and sprint reviews are held to track progress and gather feedback.

  • Adaptability and continuous improvement are key pri...read more

Add your answer

Q48. 1) Model building process of one of my previous projects 2) Random forest hyperparameters 3) ROC curve, using the ROC curve to set probability cutoffs in classication models 4) Gradient boosting techniques like...

read more
Ans.

Data Scientist interview questions on model building, random forest, ROC curve, gradient boosting, and real estate valuation

  • For model building, I followed the CRISP-DM process and used various algorithms like logistic regression, decision trees, and random forest

  • Random forest hyperparameters include number of trees, maximum depth, minimum samples split, and minimum samples leaf

  • ROC curve is a graphical representation of the trade-off between true positive rate and false positi...read more

Add your answer
Q49. DBMS

What is the difference between while keyword and having keyword?

Add your answer

Q50. Estimate the market size of 4K and 8K display screens

Ans.

Estimating the market size of 4K and 8K display screens.

  • Analyze sales data and market research reports

  • Consider the adoption rate of 4K and 8K technology

  • Evaluate the market demand from various industries (entertainment, gaming, advertising, etc.)

  • Assess the pricing and availability of 4K and 8K displays

  • Factor in the growth potential and competition in the market

Add your answer

Q51. • Output and error checking of sql queries.

Ans.

Output and error checking of SQL queries involves verifying the correctness of query results and handling any potential errors.

  • Verify the correctness of query results by comparing them with expected output

  • Check for syntax errors and correct them before executing the query

  • Handle runtime errors by using try-catch blocks or error handling mechanisms

  • Validate input parameters to prevent SQL injection attacks

  • Use appropriate error logging and reporting mechanisms to track and resolv...read more

Add your answer

Q52. What is managed and unmanaged code?

Ans.

Managed code is executed by the CLR while unmanaged code is executed by the operating system.

  • Managed code is written in languages like C#, VB.NET, etc. and is compiled into Intermediate Language (IL) code.

  • Unmanaged code is written in languages like C, C++, etc. and is compiled into machine code.

  • Managed code is executed by the Common Language Runtime (CLR) while unmanaged code is executed by the operating system.

  • Managed code provides automatic memory management while unmanaged...read more

Add your answer

Q53. • Estimate the % of smokers in institute

Ans.

Estimating the percentage of smokers in an institute.

  • Collect data on the number of smokers and the total population in the institute.

  • Calculate the ratio of smokers to the total population.

  • Multiply the ratio by 100 to get the percentage of smokers.

  • Consider conducting surveys or analyzing existing data to gather information.

  • Take into account any potential biases or limitations in the data collection process.

Add your answer

Q54. Build a stack using queues and vice versa

Ans.

Stack using queues: push() - enqueue to queue1, pop() - dequeue from queue2 after transferring n-1 elements from queue1 to queue2

  • To push an element, enqueue it to queue1

  • To pop an element, transfer n-1 elements from queue1 to queue2, dequeue the last element from queue1 and swap the names of queue1 and queue2

  • Queue using stacks: enqueue() - push to stack1, dequeue() - pop from stack2 after transferring all elements from stack1 to stack2

  • To implement a queue using stacks, maintai...read more

Add your answer

Q55. Difference between in, out and ref parameters?

Ans.

In, out and ref are parameter modifiers in C# used to pass arguments to a method.

  • In parameters are read-only and used to pass values to a method.

  • Out parameters are write-only and used to return values from a method.

  • Ref parameters are read-write and used to pass values to and from a method.

  • In parameters are passed by value, out and ref parameters are passed by reference.

  • In parameters are optional, out and ref parameters are required.

Add your answer

Q56. differences between them and how it is better than linear regression

Ans.

Logistic regression is used for classification while linear regression is used for regression analysis.

  • Logistic regression predicts the probability of an event occurring, while linear regression predicts the value of a continuous variable.

  • Logistic regression uses a sigmoid function to map input values to a probability between 0 and 1.

  • Linear regression assumes a linear relationship between the independent and dependent variables, while logistic regression does not.

  • Logistic reg...read more

Add your answer

Q57. Difference between viewdata, viewbag and tempdata?

Ans.

Difference between viewdata, viewbag and tempdata

  • ViewData is used to pass data from controller to view

  • ViewBag is a dynamic object used to pass data from controller to view

  • TempData is used to pass data between controller actions or redirects

Add your answer

Q58. What are triggers and types?

Ans.

Triggers are database objects that automatically execute in response to certain events.

  • Triggers can be used to enforce business rules or perform complex calculations.

  • Types of triggers include DML triggers, DDL triggers, and logon triggers.

  • DML triggers fire in response to data manipulation language (DML) events, such as INSERT, UPDATE, or DELETE statements.

  • DDL triggers fire in response to data definition language (DDL) events, such as CREATE, ALTER, or DROP statements.

  • Logon tr...read more

Add your answer
Q59. What are access modifier explain all using code.
Add your answer
Q60. DBMS

What is normal form and explain BCNF.

Add your answer

Q61. Is there any process improvements you have done so far? Explain it in details and what were outcome of it?

Ans.

Yes, I have implemented a process improvement by automating the invoice approval process.

  • Implemented an automated invoice approval process using software

  • Reduced the time taken for invoice approval from 2 days to 1 day

  • Eliminated errors caused by manual data entry

  • Improved communication between departments

  • Increased efficiency and productivity

Add your answer

Q62. What are the responsibilities and how to creat dashboards, how to creat workflows and how to creat field configuration

Ans.

As a Jira Administrator, responsibilities include creating dashboards, workflows, and field configurations.

  • Creating dashboards involves selecting relevant gadgets and configuring them to display the desired information.

  • Creating workflows involves defining the steps and transitions for an issue to move through its lifecycle.

  • Creating field configurations involves customizing the fields that appear on an issue and their behavior.

  • Jira Administrators are also responsible for manag...read more

Add your answer

Q63. 3. Check if two strings are anagram

Ans.

Check if two strings are anagram

  • Sort both strings and compare them

  • Use a hash table to count the frequency of each character in both strings and compare the hash tables

  • Use an array of size 26 to count the frequency of each letter in both strings and compare the arrays

Add your answer

Q64. What are architectural, structural, behavioural design patterns? Why we need them?

Ans.

Architectural, structural, and behavioral design patterns are reusable solutions to common software design problems.

  • Architectural patterns define the overall structure of a software system

  • Structural patterns describe how objects and classes can be combined to form larger structures

  • Behavioral patterns focus on communication between objects and how they operate together

  • Design patterns help to improve software quality, maintainability, and scalability

  • Examples include MVC, Single...read more

Add your answer
Q65. Operating System

Questions on fragmentation and segmentation

Add your answer

Q66. Implement doubly linked list

Ans.

Doubly linked list is a data structure where each node has a pointer to both previous and next nodes.

  • Create a Node class with data, prev and next pointers

  • Create a LinkedList class with head and tail pointers

  • Implement methods to add, remove and traverse nodes

Add your answer

Q67. What is Is Relationship and As Relationship in oops?

Ans.

Is Relationship and As Relationship are two types of relationships in object-oriented programming.

  • Is Relationship is a type of relationship where one class is a subset of another class.

  • As Relationship is a type of relationship where one class is a type of another class.

  • Is Relationship is denoted by a solid line with a closed arrowhead pointing towards the superclass.

  • As Relationship is denoted by a dotted line with an open arrowhead pointing towards the superclass.

  • Example of I...read more

Add your answer

Q68. Why UHG; Analytics?

Ans.

UHG; Analytics offers a unique opportunity to combine my passion for data analysis with the healthcare industry.

  • UHG is a leading healthcare organization with a strong focus on analytics.

  • Working at UHG will allow me to contribute to improving healthcare outcomes through data-driven insights.

  • The company's commitment to innovation and cutting-edge technology aligns with my career goals.

  • UHG's vast data resources provide an excellent platform for conducting meaningful analytics pr...read more

Add your answer

Q69. Guesstimate : India's Deodrant market

Ans.

The Indian deodorant market is a growing industry with a large consumer base and increasing demand for premium and natural products.

  • The deodorant market in India has been experiencing steady growth over the years.

  • The market is driven by factors such as increasing disposable income, urbanization, and changing lifestyles.

  • There is a growing awareness among consumers about personal hygiene and grooming, leading to higher demand for deodorants.

  • The market is highly competitive with...read more

Add your answer

Q70. What is the code for a patient on dialysis

Ans.

The code for a patient on dialysis is I12.0

  • The ICD-10 code for a patient on dialysis is I12.0

  • This code is used to indicate chronic kidney disease stage 5

  • It is important to accurately assign the correct code for patients on dialysis for proper billing and medical records

Add your answer
Q71. DBMS

Questions on SQL queries and JOINS

Add your answer

Q72. what is SVM (Support Vector Machines

Ans.

SVM is a machine learning algorithm used for classification and regression analysis.

  • SVM finds the best hyperplane that separates data into different classes.

  • It works by maximizing the margin between the hyperplane and the closest data points.

  • SVM can handle both linear and non-linear data using kernel functions.

  • It is widely used in image classification, text classification, and bioinformatics.

  • SVM has been shown to be effective in solving complex problems with high-dimensional ...read more

Add your answer

Q73. 2. Reverse number with sign

Ans.

Reverse a number while preserving its sign.

  • Extract the sign of the number using Math.sign()

  • Reverse the absolute value of the number using string manipulation

  • Convert the reversed string back to a number and multiply by the sign

Add your answer
Q74. Difference between overloading and overriding.
Add your answer
Q75. Write code for catching an exception .
Add your answer

Q76. What is Screen scraping and data scraping

Ans.

Screen scraping is extracting data from a website's HTML code, while data scraping is extracting data from various sources.

  • Screen scraping involves extracting data from the visual representation of a website, usually using automation tools like web scrapers.

  • Data scraping involves extracting data from various sources such as databases, APIs, and documents.

  • Both screen scraping and data scraping are used to collect and analyze data for various purposes like market research, pric...read more

Add your answer

Q77. Explain override. Why we need virtual?

Ans.

Override is used to provide a new implementation of a method in a subclass. Virtual is needed to allow the method to be overridden.

  • Override is used to change the behavior of a method in a subclass

  • Virtual is used to allow the method to be overridden in a subclass

  • Without virtual, a subclass cannot override a method from its parent class

  • Override is used to implement polymorphism in object-oriented programming

Add your answer

Q78. Write a program to sort the array and remove duplicates.

Ans.

Program to sort and remove duplicates from an array.

  • Use built-in sort() method to sort the array in ascending order.

  • Loop through the sorted array and remove duplicates using filter() method.

  • Return the sorted and duplicate-free array.

Add your answer

Q79. How to settle down the employees bonus?

Ans.

Settling employee bonuses involves determining the amount, timing, and method of payment.

  • Determine the amount of the bonus based on performance, company profits, or other factors

  • Decide on the timing of the bonus, such as end of year or quarterly

  • Choose the method of payment, such as cash, check, or direct deposit

  • Communicate the bonus structure and payment details clearly to employees

  • Consider tax implications and ensure compliance with labor laws

Add your answer

Q80. What is Active Directory

Ans.

Active Directory is a Microsoft service that manages network resources and user accounts.

  • It is used to authenticate and authorize users and computers in a Windows domain network.

  • It stores information about users, groups, computers, and other network resources.

  • It allows administrators to manage network resources from a central location.

  • It provides a hierarchical structure for organizing network resources.

  • It supports single sign-on for users to access multiple network resources...read more

Add your answer

Q81. Difference b/w full and partial selectors

Ans.

Full selectors select all descendants of a specified element, while partial selectors select only direct children.

  • Full selectors use a space between the parent and child elements, while partial selectors use the > symbol.

  • Full selectors are more general and can target multiple levels of descendants, while partial selectors are more specific and target only direct children.

  • Example of full selector: div p selects all

    elements inside

    elements.

  • Example of partial selector: div > ...read more

Add your answer

Q82. What is Medical coding

Ans.

Medical coding is the process of converting healthcare diagnoses, procedures, medical services, and equipment into universal medical alphanumeric codes.

  • Medical coding helps in accurately documenting patient diagnoses and treatments for insurance claims and medical records

  • Coders use code sets like ICD-10, CPT, and HCPCS to assign specific codes to medical procedures and diagnoses

  • These codes ensure uniformity and accuracy in medical billing and reimbursement processes

  • Medical co...read more

Add your answer

Q83. How do you deal with an angry customer?

Ans.

I remain calm, listen actively, empathize with their situation, apologize for any inconvenience, and work towards finding a solution.

  • Remain calm and composed

  • Listen actively to understand their concerns

  • Empathize with their situation

  • Apologize for any inconvenience caused

  • Work towards finding a solution that satisfies the customer

Add your answer

Q84. Random forest splitting mechanisms details

Ans.

Random forest uses decision trees to split data into subsets based on feature importance.

  • Random forest builds multiple decision trees and selects the best split based on feature importance.

  • Each decision tree splits data into subsets based on a randomly selected subset of features.

  • The best split is determined by minimizing impurity or maximizing information gain.

  • Random forest can handle missing values and outliers.

  • Random forest can be used for classification and regression tas...read more

Add your answer

Q85. What is multi threading

Ans.

Multi threading is the ability of a program to perform multiple tasks concurrently.

  • It allows for better utilization of CPU resources

  • It can improve program performance and responsiveness

  • Examples include web servers handling multiple requests simultaneously and video games rendering graphics while processing user input

Add your answer

Q86. CA technology tools experience, if any?

Ans.

Yes, I have experience with CA technology tools.

  • I have worked extensively with CA Agile Central (formerly Rally) for project management and agile development.

  • I am familiar with CA Service Virtualization for creating virtual services and simulating real-world scenarios.

  • I have used CA Release Automation for continuous delivery and deployment.

  • I have experience with CA Application Performance Management for monitoring and optimizing application performance.

  • I have worked with CA U...read more

Add your answer

Q87. What is extend keyword

Ans.

The extend keyword is used to add properties and methods to an existing object.

  • Used in JavaScript to add properties and methods to an object

  • Can be used to inherit properties and methods from a parent object

  • Syntax: Object.assign(target, ...sources)

  • Example: const obj1 = {a: 1}; const obj2 = {b: 2}; const obj3 = {...obj1, ...obj2};

Add your answer

Q88. What is claims

Ans.

Claims are requests made by individuals or organizations to an insurance company for compensation or coverage for a loss or damage.

  • Claims are made to insurance companies for compensation or coverage.

  • They are requests for reimbursement or payment for a loss or damage.

  • Claims can be related to various types of insurance, such as auto, health, property, or liability.

  • Insurance companies evaluate claims to determine if they are valid and covered by the policy.

  • Claims processing invo...read more

Add your answer

Q89. What is Zaur in Microsoft

Ans.

Zaur is not a term or technology in Microsoft.

  • Zaur is not a known term or technology in Microsoft

  • It is possible that the interviewer may have misspoken or meant to ask a different question

  • It is important to clarify the question with the interviewer to provide an accurate answer

Add your answer

Q90. How many element of em

Ans.

The question is unclear and lacks context, making it difficult to provide a specific answer.

  • Ask for clarification on what 'element of em' refers to

  • Request more information on the context of the question

Add your answer

Q91. Why is here no unity

Ans.

Lack of unity can be attributed to various factors such as cultural differences, political divisions, and social inequalities.

  • Cultural differences: Different cultures may have conflicting values, beliefs, and traditions, leading to a lack of unity.

  • Political divisions: Political parties or ideologies can create divisions and hinder unity among people.

  • Social inequalities: Economic disparities, discrimination, and social injustices can create divisions and prevent unity.

  • Lack of ...read more

Add your answer

Q92. Sepsis guidelines

Ans.

Sepsis guidelines are protocols followed by healthcare providers to diagnose and treat sepsis in patients.

  • Sepsis guidelines help healthcare providers quickly identify and treat sepsis to prevent complications.

  • Guidelines typically include criteria for diagnosing sepsis, such as the presence of infection and signs of systemic inflammation.

  • Treatment protocols may involve administering antibiotics, fluids, and other supportive care.

  • Early recognition and treatment of sepsis are cr...read more

Add your answer

More about working at UnitedHealth

HQ - Minnetonka, Minnesota, United States (USA)
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Infosystems Software And Consulting

based on 17 interviews in the last 1 year
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

4.0
 • 688 Interview Questions
3.4
 • 398 Interview Questions
3.8
 • 331 Interview Questions
4.1
 • 269 Interview Questions
4.2
 • 207 Interview Questions
3.7
 • 136 Interview Questions
View all
Top UnitedHealth 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
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

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