Tip 1 : Solve lots of problems in different platforms that are available this helps you to improve your problem solving skills.
Tip 2 : Brush up on your technical skills, review the fundamental concepts and technologies before your interview.
Tip 3 : Demonstrate Confidence and Enthusiasm, and have a great knowledge on the projects you have done.
Tip 1 : Ensure that your resume is easy to read and understand. Use clear headings, bullet points, and concise sentences to present your information.
Tip 2 : Instead of simply listing your job responsibilities, focus on quantifiable achievements and results. Highlight specific accomplishments and their impact on the organization.
There were just two coding questions, in which one is easy and other is medium and there were also 5 mcqs from Data structures.



Return 0, if there are no such two students present.


str = "ababc"
The longest palindromic substring of "ababc" is "aba", since "aba" is a palindrome and it is the longest substring of length 3 which is a palindrome.
There is another palindromic substring of length 3 is "bab". Since starting index of "aba" is less than "bab", so "aba" is the answer.
The exam was conducted in the afternoon in the exam center . It was really a good experience . The questions were challenging and interesting.









Perform each query on the original array only i.e. every output should be according to the original order of elements.
Let the array be [1, 2, 3, 4, 5, 6] and the queries be {2, 4, 1}. For every query, we’ll perform the required number of left rotations on the array.
For the first query, rotate the given array to the left by 2 elements, so the resultant array is: [3, 4, 5, 6, 1, 2].
For the second query, rotate the given array to the left by 4 elements, so the resultant array is: [5, 6, 1, 2, 3, 4].
For the third query, rotate the given array to the left by 1 element, so the resultant array is: [2, 3, 4, 5, 6, 1].

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?