Tip 1 : dont think you are from lower branch
Tip 2 : just strive hard and work hard
Tip 3 : practise whatever you are doing as much as you can
Tip 1 : be short and precise
Tip 2 : dont write false information be thorough with whatever you have done in life
The test comprises of aptitude question in 1 half and aptitude question in 2 half then there is a coding round with 3 question and one was easy one was of medium and one was from hard, a deep understanding of question was a must
Each pair should be sorted i.e the first value should be less than or equals to the second value.
Return the list of pairs sorted in non-decreasing order of their first value. In case if two pairs have the same first value, the pair with a smaller second value should come first.
Consider the two strings 'P' = "abfyg" and 'Q' = "gabfy"
If we cyclically rotate String 'P' to the right once. The resulting string P becomes "gabfy" which is equal to String 'Q'.
Therefore it is possible to convert String 'P' to String 'Q'.
This round was the most difficult round the interviewer was quite helpful and helped me throughout the interview
RES = 0
FOR(i -> A to B) {
FOR(j -> C to D) {
ADD (i ^ j) to RES;
}
}
PRINT(RES)
Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].
Are you a team player?
Where do you see yourself in 3 years?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you create a function in JavaScript?