Tip 1: Focus on building real-world projects using PHP, JavaScript, and WordPress instead of only practicing theory.
Tip 2: Understand your projects deeply, as interview questions are often based on your implementation and decisions.
Tip 1: Highlight real-world projects, especially in PHP, WordPress, or backend development, and clearly mention your contributions.
Tip 2: Keep your resume concise (1 page) and focus on relevant skills, projects, and practical experience.
The online assessment consisted of MCQs based on PHP, JS, HTML, CSS, DBMS, OOPs, OS, and Logical Reasoning.
Second round consisted of MCQs based on PHP, DBMS, OOPs, and Web Basics, along with 1 coding problem.



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.
Step 1: I converted the string to lowercase so that case differences do not affect the comparison.
Step 2: I removed all non-alphanumeric characters from the string to ensure only valid characters are considered.
Step 3: I initialized two pointers, one at the beginning (left = 0) and one at the end (right = length - 1).
Step 4: I compared the characters at both pointers. If they were equal, I moved both pointers towards the center. If they were not equal, I returned false.
Step 5: If all characters matched during the traversal, I concluded that the string is a palindrome and returned true.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which traversal uses a queue as its primary data structure?