Tip 1 : Prepare the concepts of JavaScript and react thoroughly
Tip 2 : Practice using projects
Tip 3 : Practice data structure and algorithms and practice there questions
Tip 1 : Use keywords in technologies where you want to be shortlisted in
Tip 2 : Do not put false things in your resume
Problem-solving round in javascript.
Asked me questions of easy to medium level data structures and algorithm.


“code” and “eodc” are similar because we can swap letters at positions 0 and 3 in ‘code’ to get “eodc”.
Group of strings [“code”, “eodc”, “edoc”] is a Similar String Group, because “code” is similar to “eodc”, “eodc” is similar to both “code” and “edoc” and “edoc” is similar to “eodc” i.e each string is similar to at least one other string of group.
1. Two strings are an anagram of each other if they have the same characters but these characters can be arranged in a different order. For example, “LISTEN” and “SILENT” are anagrams.
Consider ‘STRS’ = [“code”, “doce”, ”code”, “ceod”, “eodc”, “edoc”, “odce”].
There are 2 Similar String Groups in ‘STRS’ -:
1. “code”, “code”, “doce“, “odce”, eodc”, “edoc”
2. “ceod”
Thus, we should return 2 in this case.
Javascrip specific questions
// level: basic// tags: closures// implement a sum functionsum(4)(5) // 9// expected output const sum = x => y => x + y ,Debouncing.
concept of closures , callbacks was tested
Focussed on behavioural aptitude
Questions on optimisations of a particular use case and scenario.
How can we reduce the number of API calls?
Behavioural questions on leadership aspirations etc.
Tip 1 : Be confident
Tip 2 : Try to focus on problem and then figure out a solution
Tip 3 : Be flexible

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?