Tip 1 : Include at least 1 major and 1 minor project
Tip 2: Include your practicing platform achievements or rank (hackerrank, leetcode)
Tip 3 : Practice development question related to website and database on leetcode or hackerrank
Tip 1 : Have some practical projects but include those only that you are confident about it.
Tip 2 : Put about your skill set which matches the applied role



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.



Two strings are isomorphic if a one-to-one mapping is possible for every character of the first string ‘str1’ to every character of the second string ‘str2’ while preserving the order of the characters.
All occurrences of every character in the first string ‘str1’ should map to the same character in the second string, ‘str2’.
If str1 = “aab” and str2 = “xxy” then the output will be 1. ‘a’ maps to ‘x’ and ‘b’ maps to ‘y’.
If str1 = “aab” and str2 = “xyz” then the output will be 0. There are two different characters in 'str1', while there are three different characters in 'str2'. So there won't be one to one mapping between 'str1' and 'str2'.
The time of round was around 20 minutes. It was a general discussion round about salary, location about work.
and documentation & some general questions.
Are you ready to relocate?
Where do you see yourself after 5 years?
Why did you choose the exploit development field instead of the developer?

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