Tip 1 : Know basics of HTML and CSS
Tip 2 : Know basics of Javascript. Good to know ReactJS
Tip 3 : Practice basic, standard DS and Algo.
Tip 1 : Mention frontend developer skills like HTML, CSS, JavaScript, ReactJS, etc
Tip 2 : Have 1 or 2 good projects on your resume
Basics of HTML, JavaScript was asked along with a coding question.



1. Pair (x,y) and Pair(y,x) are considered as the same pair.
2. If there exists no such pair with sum equals to 'TARGET', then return -1.
Let ‘ARR’ = [1 2 3] and ‘TARGET’ = 4. Then, there exists only one pair in ‘ARR’ with a sum of 4 which is (1, 3). (1, 3) and (3, 1) are counted as only one pair.
Asked CSS,JavaScript and project related question and asked to code algorithm problem in JavaScript.



A Subsequence of a string is the one which is generated by deleting 0 or more letters from the string and keeping the rest of the letters in the same order.

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