Tip 1 : keep it simple
Tip 2 : limit your resources
Tip 3 : participate in coding competitions as much as you can
Tip 1 : keep it crystal clear
Tip 2 : don't fake just keep it simple


Postfix notation is a method of writing mathematical expressions in which operators are placed after the operands. For example, "a b +" represents the addition of a and b.
Prefix notation is a method of writing mathematical expressions in which operators are placed before the operands. For example, "+ a b" represents the addition of a and b.
Expression contains lowercase English letters, ‘+’, ‘-’, ‘*’, and ‘/’.
Input: abc*+
Output: +a*bc
Explanation:
For the given postfix expression, infix expression is a+b*c. And it's corresponding prefix expression is +a*bc.






A substring is a contiguous segment of a string.
Basic os theory questions + simple SQL concepts like normal forms, joins etc
Hr question like why sap, where do you look yourself after 5 years etc

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?