Optum
100+ Interview Questions and Answers
You have been given two integers ‘X’ and ‘Y’ which are the first two integers of a series and an integer ‘N’. You have to find the Nth number of the series using the Fibo...read more
Given a string ‘STR’ which consists of uppercase and lowercase characters and spaces. Count the number of consonants in the string.
A consonant is an English alphabet character that ...read more
You are given two sorted linked lists. You have to merge them to produce a combined sorted linked list. You need to return the head of the final linked list.
Note:
The given linked ...read more
You have been given a linked list of integers. Your task is to write a function that deletes a node from a given position, 'POS'.
Note :
Assume that the Indexing for the linked lis...read more
You are given a string ('STR') of length 'N'. Find the longest palindromic substring. If there is more than one palindromic substring with the maximum length, return the one with th...read more
You are given an integer ‘NUM’ . Your task is to find out whether this number is an Armstrong number or not.
A k-digit number ‘NUM’ is an Armstrong number if and only if the k-th power of each d...read more
You have been given two integer arrays/list(ARR1 and ARR2) of size N and M, respectively. You need to print their intersection; An intersection for this problem can be defined when both the ar...read more
You are given a certain format of books and their authors.
For example -
NameOfAuthor1 Book1 Book2
NameOfAuthor2 Book1
Your task is to print the given information in the following manner:
1. Nam...read more
Ninjaland is a country consisting of ‘N’ states and ‘M’ paths. There are two types of paths that connect any two states. One is the normal path, and the other is a special path. Both paths have...read more
You have been given an array/list 'ARR' of integers. Your task is to find the second largest element present in the 'ARR'.
Note:
a) Duplicate elements may be present. b) If no...read more
Three DBMS questions were asked: -
1. Difference between delete, truncate, drop commands
2. Explain the concept of various types of keys used in DBMS along with examples
3. Queries including group by a...read more
We have to complete a total of ‘N’ works. Now, each work can be done on only one of the two special days given in 2 different arrays ‘day1’ and ‘day2’ respectively.
day1[i] denotes ...read more
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
You are given an array consisting of 'N' distinct positive integers and a number 'K'. Your task is to find the kth largest element in the array.
Example:
Consider the ar...read more
Given a 2D grid having N Rows and M Columns. Each cell of the grid has a character among [ 'U', 'L', 'D', 'R' ] written on it, denoting Up, Left, Down, and Right respectively and indic...read more
You are given an integer 'X' and your task is to find an integer 'Y' such that the bitwise XOR of the integers 'X' and 'Y' give the maximum possible value. Th...read more
You are given an integer 'N'. For a given 'N' x 'N' chessboard, find a way to place 'N' queens such that no queen can attack any other queen on the chessboard.
A queen can be killed when it lies in the ...read more
Given a string (STR) of length N, you have to create a new string by performing the following operation:
Take the smallest character from the first 'K' characters of STR, remove it from STR...read more
You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.
Note:
We cannot use the element at a given inde...read more
Asked me about the concepts of OOPS. Asked me to implement classes and objects. Then asked me to implement inheritance. Asked the difference between overloading and overriding and asked to im...read more
You are given an infinite array consisting of only ones and zeroes, in sorted order. You have to find the index of the first occurrence of 1.
Example:
If the array is 0 0 0 0 ...read more
Q22. What is copay coins and out of pocket
Copay, coinsurance, and out-of-pocket expenses are all terms used to describe the portion of medical costs that patients are responsible for paying.
Copay is a fixed amount that patients pay for a specific medical service or prescription drug.
Coinsurance is a percentage of the cost of a medical service that patients are responsible for paying.
Out-of-pocket expenses are the total amount of money patients pay for medical services and prescription drugs that are not covered by in...read more
You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. You have to colour this graph in two different colours, say blue and red such that no two vertices connected by an...read more
Given two unsorted arrays of non-negative integers, 'arr1' and 'arr2' of size 'N' and 'M', respectively. Your task is to find the pair of elements (one from each array), such t...read more
I was asked more about the 4 pillars of OOPS, BCNF form, STL, what is JVM, differences between overloading and overriding, startup sequence of computers, etc.
Then he had put a situation like ...read more
How to measure 9 minutes using only a 4 minute and 7 minute hourglass.
Q27. Difference between DM type 1 and DM type 2
DM type 1 is an autoimmune disease where the body attacks insulin-producing cells, while DM type 2 is a metabolic disorder where the body becomes resistant to insulin.
DM type 1 is usually diagnosed in children and young adults, while DM type 2 is more common in adults over 40.
DM type 1 requires insulin injections for treatment, while DM type 2 can often be managed with lifestyle changes and medication.
DM type 1 is less common than DM type 2, accounting for only 5-10% of all d...read more
Q28. How to make restrict a class so that it can not be inherited
To restrict a class from being inherited, mark it as final.
Use the final keyword before the class declaration.
Final classes cannot be subclassed.
Any attempt to subclass a final class will result in a compile-time error.
Q29. What are constructors in dot net core and how will you overload a constructor.
Constructors are special methods used to initialize objects. Overloading allows multiple constructors with different parameters.
Constructors have the same name as the class and no return type.
Overloading constructors allows for different ways to initialize objects.
Example: public class Person { public Person(string name) { } public Person(string name, int age) { } }
Overloaded constructors can call each other using the 'this' keyword.
Next, as I did python so these were questions were asked:
"Docstring, Lambda. Parse in python and Delete a file in python"
Q31. Arrange the array in decreasing order without extra space and without sort function & reverse function.
Use bubble sort algorithm to rearrange the array in decreasing order.
Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.
Repeat this process until the array is sorted in decreasing order.
Example: ['apple', 'banana', 'cherry'] -> ['cherry', 'banana', 'apple']
Q32. How far you are good at automate the infra using scripting or coding?
I am highly skilled in automating infrastructure using scripting and coding.
Proficient in scripting languages like Python, Bash, and PowerShell
Experience in using configuration management tools like Ansible and Chef
Familiarity with cloud platforms like AWS and Azure and their automation tools
Implemented infrastructure as code using tools like Terraform
Automated deployment pipelines using tools like Jenkins and GitLab CI/CD
Examples: Wrote Python scripts to automate AWS EC2 ins...read more
Q33. What is the difference between obj open and obj open by handle
obj open vs obj open by handle
obj open opens a file and returns a file object
obj open by handle opens a file using a file descriptor
obj open by handle is faster than obj open
obj open by handle is used when you already have a file descriptor
She asked me about differences between C++ & JAVA, ACID properties, DBMS languages, 4 pillars of oops.
What is a Join? List its different types.
Q35. Diabetes , its type and difference
Diabetes is a chronic condition that affects how your body processes blood sugar.
Type 1 diabetes is an autoimmune disease where the body attacks the cells in the pancreas that produce insulin.
Type 2 diabetes is a condition where the body becomes resistant to insulin or doesn't produce enough insulin.
Gestational diabetes occurs during pregnancy and usually goes away after delivery.
Diabetes can lead to serious health complications such as heart disease, kidney disease, and nerv...read more
Q36. Tell me about Authorization denial and how you handle COB denial in case of primary payer and secondary payer
Authorization and COB denial handling for primary and secondary payers
Authorization denial can occur when a service or procedure is not covered by the insurance plan
COB denial happens when the primary payer has not paid the full amount and the secondary payer is responsible for the remaining balance
To handle authorization denial, I would review the insurance policy and communicate with the provider to determine if an appeal is necessary
For COB denial, I would verify the prima...read more
Q37. How to change the work object status of the multiple cases from pending to closed.
To change work object status of multiple cases from pending to closed.
Identify the cases that need to be closed
Update the status of each case to closed
Save the changes made to the cases
Use a loop to perform the above steps for multiple cases
Example: Use a query to identify all cases with pending status and update their status to closed
Q38. What is encapsulation, TDP, UDP, Normalization etc
Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.
Encapsulation helps in hiding the internal state of an object and restricting access to it.
It allows for better control over the data by preventing direct access from outside the class.
Example: In object-oriented programming, classes are used to implement encapsulation by combining data attributes and methods.
TDP stands for Transmission Control Protocol, a connection-oriented...read more
Q39. What are the recent technologies you worked with?
I have worked with React, Node.js, and AWS recently.
Developed a web application using React and Node.js
Deployed the application on AWS EC2 instance
Used AWS S3 for storing and retrieving files
Implemented authentication and authorization using AWS Cognito
Integrated Stripe payment gateway for online payments
Q40. Can u explain about pharmacovigilance
Pharmacovigilance is the science and activities related to the detection, assessment, understanding, and prevention of adverse effects or any other drug-related problems.
Pharmacovigilance is the process of monitoring and evaluating the safety and effectiveness of drugs.
It involves collecting and analyzing data on adverse drug reactions (ADRs) and other drug-related problems.
Pharmacovigilance aims to ensure patient safety and improve the overall quality of healthcare.
It plays ...read more
Q41. Types of myocardial infarctions
There are two types of myocardial infarctions: STEMI and NSTEMI.
STEMI (ST-elevation myocardial infarction) is caused by a complete blockage of a coronary artery.
NSTEMI (non-ST-elevation myocardial infarction) is caused by a partial blockage of a coronary artery.
STEMI is considered more severe and requires immediate medical attention.
NSTEMI may not show as many symptoms and can be more difficult to diagnose.
Examples of symptoms include chest pain, shortness of breath, and naus...read more
Q42. what will be your approach if you have to develop a framework from scratch?
My approach would be to first understand the project requirements, identify the tools and technologies needed, and then design a modular and scalable framework.
Understand project requirements
Identify tools and technologies needed
Design a modular and scalable framework
Create a folder structure for the framework
Define coding standards and guidelines
Implement reusable functions and libraries
Integrate with version control system
Implement reporting and logging mechanisms
Create tes...read more
Q43. What is claims?
Claims refer to requests made by policyholders to insurance companies for compensation for damages or losses covered by their insurance policy.
Claims are requests made by policyholders to insurance companies for compensation for damages or losses covered by their insurance policy.
Claims can be related to various types of insurance policies such as auto, home, health, and life insurance.
The process of filing a claim typically involves providing documentation of the damages or ...read more
Normal aptitude and English and reasoning questions.
5th highest salary in a list of salaries.
Q46. What is UB04 BILL TYPE Facility type POS
UB04 is a standard claim form used by healthcare providers to bill for services provided to patients in a facility setting.
UB04 is also known as the CMS-1450 form
It is used for billing Medicare, Medicaid, and private insurance companies
The bill type field on the form indicates the type of service being billed, such as inpatient or outpatient
The facility type field indicates the type of healthcare facility, such as hospital or nursing home
The POS field indicates the place of s...read more
Q47. write a program to reverse a string, remove duplicates from a string, String s="Test$123.QA", output should be Test 123 QA
Program to reverse a string and remove duplicates from it.
Create a function to reverse the string using a loop or built-in function
Create a function to remove duplicates using a loop or built-in function
Split the string by the delimiter and join it with space
Q48. How to handle attrition and shrinkage
Attrition and shrinkage can be handled by implementing effective retention strategies and optimizing workforce management.
Implementing employee engagement programs to boost morale and job satisfaction
Offering competitive compensation and benefits packages
Providing opportunities for career growth and development
Optimizing scheduling and staffing to minimize overstaffing and understaffing
Conducting regular performance evaluations and providing feedback to employees
Identifying a...read more
Q49. What is accruals explain with example
Accruals are expenses incurred but not yet paid or recorded in the books.
Accruals are a way of recognizing expenses in the period they are incurred, rather than when they are paid.
They are recorded as a liability on the balance sheet until they are paid.
Examples of accruals include salaries and wages, interest, and taxes.
Accruals are important for accurate financial reporting and forecasting.
Q50. Bacteria can grow in how many days
Bacteria can grow in as little as 20 minutes to several days depending on the type and environmental conditions.
The growth rate of bacteria varies depending on the type of bacteria and the environmental conditions.
Some bacteria can double in number every 20 minutes, while others may take several days to grow.
Factors that affect bacterial growth include temperature, pH level, moisture, and nutrient availability.
Examples of fast-growing bacteria include E. coli and Salmonella, ...read more
Q51. What is it that makes a company different from the others?
A company's unique value proposition, culture, innovation, and customer experience sets it apart from others.
Unique value proposition: what the company offers that others don't
Culture: the company's values, beliefs, and practices
Innovation: the ability to create new and better products/services
Customer experience: how the company interacts with and satisfies its customers
Examples: Apple's design and innovation, Zappos' customer service, Google's company culture
Q52. What task do u perform as automation testing activity?
As an automation testing activity, I perform tasks such as creating and executing automated test scripts, analyzing test results, and reporting defects.
Creating and maintaining automated test scripts using tools like Selenium, Appium, or TestComplete
Executing automated test scripts and analyzing test results to identify defects
Reporting defects and working with developers to resolve them
Integrating automated tests into the continuous integration and delivery pipeline
Collabora...read more
Q53. What are the different exceptions you came across?
I have come across various exceptions in my role as a Quality Analyst, including data discrepancies, system errors, and process deviations.
Data discrepancies between different systems or sources
System errors such as crashes or bugs affecting quality metrics
Process deviations from established procedures or standards
Incorrect data entry leading to quality issues
Q54. What is capacity planning in detail
Capacity planning is the process of determining the production capacity needed by an organization to meet changing demands for its products.
It involves forecasting future demand and determining the resources needed to meet that demand
It helps in optimizing the utilization of resources and reducing costs
It involves analyzing historical data, market trends, and customer behavior to make informed decisions
It helps in identifying bottlenecks and taking corrective actions to impro...read more
Q55. How to improve quality and production
Improving quality and production requires a focus on process optimization and employee training.
Identify areas of inefficiency and implement process improvements
Invest in employee training and development to improve skills and knowledge
Regularly review and analyze production data to identify areas for improvement
Implement quality control measures to ensure consistent output
Encourage employee feedback and suggestions for improvement
Q56. Journal entry of prepaid and outstanding expense
Prepaid expenses are assets paid in advance while outstanding expenses are liabilities yet to be paid.
Prepaid expenses are recorded as assets on the balance sheet until they are used or expire.
Journal entry for prepaid expense: Debit Prepaid Expense, Credit Cash/Bank.
Outstanding expenses are recorded as liabilities on the balance sheet until they are paid.
Journal entry for outstanding expense: Debit Expense, Credit Accounts Payable.
Adjusting entries are made at the end of the...read more
Q57. What is the one thing you want to expereince?
I want to experience living in a different country and immersing myself in a new culture.
Traveling to a foreign country and learning about their customs and traditions
Trying new foods and experiencing different ways of life
Making friends with locals and exploring the local attractions
Q58. what are layers of skin? Enlist systems present in human body. Describe urinary system what are harmones secreted by thyroid gland.
The layers of skin are epidermis, dermis, and hypodermis. The human body has various systems including the urinary system.
Layers of skin: epidermis, dermis, and hypodermis
Systems in the human body: urinary system, respiratory system, circulatory system, digestive system, etc.
Urinary system: responsible for filtering waste products from the blood and producing urine
Hormones secreted by the thyroid gland: thyroxine (T4) and triiodothyronine (T3)
Q59. Explian the process how you start kr end your work?
I start my work by reviewing my to-do list and prioritizing tasks. I end my work by reviewing what I have accomplished and planning for the next day.
Review to-do list and prioritize tasks
Set goals for the day
Take breaks as needed
Review accomplishments at the end of the day
Plan for the next day
Organize workspace before leaving
Q60. Cancer relted types and benign and maligqnt
Cancer can be classified as benign or malignant based on its behavior and potential to spread.
Benign tumors are non-cancerous and do not spread to other parts of the body.
Malignant tumors are cancerous and have the potential to invade nearby tissues and spread to other parts of the body.
Examples of benign tumors include lipomas and fibroids, while examples of malignant tumors include lung cancer and breast cancer.
Q61. What is Spark configuration for loading 1 TB data splited into 128MB chunks
Set executor memory to 8GB and executor cores to 5 for optimal performance.
Set spark.executor.memory to 8g
Set spark.executor.cores to 5
Set spark.default.parallelism to 8000
Use Hadoop InputFormat to read data in 128MB chunks
Q62. What are constraints in Sql
Constraints in SQL are rules that limit the type of data that can be inserted, updated or deleted from a table.
Constraints ensure data integrity and consistency.
Types of constraints include primary key, foreign key, unique, check, and default constraints.
Examples of constraints include ensuring a column cannot have null values, or ensuring a foreign key references a valid primary key.
Constraints can be added when creating a table or altered later using the ALTER TABLE stateme...read more
Q63. Difference between append to and append to map to
Append to adds an element to a list while append to map adds a key-value pair to a map.
Append to is used for lists while append to map is used for maps.
Append to adds an element to the end of the list while append to map adds a key-value pair to the map.
Append to map can also update the value of an existing key in the map.
Q64. Queue processor and job schedule difference
Queue processor manages tasks in a queue while job scheduler schedules tasks based on time or event triggers.
Queue processor manages tasks in a queue and processes them in a first-in, first-out (FIFO) order.
Job scheduler schedules tasks based on time or event triggers, and can prioritize tasks based on their importance.
Queue processor is typically used for real-time processing of tasks, while job scheduler is used for batch processing.
Examples of queue processors include Rabb...read more
Q65. Why blocked rules are carry forward
Blocked rules are carry forward to ensure consistency and prevent errors in future processing.
Blocked rules are rules that have been prevented from executing due to certain conditions not being met.
These rules are carried forward to ensure that they are not missed in future processing.
This helps to maintain consistency and prevent errors in the system.
For example, if a rule is blocked due to a missing data field, it will be carried forward until the missing field is filled in...read more
Q66. What are trials and now many
Trials are experiments conducted to test the effectiveness and safety of new drugs or treatments.
Trials are conducted to gather data on the effectiveness and safety of new drugs or treatments
Trials are usually conducted in phases, with each phase involving a different number of participants and objectives
Phase 1 trials involve a small number of healthy volunteers to test safety and dosage
Phase 2 trials involve a larger number of participants to test effectiveness and side eff...read more
Q67. Difference between relational and non relational dbms
Relational DBMS stores data in tables with predefined relationships, while non-relational DBMS stores data in flexible, schema-less formats.
Relational DBMS uses structured query language (SQL) for querying data
Non-relational DBMS can store data in various formats like key-value pairs, document-based, graph databases
Relational DBMS ensures data integrity through normalization and constraints
Non-relational DBMS offers better scalability and flexibility for handling unstructured...read more
Q68. difference betweeen class,abstract class,interface in python
Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.
Class is a blueprint for creating objects with attributes and methods.
Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.
Interface is a contract for classes to implement certain methods, but does not provide any implementation.
Q69. Use of superclass data transform check box
Superclass data transform checkbox is used to inherit data transform rules from a parent class.
When checked, the subclass will inherit the data transform rules from the superclass
This can save time and effort in creating duplicate data transform rules
Example: A superclass has a data transform rule to convert a date format, when the checkbox is checked in a subclass, it will also use the same rule
This checkbox is available in Pega platform for software development
Q70. What is Incident, problem and change management?
Incident, problem, and change management are processes used in IT to handle unexpected events, identify root causes of issues, and implement modifications to systems.
Incident management involves responding to and resolving unexpected events that disrupt normal operations, such as system crashes or network outages.
Problem management focuses on identifying the root causes of recurring incidents to prevent them from happening again in the future.
Change management is the process ...read more
Q71. How many bones in infants and adult
Infants have around 270 bones, which fuse together as they grow into adults with 206 bones.
Infants have approximately 270 bones due to the presence of more cartilage that eventually fuses into bone
Adults have 206 bones as some bones fuse together during growth and development
Examples include the fusion of skull bones and the reduction in the number of bones in the spine from infancy to adulthood
Q72. What are antihistamines
Antihistamines are drugs that block the action of histamine, a substance released by the body during an allergic reaction.
Antihistamines are commonly used to treat allergies, such as hay fever, hives, and allergic conjunctivitis.
They can also be used to treat motion sickness, insomnia, and anxiety.
Examples of antihistamines include loratadine, cetirizine, diphenhydramine, and fexofenadine.
Antihistamines can be taken orally, topically, or by injection.
They work by blocking the...read more
Q73. Say about child labour
Child labour is the employment of children in any work that deprives them of their childhood, education, and potential.
Child labour is a violation of human rights and is illegal in many countries.
It is prevalent in industries such as agriculture, mining, and manufacturing.
Children are often forced to work long hours in hazardous conditions for little pay.
Child labour can have negative effects on a child's physical and mental health, as well as their education and future prosp...read more
Q74. Temperature of normal atmosphere
The temperature of normal atmosphere varies depending on location and time of day.
The average temperature of the Earth's atmosphere is around 15°C (59°F).
The temperature can range from -89.2°C (-128.6°F) at the poles to 56.7°C (134.1°F) in deserts.
The temperature also varies with altitude, decreasing by about 6.5°C per kilometer.
The temperature can also vary with time of day, with the highest temperatures usually occurring in the afternoon.
Factors such as humidity, wind, and ...read more
Q75. How many system in human body
There are 11 major systems in the human body.
The circulatory system transports blood throughout the body.
The respiratory system is responsible for breathing and gas exchange.
The digestive system processes food and absorbs nutrients.
The nervous system controls body functions and sends signals.
The skeletal system provides support and protection.
The muscular system allows movement and generates heat.
The integumentary system includes the skin, hair, and nails.
The endocrine system...read more
Q76. How many bones in adult and infants
Adults have 206 bones while infants have around 270 bones which fuse together as they grow.
Adults have 206 bones in their body
Infants have around 270 bones which eventually fuse together as they grow
The number of bones in infants decreases as they age due to fusion of certain bones
Babies are born with around 270 bones, but as they grow, some bones fuse together to form larger bones
Q77. Difference between PO & Non PO
PO refers to Purchase Order while Non PO refers to expenses without a purchase order.
PO is a document that outlines the details of a purchase, including the items or services being purchased, the quantity, and the agreed-upon price.
Non PO expenses are those that do not require a purchase order, such as office supplies or travel expenses.
POs are typically used for larger purchases or purchases from new vendors, while non PO expenses are more routine and smaller in nature.
POs h...read more
Q78. Ph of water is acid or base
The pH of water can vary depending on its source and any added substances.
Pure water has a pH of 7, which is neutral
If water has a pH below 7, it is considered acidic
If water has a pH above 7, it is considered basic or alkaline
The pH of water can be affected by pollutants or chemicals added to it
Q79. Titrations and indicators used
Titrations are used to determine the concentration of a substance in a solution. Indicators are used to signal the endpoint of a titration.
Titrations involve adding a solution of known concentration to a solution of unknown concentration until a reaction is complete.
Indicators are added to the solution being titrated to signal the endpoint of the reaction.
Common indicators include phenolphthalein, methyl orange, and bromothymol blue.
Titrations can be acid-base, redox, or comp...read more
Q80. Can we use inheritance in classes used by CSS?
Yes, inheritance can be used in classes used by CSS.
Inheritance in CSS allows properties to be inherited by child elements from their parent elements.
This can be achieved using the 'inherit' keyword in CSS.
For example, if a parent element has a font color of red, child elements can inherit this color unless explicitly overridden.
Q81. Tell me the Physiology of circulatory system
The circulatory system is responsible for transporting oxygen, nutrients, hormones, and waste products throughout the body.
Consists of the heart, blood vessels, and blood
Heart pumps oxygen-rich blood to the body and oxygen-poor blood to the lungs
Arteries carry blood away from the heart, veins carry blood back to the heart
Capillaries allow for exchange of nutrients and waste products between blood and tissues
Q82. What is the use of previliges
Privileges are permissions granted to users or processes to perform specific actions or access certain resources.
Privileges are used to control access to sensitive data or critical system resources.
They can be assigned to individual users or groups.
Examples include read, write, execute, and delete permissions.
Privileges can also be used to restrict access to certain functions or features within an application.
Without proper privileges, users may not be able to perform necessa...read more
Q83. difference between driver.get() and navigate().to()?
driver.get() loads a new page while navigate().to() loads a new page or refreshes the current page.
driver.get() is a method of WebDriver interface that loads a new web page in the current browser window.
navigate().to() is a method of Navigation interface that loads a new web page or refreshes the current page.
driver.get() waits for the page to load completely before returning control to the script.
navigate().to() does not wait for the page to load completely before returning ...read more
Q84. Should Amazon reduce its Amazon prime membership price?
Yes, Amazon should consider reducing its Amazon prime membership price.
Reducing the price could attract more customers and increase revenue.
It could also help retain existing customers who may be considering cancelling their membership due to the price.
Amazon could offer different tiers of membership with varying prices to cater to different customer needs.
Lowering the price could also help Amazon compete with other streaming services like Netflix and Hulu.
However, Amazon sho...read more
Q85. How many systems in our bady
The human body is made up of 11 major organ systems.
There are 11 major organ systems in the human body, including the circulatory system, respiratory system, digestive system, nervous system, etc.
Each system has specific functions and organs that work together to maintain homeostasis.
For example, the circulatory system includes the heart, blood vessels, and blood, while the respiratory system includes the lungs and airways.
Q86. What is Duplicate payment
Duplicate payment is when a vendor is paid twice for the same invoice or service.
Occurs when a payment is made for the same invoice or service more than once
Can happen due to errors in the payment system or manual errors
Can result in financial loss for the company
Can be prevented by implementing proper controls and checks
Example: Paying an invoice twice due to a system glitch
Q87. What do you understand by OOPs?
OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.
OOPs focuses on creating objects that interact with each other to solve problems
It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation
Example: In a banking system, you can have classes like Account, Customer, and Transaction, each with their own properties and methods
Q88. Icd guidelines specifically hypertension and diabetes
ICD guidelines for hypertension and diabetes are important for accurate coding.
ICD guidelines provide specific codes for hypertension and diabetes based on severity and complications.
For hypertension, ICD-10-CM codes range from I10 to I15 depending on the type and severity of the condition.
For diabetes, ICD-10-CM codes range from E08 to E13 depending on the type, complications, and control of the condition.
ICD guidelines also provide coding instructions for related conditions...read more
Q89. What is Medical coding
Medical coding is the process of converting healthcare diagnoses, procedures, medical services, and equipment into universal alphanumeric codes.
Medical coders assign codes to patient records for billing, insurance claims, and data analysis.
Codes are used to communicate information between healthcare providers, insurance companies, and government agencies.
Examples of coding systems include ICD-10-CM for diagnoses and CPT for procedures.
Q90. Advantages of social network
Social networks offer various advantages such as connecting people, sharing information, and promoting businesses.
Social networks allow people to connect with friends and family from anywhere in the world.
They provide a platform for sharing information and ideas with a large audience.
Businesses can use social networks to promote their products and services to a wider audience.
Social networks can also be used for networking and finding job opportunities.
They can help raise awa...read more
Q91. Lambda law and it's uses
Lambda law states that the time required to fix a defect is proportional to the time elapsed since the defect was introduced.
Lambda law is used to estimate the time required to fix a defect.
It helps in identifying the root cause of the defect and fixing it.
Lambda law can be used to improve the software development process by reducing the defect rate.
For example, if a defect is introduced in the early stages of development, it can be fixed quickly and easily. However, if the d...read more
Q92. Spark df rdd ds difference, Configuration of setup
Difference between Spark df, rdd, ds and configuration setup
Spark df is a distributed collection of data organized into named columns
RDD is a fault-tolerant collection of elements that can be processed in parallel
DS is a type-safe version of df that provides compile-time type safety
Configuration setup involves setting up Spark properties like memory allocation, parallelism, etc.
Example: df.select('column').groupBy('column').agg({'column': 'sum'})
Example: rdd.map(lambda x: x*2...read more
Q93. What is ABN, Hpcs, ICD 10
ABN is a form used to inform patients of potential non-covered services. Hpcs is a coding system for healthcare procedures. ICD 10 is a coding system for medical diagnoses.
ABN stands for Advance Beneficiary Notice. It is used to inform Medicare patients of potential non-covered services and the cost they may incur.
Hpcs stands for Healthcare Common Procedure Coding System. It is used to code healthcare procedures and services for billing purposes.
ICD 10 stands for Internationa...read more
Q94. Why did you choose medical coding
I chose medical coding because of my interest in healthcare, attention to detail, and desire for a career with growth opportunities.
Passion for healthcare industry
Strong attention to detail
Opportunity for career growth and advancement
Interest in working behind the scenes in healthcare
Enjoy problem-solving and analytical tasks
Q95. What is DIFFERENT types of laceration repair
Different types of laceration repair include primary closure, secondary closure, and delayed closure.
Primary closure involves suturing the wound immediately after injury.
Secondary closure involves allowing the wound to heal partially before suturing.
Delayed closure involves waiting for the wound to heal significantly before suturing.
Examples: Primary closure for a clean, fresh laceration; Secondary closure for a contaminated wound; Delayed closure for a jagged laceration.
Q96. FInd the maximium capacity that a thief can thief can stole having W Knapsack capacity
Find maximum capacity a thief can steal with W Knapsack capacity.
Use dynamic programming approach.
Sort items by their value-to-weight ratio.
Iterate through items and update maximum value that can be stolen.
Q97. Speak something about water
Water is a vital resource for all living beings on Earth.
Water covers about 71% of the Earth's surface.
It is essential for hydration and bodily functions.
Water can exist in three states: solid, liquid, and gas.
It is used for various purposes such as agriculture, industry, and transportation.
Water pollution is a major concern affecting aquatic life and human health.
Q98. Explain any one system in detail
The respiratory system is responsible for the exchange of oxygen and carbon dioxide in the body.
Consists of organs such as the nose, trachea, lungs, and diaphragm
Air is inhaled through the nose or mouth, passes through the trachea, and enters the lungs
In the lungs, oxygen is absorbed into the bloodstream and carbon dioxide is expelled
The diaphragm helps in the process of breathing by contracting and relaxing
Respiratory diseases include asthma, chronic obstructive pulmonary di...read more
Q99. what is binary search
Binary search is a search algorithm that finds the position of a target value within a sorted array.
Divide and conquer approach
Compares target value with middle element of array
If target value is smaller, search left half; if larger, search right half
Repeat process until target value is found or subarray is empty
Q100. Memorable day
My memorable day was when I graduated from college.
I felt a sense of accomplishment and pride
My family and friends were there to celebrate with me
I received my diploma and took photos in my cap and gown
More about working at Optum
Top HR Questions asked in null
Interview Process at null
Top Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month