Filter interviews by
I have a Bachelor's degree in Business Administration with a focus on operations management.
Bachelor's degree in Business Administration
Focus on operations management
Use SQL query to fetch maximum and minimum salary from emp table
Use SELECT MAX(salary) FROM emp to fetch maximum salary
Use SELECT MIN(salary) FROM emp to fetch minimum salary
AE refers to any adverse event, while SAE refers to a serious adverse event.
AE can be any undesirable experience associated with the use of a medical product, whether or not considered related to the product.
SAE is a specific type of AE that results in death, is life-threatening, requires inpatient hospitalization or prolongation of existing hospitalization, results in persistent or significant disability/incapaci...
In my previous role, I used ticketing tools such as ServiceNow and JIRA to manage and track customer issues.
ServiceNow
JIRA
Find pairs from array whose sum is equal to target.
Use a hashmap to store the difference between target and each element in the array.
Iterate through the array and check if the current element exists in the hashmap.
If it exists, then a pair with the sum equal to target is found.
Java program to split a string into an array of strings
Use the split() method of the String class to split the string based on a delimiter
Store the result in an array of strings
Example: String str = 'Hello,World'; String[] parts = str.split(',');
OOPs concepts are fundamental principles of Object-Oriented Programming, including Inheritance, Encapsulation, Polymorphism, and Abstraction.
Inheritance: Allows a class to inherit properties and behavior from another class.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Polymorphism: Ability to present the same interface for different data types.
Abstraction: Hiding the complex ...
The process of submission involves gathering required information, completing necessary forms, and submitting them through the appropriate channels.
Gather all necessary information and documents
Complete any required forms accurately and thoroughly
Submit the forms through the designated method (online, in person, etc.)
Follow up to ensure submission was successful
Apex coding exercise to demonstrate problem-solving and coding skills in Salesforce development.
Understand the requirements clearly before coding.
Use proper data structures like Lists and Maps for efficiency.
Implement bulk-safe operations to handle large data volumes.
Write unit tests to ensure code reliability and coverage.
Follow best practices for Apex coding, such as avoiding SOQL in loops.
Spacy is an open-source library for natural language processing. Models can be saved using the 'to_disk' method.
Spacy is a popular Python library for NLP tasks
It provides pre-trained models for various languages
To save a model, use the 'to_disk' method of the model object
Saved models can be loaded later using the 'load' method
I appeared for an interview in Apr 2025, where I was asked the following questions.
Efficiently processing millions of records requires strategic batching and optimization techniques.
Use Batch Apex to process records in manageable chunks, leveraging the execute method to handle 50k records at a time.
Implement a Queueable Apex pattern to chain multiple jobs, allowing for asynchronous processing of large datasets.
Utilize Salesforce's Bulk API for handling large volumes of records, which can process up t...
I appeared for an interview in Dec 2024, where I was asked the following questions.
I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.
I applied via Walk-in and was interviewed in Dec 2024. There was 1 interview round.
I am a data-driven professional with a background in analytics and a passion for problem-solving.
I have a degree in statistics and experience working with various data analysis tools.
I have successfully implemented data-driven strategies to improve business performance.
I am skilled in data visualization and communicating complex findings to stakeholders.
Managed a project to implement a predictive analytics model for a retail company.
Conducted data analysis to identify key variables for the model
Built and validated the predictive model using machine learning algorithms
Collaborated with IT team to integrate the model into the company's existing systems
Provided training to end users on how to interpret and use the model's predictions
I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.
I have extensive experience with Excel, Python, R, and SQL for data analysis and programming tasks.
Proficient in Excel for data manipulation, analysis, and visualization
Skilled in Python for data cleaning, statistical analysis, and machine learning
Familiar with R for statistical modeling and data visualization
Experience with SQL for querying databases and extracting insights
I bring a unique blend of analytical skills, industry knowledge, and a passion for data-driven decision-making.
Strong analytical skills: I have experience using tools like Excel and SQL to analyze large datasets, leading to actionable insights.
Industry knowledge: I have worked in the finance sector, understanding market trends and consumer behavior, which can benefit your team.
Problem-solving mindset: In my previous ro...
I have completed various project works including data analysis, process improvement, and stakeholder communication.
Led a team in implementing a new data analysis tool to streamline reporting processes
Developed a project plan to improve efficiency in inventory management
Communicated project updates to stakeholders through regular meetings and reports
I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.
I am a highly skilled Automation Engineer with a strong background in programming and problem-solving.
Experienced in designing, developing, and implementing automated test scripts
Proficient in programming languages such as Python, Java, and C++
Familiar with testing tools like Selenium and Appium
Strong analytical and troubleshooting skills
Excellent communication and teamwork abilities
Developed a robotic arm project using PLC and HMI technologies
Designed the control system using Programmable Logic Controller (PLC)
Implemented the Human Machine Interface (HMI) for user interaction
Integrated sensors for feedback and control
Utilized ladder logic programming for PLC
Tested and debugged the system for efficiency
I am comfortable with multiple programming languages, including Python, Java, and C++.
Proficient in Python for automation scripting
Experience with Java for backend development
Knowledge of C++ for system programming
Comfortable switching between languages based on project requirements
OOPs stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.
OOPs focuses on creating objects that contain data and methods to manipulate that data.
Encapsulation, inheritance, and polymorphism are key principles of OOPs.
Examples of OOP languages include Java, C++, and Python.
Overloading is when multiple methods have the same name but different parameters, while overriding is when a subclass provides a specific implementation for a method in the superclass.
Overloading involves multiple methods with the same name but different parameters
Overriding involves a subclass providing a specific implementation for a method in the superclass
Overloading is determined at compile time, while overriding ...
I faced challenges with integrating a new automation tool and resolved it by conducting thorough research and seeking help from experts.
Encountered compatibility issues with the new automation tool
Researched online forums and documentation for solutions
Sought advice from colleagues and experts in the field
Implemented workarounds and conducted thorough testing to ensure functionality
CSS is a styling language used to design web pages, while Bootstrap is a front-end framework that helps in building responsive and mobile-first websites.
CSS is a styling language used to control the look and feel of a website.
Bootstrap is a front-end framework that provides pre-designed templates and components for building responsive websites.
CSS requires manual coding for styling elements, while Bootstrap offers read...
Swap two values without using a third variable in a program
Use bitwise XOR operation to swap two values without using a third variable
Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5
Ensure the values are of the same data type for bitwise XOR operation to work correctly
Program to remove vowels from string array input by user
Iterate through each string in the array
For each string, iterate through each character and remove vowels
Use a function to check if a character is a vowel (e.g. 'aeiouAEIOU')
To find the 2nd maximum salary from the employee table
Order the salaries in descending order
Use LIMIT 1,1 to get the second highest salary
Joins are used to combine rows from two or more tables based on a related column between them.
Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.
INNER JOIN returns rows when there is at least one match in both tables.
LEFT JOIN returns all rows from the left table and the matched rows from the right table.
RIGHT JOIN returns all rows from the right table and the matched rows from the left table.
FULL ...
REST API is a type of web service that allows communication between different systems over HTTP.
REST stands for Representational State Transfer
Uses standard HTTP methods like GET, POST, PUT, DELETE
Data is transferred in JSON or XML format
Stateless communication between client and server
Example: Twitter API allows developers to access and interact with Twitter data
Challenges in automation include tool selection, maintenance, and handling dynamic elements.
Tool selection - choosing the right automation tool for the project requirements
Maintenance - keeping automation scripts up to date with application changes
Handling dynamic elements - dealing with elements on the page that change frequently
Data management - ensuring data integrity and accuracy in automated tests
Top trending discussions
Some of the top questions asked at the IQVIA interview -
The duration of IQVIA interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 374 interview experiences
Difficulty level
Duration
based on 4.5k reviews
Rating in categories
Associate Consultant
1.2k
salaries
| ₹5 L/yr - ₹21 L/yr |
Consultant
1.2k
salaries
| ₹8.6 L/yr - ₹30 L/yr |
Clinical Data Specialist
834
salaries
| ₹3.5 L/yr - ₹11.9 L/yr |
Software Developer
810
salaries
| ₹5.5 L/yr - ₹20 L/yr |
Drug Safety Associate
723
salaries
| ₹2 L/yr - ₹6.1 L/yr |
Syngene International
SGS
Aragen Life Sciences
SAI Life Sciences