Tip 1 : Be consistent.
Tip 2 : Instead of doing bulk on weekends, prefer doing little everyday.
Tip 3 : For Front-end, Javascript is the key. Get your hands very well on JS.
Tip 1 : Only mention skills that you are good at.
Tip 2 : Have some projects on resume
Tip 3 : Try to add all your achievements in a crisp
2 basic DSA Questions were asked along with basic aptitude testing mcq. It was a fairly easy round.



Tip 1 : Try solving ds question first in your mind
Tip 2 : Then write the code for the same



1. Constructor: It initializes the data members as required.
2. enqueue(data): This function should take one argument of type integer. It enqueues the element into the queue.
3. dequeue(): It dequeues/removes the element from the front of the queue and in turn, returns the element being dequeued or removed. In case the queue is empty, it returns -1.
4. front(): It returns the element being kept at the front of the queue. In case the queue is empty, it returns -1.
5. isEmpty(): It returns a boolean value indicating whether the queue is empty or not.
Query-1(Denoted by an integer 1): Enqueues integer data to the queue.
Query-2(Denoted by an integer 2): Dequeues the data kept at the front of the queue and returns it to the caller, return -1 if no element is present in the queue.
Query-3(Denoted by an integer 3): Fetches and returns the data being kept at the front of the queue but doesn't remove it, unlike the dequeue function, return -1 if no element is present in the queue.
Query-4(Denoted by an integer 4): Returns a boolean value denoting whether the queue is empty or not.



Input: 'list' = [1, 2, 3, 4], 'k' = 2
Output: 2 1 4 3
Explanation:
We have to reverse the given list 'k' at a time, which is 2 in this case. So we reverse the first 2 elements then the next 2 elements, giving us 2->1->4->3.
All the node values will be distinct.
Step 1 : Traverse till kth node
Step 2 : Start reversing node from this node to end


Input: [1,2,3,4,5]
Output: [5,4,3,2,1]

Used Recursive approach
Questions based on React, Javascript, CSS, Redux and DS
(function(){
var a = b = 3;
})();
console.log("a defined? " + (typeof a !== 'undefined'));
console.log("b defined? " + (typeof b !== 'undefined'));
Tip 1 : Brush up your basics
Tip 2 : Listen to the problem carefully and then reply
Tip 3 : Take your time
It was a HR Round. They mainly focused first on the personality and then it was just general discussion around
Tip 1 : Don't fake yourself, just be honest
Tip 2 : Always keep a slight smile on your face

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What can be the possible extension for the HTML5 file?