Tip 1 : Practice Aptitude questions daily.
Tip 2 : For coding round, solve at least 2 programming questions on any online platform(HackerRank, geeksforgeeks etc)
Tip 3 : For ASE/SE your communication skills should be good.
Tip 4 : Be prepared with commonly asked HR questions(ex -Tell me something about yourself, what are your dislikes etc.) for
interview as there was an HR interview.
Tip 5 : Appear for communication assessment in a noise free environment.
Tip 1 : Be clear to your resume, only mention those things which you have done.
Tip 2 : Must write about your hobbies and have some projects on resume (project gives good impression on what you have learn)
It was cognitive and Technical Assessment, Timing was 10:30 am to 12 pm. It consisted 90 questions to be solved in 90 minutes.



Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.
Two strings are called anagrams if they accommodate a similar group of characters in a varied sequence.
To check if two strings are anagrams, the below steps are followed:
Initialize two strings in two variables.
Check if the length of the two strings is similar, if not then the strings are not an anagram.
If the result is true, take the two strings and store them in a character array.
Sort the two character arrays, then check if the two sorted arrays are alike.
If the result is true, the two strings are anagram else, not anagram.


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.
They asked questions from Project we have made, our hobbies, likes, dislikes and other behavioral questions.
Tell me something about yourself
then Questions from what i have told in intro, like i told them that i belong to joint family then they asked me the benefits of
joint family .
How did you able to overcome disputes with your teammates during project.
so be prepared with what you say, as if you have mentioned anything, they will ask questions from that.
like if you like painting then be prepared with basic knowledge about which type of painting you like(oil,water etc).

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