Tip 1: Go through your resume thoroughly.
Tip 2: Practice easy-level coding problems.
Tip 3: Work on your communication skills.
Tip 1: Include at least one project.
Tip 2: Mention your achievements and certifications.
The questions were based on DSA, aptitude, OOPs, and DBMS. The duration was 75 minutes, and the environment was challenging.



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
The idea is to traverse the given sequence and maintain a separate list of sorted subsequence so far. For every new element, find its position in the sorted subsequence using Binary Search.
The round included resume-based questions and SQL.
Write a SQL query to find Second largest in table. (Practice)
Tip 1: Learn SQL thoroughly.
Tip 2: Ensure resume clarity, as any question can be asked from it.
Tip 3: Maintain good communication skills.
Since I had added an e-commerce project to my resume, the interviewer asked why I chose that particular tech stack and what would happen if we used a different one.
Tip 1: Go through your resume thoroughly.
Tip 2: Have a strong understanding of core subjects.
Tip 3: Understand your projects in depth.



S = “hello”
Explanation :
The reverse of the string ‘S’ is “olleh”.
The idea is to maintain two pointers: left and right, such that left points to the beginning of the string and right points to the end of the string.
While left pointer is less than the right pointer, swap the characters at these two positions. After each swap, increment the left pointer and decrement the right pointer to move towards the centre of the string. This will swap all the characters in the first half with their corresponding character in the second half.
I was asked about my location preference, why I wanted this role, and other HR-related questions.
Why Mphasis, where do you see yourself in 5 years?
Tip 1: Maintain good communication skills.
Tip 2: Know about the company and what it does.
Tip 3: Ensure resume clarity.

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