Filter interviews by
Abstract classes can have implementation; interfaces cannot. Both define contracts for derived classes.
Abstract classes can have both abstract methods (without implementation) and concrete methods (with implementation).
Interfaces can only declare methods (no implementation) and properties, serving as a contract for implementing classes.
A class can inherit from only one abstract class but can implement multiple int...
You can swap two numbers using arithmetic operations or bitwise XOR without a third variable.
Using Addition and Subtraction: a = a + b b = a - b a = a - b Example: a=5, b=3 -> a=8, b=5 -> a=5, b=3
Using Bitwise XOR: a = a ^ b b = a ^ b a = a ^ b Example: a=5 (0101), b=3 (0011) -> a=6 (0110), b=5 (0101) -> a=3 (0011), b=6 (0110)
Segmentation and targeting methodologies help businesses identify and reach specific customer groups effectively.
Demographic Segmentation: Dividing the market based on age, gender, income, etc. (e.g., targeting millennials for tech products).
Geographic Segmentation: Segmenting based on location (e.g., marketing winter clothing in colder regions).
Psychographic Segmentation: Based on lifestyle, values, and personali...
Incremental and SCD types in IICS manage data updates efficiently in ETL processes.
Incremental Load: Only new or changed records are processed, reducing load time.
Example: Loading only new patient records from a database each day.
SCD Type 1: Overwrites old data with new data without keeping history.
Example: Updating a patient's address without retaining the old address.
SCD Type 2: Maintains historical data by crea...
PROC SORT in SAS organizes data in a specified order based on one or more variables.
Use PROC SORT to arrange data in ascending or descending order.
Syntax: PROC SORT DATA=dataset_name OUT=sorted_dataset_name;
Example: PROC SORT DATA=employees OUT=sorted_employees; BY salary; RUN;
You can sort by multiple variables: BY department salary; to sort by department first, then by salary within each department.
Use the NODUPK...
PROC FREQUENCY in SAS generates frequency tables for categorical data, summarizing counts and percentages.
Used to analyze the distribution of categorical variables.
Syntax: PROC FREQUENCY DATA=dataset; TABLES variable; RUN;
Example: PROC FREQUENCY DATA=sashelp.cars; TABLES Make; RUN; generates frequency counts of car makes.
Can include options like NOPRINT to suppress output or OUT= to create a dataset of frequencies...
I have extensive experience as a System Engineer handling hardware, software, and network issues.
Managed hardware installations and troubleshooting for servers, desktops, and peripherals
Installed, configured, and maintained software applications and operating systems
Diagnosed and resolved network connectivity issues
Performed regular maintenance tasks to ensure system reliability
Collaborated with cross-functional t...
I position myself as a strategic thinker, leveraging data analysis to drive informed decision-making and optimize business outcomes.
I analyze market trends to identify opportunities, like recognizing a shift towards sustainable products in consumer behavior.
I collaborate with cross-functional teams to align strategies, such as working with marketing to enhance product positioning.
I utilize data visualization tools...
Successfully led a marketing campaign that increased brand awareness and engagement, resulting in a 30% growth in social media followers.
Developed and executed a social media strategy that boosted engagement by 50% over three months.
Collaborated with a team to launch a product that exceeded sales targets by 20% in the first quarter.
Organized a community event that attracted over 200 participants, enhancing local b...
Key challenges faced include stakeholder alignment, resource management, and scope creep.
Stakeholder alignment: Ensuring all stakeholders are on the same page and have clear expectations.
Resource management: Balancing resources to meet project deadlines and budget constraints.
Scope creep: Managing changes to project scope to prevent delays and budget overruns.
I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.
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
Indexes and exceptions are used to optimize database performance and handle errors in code.
Indexes are used to quickly retrieve data from a database by creating a sorted list of values.
Exceptions are used to handle errors in code and prevent the program from crashing.
Examples: Creating indexes on frequently queried columns like 'id' or 'timestamp'. Using try-catch blocks to handle exceptions like divide by zero.
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