Tip 1 : Focus more on coding.
Tip 2 : System Design is crucial.
Tip 3 : Current project knowledge is must if you are experienced.
Tip 1 : Define all your projects which others can understand.
Tip 2 : Short and point to point (Avoid story).
Coding Round+F2F interview



Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").
Input: “ABCDEFGABEF”
Output: 6 (The longest substring without repeating characters are “BDEFGA” and “DEFGAB”, with length 6)
Input: “GEEKSFORGEEKS”
Output: 7 (The longest substring without repeating characters are ????KSFORG” and “KSFORGE”, with length 7)



For the given binary tree

The reverse level order traversal will be {7,6,5,4,3,2,1}.
Explain Microservice architecture.
Design a chat app.
Why did you use this tech stack?
What challenges did you face while implementation?

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