Tip 1 : OOPs concept
Tip 2 : Try to explain using real life example
Tip 3 : Explain Project nicely
Tip 1 : Don't write things that you don't know
Tip 2 : Try to build professional resume with the help overleaf, etc.
My exam timing was evening. First round was MCQs, after clearing first round there was coding round followed by 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]
Sort both arrays separately then merge.
They asked OOPs concept.
One question from recursion and sorting.



1. Each array element should belong to exactly one of the subsets.
2. Subsets need not always be contiguous.
For example, for the array : [1, 2, 3], some of the possible divisions are
a) {1,2} and {3}
b) {1,3} and {2}.
3. Subset-sum is the sum of all the elements in that subset.
Input: 'n' = 5, 'arr' = [3, 1, 5, 2, 8].
Ouput: 1
Explanation: We can partition the given array into {3, 1, 5} and {2, 8}.
This will give us the minimum possible absolute difference i.e. (10 - 9 = 1).
Include the current item in subset S1 and recur for the remaining items.
Include the current item from the subset S2 and recur for the remaining items.

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: