Tip 1 : Practice basic DSA,OOPs
Tip 2 : Do Atleast 2 Projects in React.
Tip 1: Give 2 Projects make atleast one API based project and 1 normal project.
Tip 2: Do not put any false things which you don't know on resume it will give some bad impression.
The online mcq and coding round timing was at afternoon around 2 to 3 pm. The environment was overall good. The question on coding round was string anagram and linked list.



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.
1) Sort both strings.
2) Compare the sorted strings:
3)If they are equal return True.
Else return False.
We have to give time complexity O(n).


1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.
1) Traverse the whole linked list and count the no. of nodes.
2) Now traverse the list again till count/2 and return the node at count/2.
The timing was at afternoon at 1 pm. We have to see the constantly to the interviewer as he/she will directly inform you before the interview. The interviewer was strict but normally depends upon the student if he/she have basic fundamentals knowledge then we don't have to fear about the interview.
Given me to make counter app within the help of Html, CSS, JavaScript.
Step 1: First, we will design a simple button using HTML.
Step 2: Next, we will use some CSS properties to design the button.
Step 3: Now, we will add some JavaScript code to add functionality to the buttons which we created earlier.



1) Declare a variable sum, to store the sum of prefix elements.
2) Traverse the array and at each index, add the element into the sum and check if this sum exists earlier. If the sum exists, then return true.
3) Also, insert every prefix sum into a map, so that later on it can be found whether the current sum is seen before or not.
4) At the end return false, as no such subarray is found.
The timing was 2.45 pm and this round was telephonic round. This interviewer was chill.
What are your strengths?
My time management skills are exceptional, and I'm well-organized, efficient, and systematic. I enjoy excelling at my job.
How do you handle stress, pressure, and anxiety?
Under pressure and stress, I usually utilize my soft skills and handle every situation calmly. I also perform physical exercises and mind relaxing activities like meditation to deal with work stress and pressure.
Why are you interested in this job?
It's an honor and a privilege to work for an established company like yours. As I researched the job opening you have, I realized that my abilities align with your requirements. Through this job, I can showcase my technical skills to help the company's development.

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