Tip 1 : Start from the very basics and don't get frightened or discouraged even when you are not performing well initially.
Tip 2 : Be consistent as much as you can in solving problem.
Tip 3 : Try to solve different type of problem every time so that you learn lot of concepts in a small amount of time also if faced with a blockage while solving problem just see the solution if you are clueless as it will save the time too and make you learn too.
Tip 1 : Try to make resume single page
Tip 2 : Whatever you have mentioned in resume, you should have thorough knowledge about all the things you have mentioned.
Tip 3 : Mention your best 2 projects and be very well prepared for it.
Online test comprised of two questions to be solved in a span of 90 min.
Website used was Codility, you should be aware that on this platform there is no message for whether your solution was correct or not. You just simply can run various test cases to be sure that the solution is correct. So, one should think of all corner cases for the problem before finally submitting it.



You are given arr = [1, 3, 4, 5, 6, 9], and queries = [[1, 3], [5, 6] , [1, 6]].
For the first query [1, 3] sum of elements = 1 + 3 + 4 = 8. Hence the answer is 8
For the second query [5, 6] sum of elements = 6 + 9 = 15. Hence the answer is 15
For the third query [1, 6] sum of elements = 1 + 3 + 4 + 5 + 6 + 9= 28. Hence the answer is 28.
Hence the final answer is [8, 15, 28]



1. You can delete a character from any position.
2. You can replace a character with any other character.
3. You can insert a character at any position.
1. The strings are non-empty.
2. The strings only contain lowercase English letters.
Interviewer introduced himself as soon as I joined the meeting. Then he straightaway provided me the link to codility where the question was already written.



Interviewer introduced himself as soon as I joined the meeting. Then he asked me some casual questions such as how am I and how’s my college life etc. Then he inquired with me that since I was from EE so, he asked whether I had been taught any of the CSE subjects or if I am prepared with the same. I replied that I have only been taught DSA in my 3rd semester. So, he finally said OK and he asked only from DSA part.



1. Roots of both the given trees are same.
2. Left subtree of the root of the first tree is the mirror of the right subtree of the root of the second tree.
3. Right subtree of the root of the first tree is the mirror of the left subtree of the root of the second tree.
For example,both the given trees are mirror image of each other:

Interviewer introduced himself as I joined the meeting, and then he explained the agenda of that interview that what we will be doing in the coming 50–60 min.
He was going through my resume and then asked me to tell him some things about me that is not mentioned in the resume. Based on my answer, he cross-questioned me.



For the given ‘STR’ = “()(()”, we can form a valid string “()()” by removing ‘(‘ at index 2 or 3.

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?