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 UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is 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
  • Q2. What are your salary expectations

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 QA Engineer

 (1)

 Senior Software Engineer Testing

 (1)

 Senior Software Development Engineer

 (1)

 Senior Software Engineer 2

 (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
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were two question on DSA

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
IQVIA Senior Software Engineer Salary
based on 520 salaries
₹9.5 L/yr - ₹35 L/yr
52% 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.7

Job security

4.0

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 55 Reviews and Ratings
Consultant
1.1k salaries
unlock blur

₹8.4 L/yr - ₹30 L/yr

Associate Consultant
1.1k salaries
unlock blur

₹4.8 L/yr - ₹19.5 L/yr

Clinical Data Specialist
759 salaries
unlock blur

₹3.5 L/yr - ₹11.5 L/yr

Drug Safety Associate
749 salaries
unlock blur

₹2 L/yr - ₹8.5 L/yr

Software Developer
747 salaries
unlock blur

₹4.7 L/yr - ₹18.8 L/yr

Explore more salaries
Compare IQVIA with

Cognizant

3.8
Compare

Accenture

3.8
Compare

TCS

3.7
Compare

Infosys

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