Tip 1 : Good Knowledge of DSA
Tip 2 : Good Knowledge of System Design
Tip 3 : Good Knowledge of Core Subject's
Tip 1 : Highlight what you have accomplished
Tip 2 : Quantify your achievements



A -> 1
B -> 2
C -> 3
...
Z -> 26
AA -> 27
AB -> 28
...


str = "ababc"
The longest palindromic substring of "ababc" is "aba", since "aba" is a palindrome and it is the longest substring of length 3 which is a palindrome.
There is another palindromic substring of length 3 is "bab". Since starting index of "aba" is less than "bab", so "aba" is the answer.



If two rows have the same number of 1’s, return the row with a lower index.
If no row exists where at-least one '1' is present, return -1.
Input: ‘N’ = 3, 'M' = 3
'ARR' =
[ [ 1, 1, 1 ],
[ 0, 0, 1 ],
[ 0, 0, 0 ] ]
Output: 0
Explanation: The 0th row of the given matrix has the maximum number of ones.
Design a file System such as-:
Create a file
Delete a file
Copy a file
Move a file
Maintain multiple versions of the same file
System Design
DSA
OS and CN
Design a Online Attendance Portal using OOPS



Assume that the Binary Tree contains only unique elements.
Input: 'inOrder' = [9, 3, 15, 20, 7], 'postOrder' = [9, 15, 7, 20, 3]
Output:
We get the following binary tree from Inorder and Postorder traversal:
Database Design for Instagram
1. Your strengths and weakness
2. Where do you see yourself in next 5 years?

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?