Tip 1 : Solve coding questions on daily basis
Tip 2 : start giving interview as early as possible
Tip 3 : Write down the questions being asked in interview
Tip 1 : Resume should be focused on a particular profile
Tip 2 : Should mention good project experience
Mainly mcqs and some coding questions



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.
Using recursion, i solved the problem
Introduction and some python questions



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.
Used default python function to store the reverse and then checked if both are same or not

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?