Tip 1 : Practice Aptitude questions and try to do questions under a time limit.
Tip 2 : Practice standard Algorithms such as postfix notation or binary exponentiation.
Tip 3 : Focus on your communication skills and learn to convey your thoughts fluently to your interviewer.
Tip 4 : Be thorough research of the company and prepare situation specific questions.
Tip 1 : Mention about projects you have done, Even of it is a small project.
Tip 2 : Make sure all the important points are visible and can be easily seen in your resume, Like headings should be bold, Technology stack in projects should be added.



For this question, you can assume that 0 raised to the power of 0 is 1.
I used Python's inbuilt function to solve this question in a few lines.


Infix expression: A + B * C - D
Postfix expression: A B + C D - *
1. Operators will only include the basic arithmetic operators like '*', '/', '+', and '-'.
2. The operand can contain multiple digits.
3. The operators and operands will have space as a separator between them.
4. There won’t be any brackets in the postfix expression.
I used a stack to simulate the process and keep track of operators and operands.
The round took place in afternoon, It was a small discussion round where i was asked questions based on my college experience, Coding languages i know and Projects i have worked on.


Let 'N' = 5, 'K' = 4, 'A' = [2, 2, 2, 1, 1].
There exist only two subarrays, 'A[0…4]' and 'A[1…4]' having 'Pulse' greater than or equal to 'K'.
'Pulse' of 'A[0…4]' is 6 and the length is 5.
'Pulse' of 'A[1…4]' is 4 and the length is 4.
Since we have to minimize the length, therefore 4 will be our answer.
Step 1 : Divide the number by 2.
Step 2 : If reminder is 0, it is even else it is not.

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: