Tip 1 : Practice on daily basis
Tip 2 : Do at least 2 projects
Tip 3 : Go for communication skills practice
Tip 1 : Have some projects on resume
Tip 2 : Do not put false things on resume



If we are given an array ARR=[1,2,3] then the power set P(ARR) of the set ARR is: [ [], [1], [2], [1,2], [3], [1,3], [2,3], [1,2,3] ]
For every subset 'X' present in power set P(ARR) of set ARR, X must be sorted i.e. in the example above:
P1(ARR) = [ [], [1], [2], [1,2], [3], [1,3], [2,3], [1,2,3] ]
P2(ARR) = [ [], [1], [1,2,3], [2], [1,2], [3], [1,3], [2,3] ]
P3(ARR) = [ [], [1], [2], [1,2], [3], [1,3], [2,3], [2,3,1] ]
P1(ARR) and P2(ARR) will be considered correct power sets but P3(ARR) will not be considered correct because there the last subset [2, 3, 1] is not sorted.



Design Youtube.
Salary discussion.
Introduction.
Why this company?
Tip 1 : Strong communication skills
Tip 2 : Practice HR round questions from google.

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