Tip 1 : Ds and algorithms practice is must
Tip 2 : Keep deployed projects on resume
Tip 3 : Have clarity on your projects, you should be able to explain them
Tip 1 : Deployed projects links will make you seperate from crowd
Tip 2 : Short and clear resume without unwanted things like hobbies
Building weather app with the given API , such that on loading it will have basic table layout with list of state locations, on selecting location we need to populate with temperature humidity data in that particular location cities, while we go through table we should highlight each row of city location with respective data.
Tip 1 : Dom manipulation and basic functions knowledge in Javascript
Tip 2 : Good practice of html and CSS is the key
Tip 3 : Knowledge on making API calls,Json stringify parsing to extract data from api calls is needed
Core Questions based on javascript and oops, and one ds and algo question
What is inheritance?
What is method overriding?
What is method overloading?
Different between method overriding and method overloading?
What is interface?
Difference between let, var and const scopes ?
Explain hoisting concept in javascript?
Explain call(), apply() and bind() methods?
Explain closures in javascript?
Explain immediate invoked functions in javascript?
Tip 1 : Good understanding on core OOPS concepts
Tip 2 : Good understanding on core Javascript concepts
Tip 3 : Clear understanding on closures topics of Javascript



Input: 'a' = [7, 12, 1, 20]
Output: NGE = [12, 20, 20, -1]
Explanation: For the given array,
- The next greater element for 7 is 12.
- The next greater element for 12 is 20.
- The next greater element for 1 is 20.
- There is no greater element for 20 on the right side. So we consider NGE as -1.
Tip 1 : Revise commonly asked questions
Tip 2 : Give a mock interview of DSA
Tip 3 : Try code with pseudo code
Questions on where I am from?
My education.
My expectations on the job role.
My future goals.
Tip 1 : Mock interview before the round helped me lose nervousness

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