Tip 1 : Make solid understanding on Arrays, Strings and Stacks.
Tip 2 : Well prepare yourself for System design interview questions.
Tip 3 : Be well versed with the skills mentioned in your resume.
Tip 1 : Have some projects on Javascript related tech stack.
Tip 2 : Do not put wrong information on your resume.
It consists of MCQs on Node.js, SQL, Javascript with two coding questions on Javascript.
A substring is a contiguous sequence of characters within a string.
Example: "cod" is a substring of "coding". Whereas, "cdng" is not as the characters taken are not contiguous
A classic problem of recursion.
How to implement authentication in REST APIs?
Tip 1 : Using JWT
Tip 2 : Using Azure AD Based Authentication (When Azure is used in the tech stack)
1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
I first sorted the array and then applied the two-pointer approach to the array.
Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
It is a typical problem based on Stacks. First, I read all the characters and pushed them into a stack. If any of the characters is a closing parenthesis, then I pop out the character from the stack and check if it is the corresponding opening parentheses. If not, then I returned false. Else, proceed with this until the string is traversed completely. Then, check if the stack is empty - return true else return false.
Design the LinkedIn Job Search Portal for the Recruiter and Candidate.
Tip 1: Focus on which database should work
Tip 2: Used microservices-based architecture
Tip 3: Used message queues for notifying various events happing the LinkedIn Job Search Feature.
Mainly on how I handled different situations in the project. How I managed to deal with the team. How do I manage to meet the deadlines? Which tickets will I pick up which are of the same priority?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?