Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
It was scheduled on hackerrank platform. Two coding questions were there, the interviewer was very polite and he explained to me the extract of the questions.



Consider ARR = [1, 2, 3, 4, 4], the duplicate integer value present in the array is 4. Hence, the answer is 4 in this case.
A duplicate number is always present in the given array.



If the input string is "abbc", then all the possible palindromic substrings would be: ["a", "b", "b", c", "bb"] and hence, the output will be 5 since we have 5 substrings in total which form a palindrome.
A string is said to be a 'Palindrome' if it is read the same forwards and backwards.
For example, “abba” is a palindrome, but “abbc” is not.
A 'Substring' is a contiguous sequence of characters within a string.
For example, "a", "b", "c", "ab", "bc", "abc" are substrings of "abc".
This was technical round number second. A coding question which was really difficult to solve and some questions from DBMS were part of this round.
What is Join?
What is Concatenation?
Explain delete and drop function.
2 and 4 are coprime-twin pairs.
1 and 2 are not coprime-twin pairs.
The score of a sequence a1, a2, .. an is the number of indices (i, j) such that i < j and the pair (ai, aj) forms a coprime-twin pair.
You are given an array A of positive integers and Q queries of the form L, R. For each query, determine the score of the subarray [L, R] inclusive.
Note: A subarray is a contiguous non-empty segment of the array.
It was a HR round well passed, it just seemed like a normal discussion with the HR.
Tell me about your self
Explain project
Why you want to work with us?
What is your future plan?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?