Tip 1 : Refer geeks for geeks coding problems
Tip 2 : Practice Coding questions from Hackerrank or Leetcode.
Tip 3 : DO at least 1 project
Tip 1 : Have some projects on resume.
Tip 2 : Mention your skill set like C, Java
Morning time
Environment was good.
No other significant activity
Interviewer was good



Here subset sum means sum of all elements of a subset of 'nums'. A subset of 'nums' is an array formed by removing some (possibly zero or all) elements of 'nums'.
Input: 'nums' = [1,2]
Output: 0 1 2 3
Explanation:
Following are the subset sums:
0 (by considering empty subset)
1
2
1+2 = 3
So, subset sum are [0,1,2,3].


If the cards Ninja chooses are 4, 1, 8, 7. Then Ninja can make 24 by (8 - 4) * (7 - 1). Hence Ninja can win, so you have to return true.
The division operator ‘/’ represents actual division, not integer division. For example, 4 / (1 - ⅔ ) = 12.



- Morning time
- Environment was good.
- No
- Interviewer was not soo good
- Tell me about yourself
- What did you like most about the job description?
- What experience do you have that would be relevant to this role?
- Why are you leaving your current job?
Tip 1 : Give proper answer
Tip 2 : Give valid answers
Tip 3 : Take time and communicate well with HR Pannel

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?