Tip 1 : Aptitude and reasoning play a very important role. Do not ignore these sections
Tip 2 : Practice Coding in websites like CodingNinjas which provide same questions as that of online assessment.
Tip 3 : Have projects in web development as they have a wide range of tech stack.
Tip 1 : Have projects that consists of various front-end frameworks and back-end technologies.
Tip 2 : Having a certification in Java or C++ would be a plus.
Test took place at 5PM in our institute.



If ‘WORDS’ = ["word","world","row"], ‘ORDER’ = "worldabcefghijkmnpqstuvxyz",the answer will be ‘NO’ as first and second words are not lexicographically sorted as ‘l’ comes before ‘d’ in alien language.



If the bus route is [3, 6, 7], then it will travel in sequence
3 > 6 > 7 > 3 > 6 > 7….
Values of A[i] are distinct.
This is a very famous coding question in Leetcode. I have used the same approach to this question and got all the test cases passed except one. I did not know where I went wrong.
It was an online interview which took place at 11AM via Google meet. The interviewer was chill and was very comforting.



You are given the array ‘ARR’ = [1, 1, 1, 1, 1], ‘TARGET’ = 3. The number of ways this target can be achieved is:
1. -1 + 1 + 1 + 1 + 1 = 3
2. +1 - 1 + 1 + 1 + 1 = 3
3. +1 + 1 - 1 + 1 + 1 = 3
4. +1 + 1 + 1 - 1 + 1 = 3
5. +1 + 1 + 1 + 1 - 1 = 3
These are the 5 ways to make. Hence the answer is 5.
I explained the bruteforce solution and then explained the time and space complexity.
As usual, he asked me to optimize and then gave the DP solution with which he was satisfied.



Why did I choose AngularJS for my projects? Why not ReactJS?
Tip 1 : Do not take a side saying you are not comfortable in ReactJS or other way around.
Tip 2 : I explained saying I was new to both frameworks and starting with Angular because Angular community reach is more and Stack Overflow had solutions to almost every question in Angular framework.
Tip 3 : I also said that given the opportunity, I would love to work in ReactJS also.
Query to return the 3rd highest salary in the employee table.
I used ORDER BY and LIMIT to return the top 3 employees but could not return that specific row of 3rd highest salary.
This is also where I failed to create an impression. Hence I could not clear this round.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?