Tip 1 : practical practice each and every topic with Realtime program
Tip 2 : try to solve problem more than one solution
Tip 3 : try to create TO DO application from scratch
Tip 1 : mention your skills at top of your resume with some bigger font along with year of experience
Tip 2 : keep your skills short and precise
All Question related to Frontend Developer mentioned below:
JavaScript : ES6 Features, Hoisting, Closures, this, window, oops, function currying, callback ,A sync await, Promises
CSS: Positions ,Pseudo Class, Element ,transform ,display ,flexbox ,grid ,Sass ,custom CSS
HTML: HTML vs HTML5 ,new elements in HTML5,Acessibility
How to create a countdown timer using JavaScript
1)Set the end date for the timer
2)Make the timer function update every second
3)Calculate the remaining time in days, hours, minutes, and seconds
4)Display the output to users,
5)Display a message when the timer is over
All questions related to UI Developer
JavaScript : ES6 Features, Hoisting, Closures, this, window, oops, function currying, callback ,A sync await, Promises
CSS: Positions ,Pseudo Class, Element ,transform ,display ,flexbox ,grid ,Sass ,custom CSS
HTML: HTML vs HTML5 ,new elements in HTML5,Acessibility
If N=3 and K=1 and array elements are [1,2,5].
For A[0], A[1] is the element that lies in the range [0,2] so, A[0] is the happy element.
For A[1], A[0] is the element that lies in the range [1,3] so, A[1] is the happy element.
For A[2], there is no element that lies in the range [4,6] other than A[2] so, A[2] is not the happy element.
Hence, the output will be 2.
traverse each element and check if there’s another number in the array which can be added to it to give sum.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is 3 + 2 * 4 based on operator precedence?