Upload Button Icon Add office photos

Filter interviews by

IQVIA SDE-2 Interview Questions and Answers

Updated 26 Nov 2021

IQVIA SDE-2 Interview Experiences

1 interview found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2021

I was interviewed before Nov 2020.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

  • Q1. 

    Palindromic Numbers Finder

    Given an integer 'N', your task is to identify all palindromic numbers from 1 to 'N'. These are numbers that read the same way forwards and backwards.

    Input:

    The first line pr...
  • Ans. Brute Force

    In this approach, iterate through the integers 1 to N, then check for each integer if it is a palindrome or not.

    To check if an integer is a palindrome, convert the integer into a string and check if it is equal to the reverse.

    We define a function isPalindrome(num), where we check if num is palindrome or not and return the result accordingly.

     

    Algorithm:

    • The function isPalindrome(num).
      • Convert the number nu...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Hard

  • Q1. Technical Question

    Problems related to DB design

  • Q2. 

    Minimum Knight Moves Problem

    Given a square chessboard of size N x N, determine the minimum number of moves a knight requires to reach a target position from a starting position.

    Input:

     The first line ...
  • Ans. Breadth-First Search

    Our intuition is to think of all the positions knight can reach from the current position. This problem can be seen as the shortest path in an unweighted graph. Hence, we use BFS to solve this problem. 

    A knight can move to 8 positions from (x,y). 

    (x, y) -> 

        (x + 2, y + 1)  

        (x + 2, y - 1)

        (x - 2, y + 1)

    &...

  • Answered Anonymously
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaNoIQVIA interview preparation:Topics to prepare for the interview - SQL, Spotfire, Iron Python, VBA Macros, PythonTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Focused on technical challenges.
Tip 3 : Hacker Rank usage

Application resume tips for other job seekers

Tip 1 : Highlight the tools
Tip 2 : Simple and crisp
Tip 3 : Brief explanation of the projects handled and the role that you have taken.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Consultant
1.1k salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Associate Consultant
1.1k salaries
unlock blur

₹4.8 L/yr - ₹18.5 L/yr

Clinical Data Specialist
764 salaries
unlock blur

₹3.5 L/yr - ₹11.5 L/yr

Drug Safety Associate
755 salaries
unlock blur

₹2.4 L/yr - ₹8.5 L/yr

Software Developer
704 salaries
unlock blur

₹4.9 L/yr - ₹18.9 L/yr

Explore more salaries
Compare IQVIA with

Cognizant

3.8
Compare

Accenture

3.9
Compare

TCS

3.7
Compare

Infosys

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