Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio.
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.
My exam timing was in the evening. The first round was an MCQ round, after clearing the first round there was a coding round followed by an interview after result declaration.



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
Declare two variables ‘i’ and ‘j’ and initialize ‘i’ with ‘M’ and ‘j’ with ‘N’. Then we compare the last element of both arrays/lists and we insert the larger element to the end of the ‘ARR1’. We continue this process while all the elements of ‘ARR2’ are not merged into ‘ARR1’.
In this round, I was asked 2 coding questions - one from recursion and another one from sorting. This was followed by some questions from OOPs.



Can you solve this using not more than O(S) extra space, where S is the sum of all elements of the given array?
We have two choices whether to include that element in the sum or exclude that element.
Now if we choose the current number to add to the sum then recur for index 'I'+1
If we don’t choose the current index element to sum then recur for index 'I'+1 and this way we check if there is a subset with sum 'TOTALSUM'/2 in the given array.



Sort the whole array in decreasing order and take out the first ‘K’ elements one by one to return as the answer.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: