Tip 1: Try to solve 1 or 2 DSA problems on a daily basis.
Tip 2: Make proper notes.
Tip 3: Try to participate in online coding contests.
Tip 1: Add two or three good projects.
Tip 2: Add a linked profile to your resume.
One DSA question was asked.



Run a nested for loop to traverse the input array using two variables i and j, such that 0 ≤ i < n-1 and 0 ≤ j < n-i-1.
If arr[j] is greater than arr[j+1] then swap these adjacent elements, else move on.
Print the sorted array.
Two DSA question were asked.



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.
Initialize low and high indexes as 0 and n-1 respectively.
Do following while low index ‘l’ is smaller than high index ‘h’.
If str[l] is not same as str[h], then return false.
Increment l and decrement h, i.e., do l++ and h–.
If we reach here, it means we didn’t find a mis



Two strings are said to be anagram if they contain the same characters, irrespective of the order of the characters.
If 'STR1' = “listen” and 'STR2' = “silent” then the output will be 1.
Both the strings contain the same set of characters.
Tell me about yourself
Why do you want to join TCS?
Why should we hire you over other candidates?
What are your hobbies?
What are you good at, apart from academics?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: