Tip 1 : Prepare DSA well and I personally recommend Coding Ninjas and GeeksForGeeks for interview preparation.
Tip 2 : Be confident & relaxed during the interview.
Tip 3 : Do revise your projects i.e how it works and what are its functionalities.
Tip 1: Make your resume short and try to make it one page only and mention all the skills that you are confident in.
Tip 2: Do not put false things on your resume.
Assessment Modules Contain OOPS, DS & Algo coding questions. They were contains 3 Question Medium to Hard level Questions.


Subsequences of string "abc" are: ""(empty string), a, b, c, ab, bc, ac, abc.
By using Dynamic Problem.



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.
By creating a Custom function.
In that Round, Interviewer Asked adv. Java, DBMS, and JavaScripts Questions Like Hoisting, Closure. After that, they asked how Website Works. and asked One Coding Question. I had rejected in the Interview round due to Java Related Questions.



Your are given ‘arr’ = [1, 3, 5, 9], and ‘K’ = 16, we can take the subset of elements [9, 5 ,1] which sums up to 15. Hence the answer is 15.

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?