Tip 1 : Have thorough basics.
Tip 2 : It's okay to not know stuff, what to posses is "can take anything thrown at me attitude"
Tip 1 : Be clear about current roles/responsibilities and achievements.
Tip 2 : Don't overload information on the resume.
Interview went well. Was very comfortable. Interviewer gave a scenario and asked to define an Algorithm for that. Happened in the evening. Interviewer was friendly.



Input: str1 = “ab” , str2 = “aoba”
Output: True
Explanation : Permutations of first-string str1 i.e. “ab” are [ “ab”, “ba” ].
The substrings of str2 i.e. “aoba” are [ “a”, “o”, “b”, “a”, “ao”, “ob”, “ba”, “aob”, “oba”, “aoba” ].
The string “ba” is present in the list of substrings of string str2.
Tip 1: Work on logic.
Tip 2: Forget brute force approaches.
Happened in evening. Interviewer was a veteren in the field.
Design architecture of Uber
Tip 1: Thorough understanding of various system.
Tip 2: Understanding of basic architectural building blocks.
Tip 3: Exposure to REST

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?