Tip 1 : Be Efficient in JS, HTML, CSS with JS polyfills and code knowledge of working of each
Tip 2 : With React, Redux know how it works in the background why it's needed also hands-on implementation
Tip 3 : Web performance is a must with knowledge of webpack, babel etc
Tip 1 : Give clear, crisp matric-based pointers. like You have improved performance of a webpage and its lighthouse score when from X to Y.
Tip 2 : Should have right only those things and technology you know best and go deep into the understanding



1. Push(num): Push the given number in the stack if the stack is not full.
2. Pop: Remove and print the top element from the stack if present, else print -1.
3. Top: Print the top element of the stack if present, else print -1.
4. isEmpty: Print 1 if the stack is empty, else print 0.
5. isFull: Print 1 if the stack is full, else print 0.
We perform the following operations on an empty stack which has capacity 2:
When operation 1 1 is performed, we insert 1 in the stack.
When operation 1 2 is performed, we insert 2 in the stack.
When operation 2 is performed, we remove the top element from the stack and print 2.
When operation 3 is performed, we print the top element of the stack, i.e., 3.
When operation 4 is performed, we print 0 because the stack is not empty.
When operation 5 is performed, we print 0 because the stack is size 1, which is not equal to its capacity.
Created a stack class using array with methods such as push, pop etc
JS, Html, CSS, JS polyfill round
JS polyfill such create your own Array.map function
Create Math.add(2).substract(5).multiply(4)
Deep JS round
Create polyfill of Promise Class of JS
Create your own React.useState.
Todo creation with creating your own redux, pub sub knowledge needed
To improve performance of aaj tak website, what you will do?
Detailed discussion on what i did in my last companies.

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