Tip 1 : Practice DSA daily
Tip 2 : Do not waste more than 45 minutes on single question, instead, see the solution and understand that.
Tip 3 : Take help from previous interview experiences.
Tip 1 : Do not lie on your resume.
Tip 2 : Make it in such a way that it state your capability at first glance.



Consider 0-based indexing.
Consider the array 1, 2, 3, 4, 5, 6
We can Jump from index 0 to index 1
Then we jump from index 1 to index 2
Then finally make a jump of 3 to reach index N-1
There is also another path where
We can Jump from index 0 to index 1
Then we jump from index 1 to index 3
Then finally make a jump of 2 to reach index N-1
So multiple paths may exist but we need to return the minimum number of jumps in a path to end which here is 3.






Input: 'list' = [1, 2, 3, 4], 'k' = 2
Output: 2 1 4 3
Explanation:
We have to reverse the given list 'k' at a time, which is 2 in this case. So we reverse the first 2 elements then the next 2 elements, giving us 2->1->4->3.
All the node values will be distinct.



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)
What is BCNF?
What is 2-Tier architecture?
What is System R? How many of its two major subsystems?
Write a query to fetch top N records using the TOP/LIMIT
Write a query to fetch patient details along with the weight fees, even if the details are missing.
Tell me about yourself
What will be your reaction if you are asked to work overtime for the same pay scale?
What do you offer to the company?
What are your strengths?
Why Adobe?

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?