Tip 1 : clear all basics
Tip 2 : focus on DSA
Tip 3 : Solve atleast 200 problems
Tip 1 : atleast 2 projects
Tip 2 : do write internships
Proctored environment



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
Declare a character stack S.
Now traverse the expression string exp.
If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
After complete traversal, if there is some starting bracket left in stack then “not balanced”


push(X): Pushes an element X into the stack. Returns true if the element is pushed into the stack, otherwise false.
pop(): Pops the top element from the stack. Returns -1 if the stack is empty, otherwise, returns the popped element.
top(): Returns the topmost element of the stack. In case the stack is empty, it returns -1.
isEmpty() : Returns true if the stack is empty, otherwise false.
size(): Returns the number of elements currently present in the stack.
Type 1 : for push(X) operation.
Type 2 : for pop() operation.
Type 3 : for top() operation.
Type 4 : for isEmpty() operation.
Type 5 : for size() operation.
Face to face HR interview
Make short and simple resume
Add projects and internships


1. If the list is empty, the function immediately returns None because there is no middle node to find.
2. If the list has only one node, then the only node in the list is trivially the middle node, and the function returns that node.
Traverse linked list using two pointers. Move one pointer by one and the other pointers by two. When the fast pointer reaches the end slow pointer will reach the middle of the linked list.
Tell me about your education background
Mention in brief about your projects and internships
Tip 1: do little research on company
Tip 2: do not write unnecessary things in resume
Tip 3: be confident

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: