Sort array elements by their frequency and in case of tie, keep the order they arrive in the original array.
IQVIA
Founding year | |
Company Website | https://www.iqvia.com/ |
Career Website | https://jobs.iqvia.com/en/search-jobs |
Technologies Used | .Net, Python, Javascript, Angular |
Introduction
IQVIA is an American Fortune 500 and S&P 500 multinational company serving the combined industries of health information technology and clinical research. They hire professionals from Bangladesh as remote.
Interview Stages
The preliminary test of IQVIA consists of 3 stage
- Aptitude: Understanding, Vocabulary, Reasoning, Maths
- Automata: Easy level coding test
- Automata Pro: Medium level coding test
Then if selected there will be a technical interview.
Questions
Given a string of lowercase characters. Find the count of characters which only occured once in the string.
Given n,Find all primes less than equal n.
Given coordinates x,y and radius r of two circle. Find the area of intersection between them. Print area in double with 6 digit precision.
Given a list of ranges. Find the length covered by at least one of the range.
input: [[1,3],[2,5],[6,7]]
output: 5
explanation: range [1,5],[6,7] are covered by at least one range
Given the connection between cities, Count the number of disjoint clusters of cities.
Given a string of characters S and a specific character C. Find the number of occurance of C in S.
Given a range [l,r]. Find all primes between this range.
Given two binary string A,B. Find the minimum number of bit flips to change string A to string B.
2 shops sell apples in lots. their price is given. You cannot buy any loose apples. find minimum cost of buying exactly n apples.
Given an integer array. Sort the array in nondecreasing order using frequency count of elements in the array.
Given an array of thresholds. For each threshold print the first negative number.
What happens when you type google.com and press enter in your search bar
Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security systems connected and it will automatically contact the police if two adjacent houses were broken into on the same night. Given an integer array nums representing the amount of money of each house, return the maximum amount of money you can rob tonight without alerting the police
Input given is an int array, which may or may not contain positive, negative or zero values. Write a program to find out the two numbers which gives the highest product.
Given an array having 0 to n-1 unsorted. Return a new array having their indices
Given two strings, find the number of times the second string occurs in the first string, whether continuous or discontinuous.
Given an array of positive integers. We need to make the given array a ‘Palindrome’. The only allowed operation is”merging” (of two adjacent elements). Merging two adjacent elements means replacing them with their sum. The task is to find the array of maximum length with the minimum number of merge operations required to make the given array a ‘Palindrome’.
Given a lowercase string s, find the length L of the longest prefix p such that the entire string is exactly p repeated k times for some integer k ≥ 2. If no such prefix exists, return -1.
For string: "ababab", L = 2; for "aaaaaa", L = 3; for "abcd", L = -1.