Tip 1 : Consistently practice many coding questions, focusing on one coding language of your choice: it will help you in strengthening your theoretical skills as well.
Tip 2 : Even if you make just 1-2 projects, make sure you explain them really well, and are fully aware of the backend
Tip 3 : Practice aptitude and stay confident and relaxed during interviews.
Tip 1 : Mention projects
Tip 2 : Significance and impact of the work you did



If the input string is "abbc", then all the possible palindromic substrings would be: ["a", "b", "b", c", "bb"] and hence, the output will be 5 since we have 5 substrings in total which form a palindrome.
A string is said to be a 'Palindrome' if it is read the same forwards and backwards.
For example, “abba” is a palindrome, but “abbc” is not.
A 'Substring' is a contiguous sequence of characters within a string.
For example, "a", "b", "c", "ab", "bc", "abc" are substrings of "abc".



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.
Was asked to create and define a webApp with micro frontend approach.(Link)

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