Tip 1 : do coding everyday
Tip 2 : data structures are very important
Tip 3 : practice practically
Tip 1 : resume should not be too flashy
Tip 2 : your projects should be detailed
Tip 3 : Do not put false things on resume
3 sections were there
1. English Section
2. Aptitude section
3. Coding section



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
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”



‘N’ = 4, ‘S’ = “code”
Character ‘c’ gets changed to ‘b’.
Character ‘o’ gets changed to ‘p’.
Character ‘d’ gets changed to ‘c’.
Character ‘e’ gets changed to ‘f’.
Encoded string = “bpcf”
a) Pick the first character from the source string.
b) Append the picked character to the destination string.
c) Count the number of subsequent occurrences of the picked character and append the count to the destination string.
d) Pick the next character and repeat steps b) c) and d) if the end of the string is NOT reached.
Basic HR questions like What are your Hobbies And what are your Future plans . Also there was a Managerial round
Tell us about yourself and your projects?
Where do you see yourself in next 5 years?
How do you rate your coding skills?
Are you wishing to relocate?
As you know there is a bond. How do you see this. Will You accept this?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?