Tip 1 : i was consistantly coding for about 2 months easy to hard level questions
Tip 2 : I had worked initially on my development skills i.e Javascript,reactjs,nodejs
Tip 1 : dont write everything on your resume .it will be asked throroughly
Tip 2 : if you are a fresher then have to put some 3-4 projects to showcase your resume.



A substring is a contiguous sequence of elements within a string (for example, “bcd” is a substring of “abcde” while “bce” is not).
A string is said to be palindrome if the reverse of the string is the same as the actual string. For example, “abba” is a palindrome, but “abbc” is not a palindrome.
string longestPalindrome(string s) {
int n = s.size();
if(n==0) return "";
vector> dp(n, vector(n, false));
for(int i=0;i=0;i--) {
for(int j=i+1;j if(s[i] == s[j]) {
//j-i==1 means the string is of two characters and since both are equal it will be pallindrome
//dp[i+1][j-1] means the the string between ith and jth character is a pallindrome
//we know that adding same character at the left and right end of pallindrome creates another pallindrome
if(j-i==1 || dp[i+1][j-1]) {
dp[i][j] = true;
//if the length of new pallindrome is greater than previous pallindrome
//we need to update the value of the string
if(ans.size() < j-i+1) {
ans = s.substr(i, j-i+1);
}
}
}
}
}
return ans;
}
Normalization and its forms
Tip 1 : notmalization and real life examples of its forms
Query of inner join
Tip 1 : read all types of joins and its examples.



If 'N' is 5 and 'K' is 3 and the array is 7, 2, 6, 1, 9
Sorting the array we get 1, 2, 6, 7, 9
Hence the 3rd smallest number is 6.
Take three variables; let’s call them first, second and third and mark them as +∞.
Iterate through the array and for each element (let’s call it current),
Check if first>current, assign the first value to the second and second value to third and assign current to first.
If the above step is not true then the current element might be a candidate of the second smallest element, so check if currentIf the above step is not true then the current element might be a candidate of the third-smallest element, so check if currentAt the end print the third, it will third-smallest element in the array
Basic profile and experience.
Short introductory and hobbies .
Tip 1 : prepare a small introduction
Tip 2 : Dont hesitate in HR round . Be confident while answering

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