Upload Button Icon Add office photos

IQVIA

Compare button icon Compare button icon Compare

Filter interviews by

IQVIA Senior Software Engineer Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top IQVIA Senior Software Engineer Interview Questions and Answers

  • Q1. Design a employee-Manager class. Write method to display employee organizational hierarchy like we see in Microsoft Teams Org tab
  • Q2. Get 7th highest salary without CTE
  • Q3. Delegates, significance of it in C#
View all 11 questions

IQVIA Senior Software Engineer Interview Experiences

9 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is JAVA in software
  • Ans. 

    JAVA is a high-level programming language used for developing applications and software.

    • Object-oriented programming language

    • Platform-independent

    • Used for web development, mobile apps, enterprise software

    • Has a large standard library

    • Supports multithreading and networking

  • Answered by AI
  • Q2. What is oracle in software
  • Ans. 

    Oracle in software refers to Oracle Corporation, a multinational computer technology corporation known for its database management systems.

    • Oracle is a leading provider of relational database management systems (RDBMS).

    • It offers a wide range of products and services for data management, cloud applications, and more.

    • Oracle databases are widely used in enterprise applications for storing and managing data efficiently.

    • Exam...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Code for Hello World
  • Ans. 

    Simple code to print 'Hello World'

    • Use a print statement to display 'Hello World'

    • In Python: print('Hello World')

    • In Java: System.out.println('Hello World')

  • Answered by AI
  • Q2. Code for printing algo
  • Ans. 

    Code for printing algorithm in software development.

    • Use loops to iterate through the data to be printed.

    • Consider formatting options such as spacing and alignment.

    • Handle edge cases like empty input or invalid data.

    • Example: for (int i = 0; i < array.length; i++) { System.out.println(array[i]); }

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Different arrays in string types
  • Ans. 

    Arrays of string types are collections of strings stored in a single variable.

    • Arrays can be declared and initialized with string values like ['apple', 'banana', 'cherry'].

    • Access individual strings in the array using index like array[0] for 'apple'.

    • Perform operations like sorting or filtering on arrays of strings.

  • Answered by AI
  • Q2. Different strings in array texts
  • Ans. 

    Comparing different strings in an array of texts.

    • Iterate through the array and compare each string with the others.

    • Use a nested loop to compare each pair of strings.

    • Consider using a hash map to store the frequency of each unique string for efficient comparison.

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Different dS in software engineer
  • Ans. 

    Different design patterns in software engineering

    • Creational patterns (e.g. Singleton, Factory)

    • Structural patterns (e.g. Adapter, Decorator)

    • Behavioral patterns (e.g. Observer, Strategy)

  • Answered by AI
  • Q2. Diff types in string test types
  • Ans. 

    Different types of string test types include equality, containment, length, case sensitivity, and pattern matching.

    • Equality test: comparing two strings to see if they are exactly the same

    • Containment test: checking if a string contains a specific substring

    • Length test: determining the length of a string

    • Case sensitivity test: checking if two strings are equal while considering case

    • Pattern matching test: using regular expr

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Solid principles 2. Design patterns 3. Background services .net core 4. .net core basics 5. Reverse a sentence along with a word

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All the asp.net and MVC questions need.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic and advanced concepts of JavaScript / NodeJS covered.

Round 2 - HR 

(2 Questions)

  • Q1. Why are you looking for job change
  • Ans. 

    Looking for new challenges and growth opportunities in a dynamic work environment.

    • Seeking opportunities for career advancement

    • Interested in working on new technologies and projects

    • Desire for a more collaborative team environment

    • Looking for a company with a strong focus on innovation and development

  • Answered by AI
  • Q2. What are your salary expectations
  • Ans. 

    My salary expectations are in line with industry standards for a Senior Software Engineer with my level of experience.

    • Research industry standards for Senior Software Engineer salaries in the local area

    • Consider my years of experience, skills, and qualifications when determining salary expectations

    • Be prepared to negotiate based on the overall compensation package offered

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshers are not entertained. Minimum 3-4 yrs experience they look for. Expected to join in 30-45days.

IQVIA interview questions for designations

 Senior Software Engineer 2

 (1)

 Senior Software QA Engineer

 (1)

 Senior Software Engineer Testing

 (1)

 Senior Software Development Engineer

 (1)

 Software Engineer

 (5)

 Senior Software Developer

 (1)

 Associate Software Engineer

 (4)

 Software Engineer II

 (1)

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. 1. Is string a value type of reference type? 2. Big O - for loop, binary search, hash table lookup 3. Can you use object as a key in a dictionary? - answer is yes, using GetHashCode 4. Get 7th highest sal...
  • Q2. Design a employee-Manager class. Write method to display employee organizational hierarchy like we see in Microsoft Teams Org tab
  • Ans. 

    Design an employee-Manager class and write a method to display employee organizational hierarchy.

    • Create an Employee class with attributes like name, id, managerId, etc.

    • Create a Manager class that inherits from Employee class and has a list of employees under them.

    • Write a method to display the hierarchy using recursion.

    • Use a data structure like a dictionary to store the employees and their managers.

    • Consider edge cases l

  • Answered by AI
  • Q3. Get 7th highest salary without CTE
  • Ans. 

    Get 7th highest salary without CTE

    • Use subquery to get distinct salaries

    • Order the salaries in descending order

    • Use LIMIT and OFFSET to get the 7th highest salary

  • Answered by AI
  • Q4. Delegates, significance of it in C#
  • Ans. 

    Delegates are a type-safe function pointers in C# used to encapsulate methods and pass them as arguments.

    • Delegates allow for event-driven programming

    • Delegates can be used to implement callbacks

    • Delegates can be chained together to create a multicast delegate

    • Delegates can be used to implement the observer pattern

    • Delegates can be used to implement the command pattern

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IQVIA Senior Software Engineer interview:
  • Big O
  • HLD
  • C#
  • Javascript
