i
Labcorp
Filter interviews by
I applied via Approached by Company and was interviewed in Nov 2022. There were 2 interview rounds.
Top trending discussions
I appeared for an interview in Mar 2024.
I have 5 years of experience working in financial services, specializing in risk management and compliance.
Managed risk assessment processes for high-profile clients
Developed and implemented compliance policies and procedures
Conducted internal audits to ensure regulatory compliance
Collaborated with cross-functional teams to address compliance issues
Provided training and guidance to junior staff members
I have 5 years of experience working in financial services, specializing in risk management and compliance.
Managed risk assessment processes for high-profile clients
Developed and implemented compliance policies and procedures
Conducted regular audits to ensure adherence to regulatory requirements
posted on 14 Apr 2024
General questions about self, work experience and knowledge
posted on 22 Jul 2023
Peak purity is the measure of the homogeneity of a peak in a chromatogram, while % area normalization is a method to compare the relative amounts of different peaks in a chromatogram.
Peak purity is determined by comparing the spectra at different points within a peak to ensure they are similar, indicating a pure compound.
% area normalization involves adjusting the peak areas in a chromatogram to a common reference poin...
PDA detector measures absorbance at multiple wavelengths, while DAD detector measures absorbance at all wavelengths simultaneously.
PDA detector uses a photodiode array to measure absorbance at multiple wavelengths, allowing for more detailed analysis.
DAD detector uses a diode array to measure absorbance at all wavelengths simultaneously, providing faster and more comprehensive data.
PDA detector is more suitable for app...
Beer's Ambert Law states that the absorbance of a substance is directly proportional to its concentration and the path length of the light through the sample.
Beer's Ambert Law is commonly used in spectrophotometry to determine the concentration of a substance in a solution.
The law is expressed as A = εlc, where A is the absorbance, ε is the molar absorptivity, l is the path length, and c is the concentration.
It is appl...
Developing RS method development involves understanding the research objectives, selecting appropriate techniques, optimizing parameters, and validating the method.
Understand the research objectives and requirements
Select appropriate techniques based on the sample and analyte properties
Optimize method parameters such as mobile phase composition, column temperature, and flow rate
Validate the method by assessing paramete...
posted on 24 Dec 2024
I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.
I am a dedicated and experienced Senior Process Associate with a strong background in process improvement and team management.
Over 5 years of experience in process improvement and optimization
Skilled in team management and leadership
Proficient in data analysis and reporting
Strong communication and problem-solving skills
Previous experience in implementing new processes to increase efficiency
I worked as a Senior Process Associate at my last company, where I managed a team and streamlined processes to improve efficiency.
Managed a team of associates to ensure daily tasks were completed accurately and on time
Analyzed current processes and implemented improvements to increase efficiency
Collaborated with other departments to streamline communication and workflow
Trained new associates on company processes and pr
I handle hyperactive customers by remaining calm, actively listening to their concerns, empathizing with their emotions, and finding solutions to address their needs.
Remain calm and composed
Listen actively to understand their concerns
Empathize with their emotions
Find solutions to address their needs
Offer reassurance and support
Yes, I am comfortable working in rotational shifts as I have prior experience and understand the importance of flexibility in this role.
I have previous experience working in rotational shifts and have adapted well to the changing schedules.
I understand the importance of flexibility in this role and am willing to adjust my schedule as needed.
I am committed to meeting the requirements of the job, including working in rot...
posted on 24 Dec 2024
I applied via Naukri.com and was interviewed before Dec 2023. There were 2 interview rounds.
Experienced process associate with a background in data analysis and project management.
Over 5 years of experience in process improvement and optimization
Skilled in data analysis and reporting using tools like Excel and Tableau
Managed cross-functional projects to streamline operations and increase efficiency
Strong communication and problem-solving skills
Bachelor's degree in Business Administration
I worked as a Senior Process Associate at my last company, where I managed a team and streamlined processes to improve efficiency.
Managed a team of associates to ensure tasks were completed accurately and on time
Identified inefficiencies in processes and implemented solutions to improve workflow
Collaborated with other departments to streamline communication and enhance cross-functional teamwork
I handle highly demanding customers by remaining calm, listening actively, empathizing with their concerns, and finding solutions to meet their needs.
Remain calm and composed in all interactions
Listen actively to understand their concerns
Empathize with their situation and show understanding
Find solutions to meet their needs and exceed expectations
Yes, I am comfortable working in rotational shifts as I have prior experience and understand the importance of flexibility in this role.
I have previous experience working in rotational shifts and have successfully adapted to different schedules.
I understand the importance of flexibility in this role and am willing to adjust my schedule as needed.
I am aware of the potential challenges of working in rotational shifts, bu...
posted on 9 Nov 2022
I applied via Approached by Company and was interviewed before Nov 2021. There were 4 interview rounds.
Basic problem solving easy to medium level
Sorting algorithm arranges elements in a specific order.
Choose an appropriate sorting algorithm based on the data size and type.
Common sorting algorithms include bubble sort, insertion sort, merge sort, quicksort, and selection sort.
Implement the chosen algorithm in the programming language of choice.
Test the algorithm with various input sizes and types to ensure correctness and efficiency.
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
Examples of non-generic collections include
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) ...
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...
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
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
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
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 ...
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
Yes, I am a leader.
I have experience leading teams in previous projects.
I am able to communicate effectively and motivate team members.
I am proactive in identifying and solving problems.
I am able to delegate tasks and trust team members to complete them.
I am constantly seeking to improve my leadership skills through learning and feedback.
posted on 19 Jan 2015
I am a recent computer science graduate with experience in software development and a passion for learning new technologies.
Graduated with a degree in computer science
Experience in software development
Passionate about learning new technologies
The company is a software development firm.
The company specializes in software development.
It has a team of experienced software engineers.
The company has worked on various projects for clients in different industries.
It is known for delivering high-quality software solutions.
The company values innovation and creativity in its work.
based on 1 interview
Interview experience
based on 2 reviews
Rating in categories
Safety Data Analyst
51
salaries
| ₹4.5 L/yr - ₹6.5 L/yr |
Safety Science Analyst
51
salaries
| ₹3 L/yr - ₹5.6 L/yr |
Clinical Project Coordinator
50
salaries
| ₹3 L/yr - ₹4.8 L/yr |
Junior Regulatory Affairs Specialist
48
salaries
| ₹3.5 L/yr - ₹5.5 L/yr |
Junior Safety Data Analyst
44
salaries
| ₹3.8 L/yr - ₹5.5 L/yr |
UnitedHealth
Johnson & Johnson
Yashoda Hospitals
GE Healthcare