Tip 1 : Practice at least 150-200 Questions.
Tip 2 : Be aware of your resume and projects.
Tip 1 : Do not add anything too fancy to the resume.
Tip 2 : Try to add links to your project in your resume.
Questions from Aptitude, OS, DBMS, DSA (Easy-Medium)



Input arrays/lists can contain duplicate elements.
The intersection elements printed would be in the order they appear in the first array/list(ARR1)
The following are simple algorithms to get union and intersection lists respectively.
Intersection (list1, list2)
Initialize the result list as NULL. Traverse list1 and look for every element in list2, if the element is present in list2, then add the element to the result.
Union (list1, list2):
Initialize a new list ans and store first and second list data to set to remove duplicate data
and then store it into our new list ans and return its head.



If the given array is [ 4, 7, 3, 2, 7, 2 ], you have to find ‘4’ and ‘3’ as 4 and 3 occur one time, and the rest of the elements ( 7 and 2 ) are occurring twice.
The idea is simple, we initialize count as 0. We traverse the array in a linear fashion. For every element that matches with x, we increment count. Finally, we return count.
Below is the implementation of the approach.
5 questions (Easy-Medium)
JavaScript Snippet Given, write the correct output
Webpage look-a-like is given, to write HTML and CSS for the same.
Write code for JavaScript Form validation, including the functionality that is given.
JavaScript Snippet Given, write the correct output.



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
Declare a character stack S.
Now traverse the expression string exp.
If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
After complete traversal, if there is some starting bracket left in stack then “not balanced”
Assignment to be completed in 1 Week time period, Use of any UI Framework, JS Library/framework is not allowed.
MCQs based on DSA, Frontend Technologies
Again an assignment has been given to students and needs to be completed in less than 2 hr, Screen shared with the interviewer, the interview will ask you for the updates every 20 minutes.
The interview started with an Introduction, Questions were asked about HTML, CSS, JavaScript, and Computer Networks. They mostly ask about CSS which is frustrating sometimes, interviewers will judge on the basis of your CSS skill for sure.
The interview started with an Introduction, Questions were asked about HTML, CSS, JavaScript, and Computer Networks. They mostly ask about CSS which is frustrating sometimes, interviewers will judge on the basis of your CSS skill for sure.
The interview started with an Introduction, Questions were asked about HTML, CSS, JavaScript, and Computer Networks. They mostly ask about CSS which is frustrating sometimes, interviewers will judge on the basis of your CSS skill for sure.

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?