Interview preparation tips for other job seekers - Know your CS fundamentals very well. Practice HLD & LLD for few scenarios like Employee-Manager, Customer-Order, Student-school etc.

Skills evaluated in this interview

Get interview-ready with Top IQVIA Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Solution for a given problem by writing codes

Round 2 - Aptitude Test 

Feasible check and fitment assessment

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOPS basics, System design

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview had 3 tech rounds and was mostly to check the candidates knowledge depth in their respective fields

Interview Questionnaire 

1 Question

  • Q1. Iqvia most of the projects are communites, all questions are on communities

Interview Preparation Tips

Interview preparation tips for other job seekers - customization and communities'

I applied via Recruitment Consultant and was interviewed in May 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. C# fundamental, delegates and it's type, generics, Io etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview never difficult nor too easy it depends on projects requirement and interviewer but If have good then easily you can crack interview.

Total five round interview
1-system test
2-technical first round
3- technical second round
4-inteview with client Means product owner
5-HR

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Anagram of two strings in java
  • Ans. 

    Java program to check if two strings are anagrams

    • Create a function that takes two strings as input

    • Convert both strings to character arrays and sort them

    • Check if the sorted arrays are equal to determine if they are anagrams

  • Answered by AI
  • Q2. Insert and select query in MySQL
  • Ans. 

    Insert and select data in MySQL using SQL queries

    • Use INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...); to insert data

    • Use SELECT * FROM table_name; to select all data from a table

    • Use SELECT column1, column2 FROM table_name WHERE condition; to select specific data based on a condition

  • Answered by AI
  • Q3. Get and Post APIs in rest
  • Ans. 

    GET and POST are HTTP methods used in REST APIs for retrieving and sending data.

    • GET method is used to retrieve data from a server

    • POST method is used to send data to a server

    • GET requests are idempotent, while POST requests are not

    • GET requests should only be used for retrieving data, not for modifying data

    • Example: GET request to retrieve a list of users - GET /users

    • Example: POST request to create a new user - POST /users

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was technical round and there were three panelists. Started with alot of database questions and core java question. Prepare well about your project working in the company. I couldn't clear this round recieved rejection mail after two weeks.

Skills evaluated in this interview

IQVIA Interview FAQs

How many rounds are there in IQVIA Senior Software Engineer interview?
IQVIA interview process usually has 2 rounds. The most common rounds in the IQVIA interview process are Technical, One-on-one Round and Coding Test.
What are the top questions asked in IQVIA Senior Software Engineer interview?

Some of the top questions asked at the IQVIA Senior Software Engineer interview -

  1. Design a employee-Manager class. Write method to display employee organizationa...read more
  2. Get 7th highest salary without ...read more
  3. Delegates, significance of it in...read more

Tell us how to improve this page.

IQVIA Senior Software Engineer Interview Process

based on 8 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more

Interview Questions from Similar Companies

ICON Plc Interview Questions
4.1
 • 73 Interviews
Syneos Health Interview Questions
3.8
 • 45 Interviews
Equinox Labs Interview Questions
3.8
 • 34 Interviews
View all
IQVIA Senior Software Engineer Salary
based on 509 salaries
₹9.3 L/yr - ₹35 L/yr
47% more than the average Senior Software Engineer Salary in India
View more details

IQVIA Senior Software Engineer Reviews and Ratings

based on 55 reviews

3.9/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.5

Salary

3.8

Job security

4.0

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 55 Reviews and Ratings
Associate Consultant
1.1k salaries
unlock blur

₹5 L/yr - ₹19.1 L/yr

Consultant
1.1k salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Clinical Data Specialist
778 salaries
unlock blur

₹3.5 L/yr - ₹11.5 L/yr

Drug Safety Associate
744 salaries
unlock blur

₹2 L/yr - ₹8.5 L/yr

Software Developer
731 salaries
unlock blur

₹5.5 L/yr - ₹19 L/yr

Explore more salaries
Compare IQVIA with

Syngene International

3.9
Compare

Aragen Life Sciences

4.0
Compare

SAI Life Sciences

3.9
Compare

Parexel International

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview