Tip 1: Prepare DSA well, and I personally recommend Coding Ninjas for interview preparation.
Tip 2: Prepare well for projects.
Tip 3: Be confident and relaxed during the interview.
Tip 1: Keep your resume short and try to limit it to one page. Mention only the skills you are confident in.
Tip 2: Do not include false information on your resume.
MCQ questions, essay writing, 2 coding questions.
If STR = ‘aBc’,
After converting ‘a’ to ‘A’, ‘B’ to ‘b’, and ‘c’ to ‘C’ we got our final string as ‘AbC’.
By using STL in Python.
That was a very simple interview; they asked an OOPS, SQL, and string question.



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
By using 2 pointer approach for start and end position checks.

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?