Tip 1 : For analog one can refer to Behzad Razavi on YouTube
Tip 2 : Be clear with working of zener diode, rectifier opération and pn junction ideal model
Tip 3 : A project using Arduino Uno is plus, and sufficient knowledge of Python
Tip 1 : Be simple and clear in your points. Don't exaggerate
Tip 2 : Be prepare with with hobbies mentioned in resume
It was an objective round based on mainly technical stuff consists of two parts. First was cognitive ability and other was domain ability. It was around 4:30 PM. Platform used make us on both camera and screen recording.
It was a coding round. Two coding questions.



1. Roots of both the given trees are same.
2. Left subtree of the root of the first tree is the mirror of the right subtree of the root of the second tree.
3. Right subtree of the root of the first tree is the mirror of the left subtree of the root of the second tree.
For example,both the given trees are mirror image of each other:




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).
It was around 1:00 PM. It was technical round. Interviewer started with project then tested my basics. Interview overall was good. Interviewer was good too.
It was HR round. Time was around 4 PM.

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