Tip 1 : Brush up technical skills thoroughly
Tip 2 : Prepare for situational based questions
Tip 3 : Learn System Design, prepare for some popular System Design questions and learn to make changes to the design as per the interviewer's ask
Tip 4 : If you have full stack skills, try to showcase them
Tip 1 : Keep your resume simple and informational, just keep the most relevant information in the resume
Tip 2 : Highlight your primary skills
Tip 3 : Showcase any complex functionalities you have built
Technical round



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.
Step 1- Initialize two strings in two variables.
Step 2- Check if the length of the two strings is similar, if not then the strings are not an anagram.
Step 3- f the result is true, take the two strings and store them in a character array.
Step 4- Sort the two character arrays, then check if the two sorted arrays are alike.
Step 5- If the result is true, the two strings are anagram else, not anagram.
System Design round
Design Movie Ticket booking system
Tip 1 : Design the system with your understanding of the problem, get your doubts cleared
Tip 2 : Try to accommodate the requirements which the interviewer asks for and handle edge cases
Tip 3 : Update the design as per the interview discussion and include more insights into the design that the interviewer might give you
This round was more about the previous work experience, situational based questions and getting to know the candidate better
The interviewer asked about the work done in my projects, he asked many situational based questions provided me with a situation and asking how I would handle that situation. The interviewer asked about my hobbies. The interviewer was testing me on my behavior and fitment for the organization
Tip 1 : Provide genuine answers for the interviewer
Tip 2 : If you are unsure of any question, ask the interviewer to explain it to you more clearly
Tip 3 : Be confident on the answers you provide
Tip 4 : Be thorough with your resume and the questions that might be asked based on it
Basic HR discussion to know the candidate and Salary discussion
Tell me about yourself?
How do you see yourself in 5 years?
Why do you want to join HashedIn?
What is your expected compensation?
Tip 1: Answer all the questions clearly
Tip 2: Give your expected salary and why are you worth it
Tip 3: Discuss and other questions you have about HashedIn

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?