Tip 1 : Good Projects in resume
Tip 2 : Strong DSA
Tip 3 : CS fundamental basics must be clear
Tip 1 : Technical internship are preferred
Tip 2 : Good projects must be there



Subsequences of string "abc" are: ""(empty string), a, b, c, ab, bc, ac, abc.
Using dynamic prohramming



We need to count the chracters based on frquency



Rain water trapping


Nodes are numbered from 0 to N - 1.
The graph given is connected.
Print the path[][] in sorted order i.e path[i] is an array containing the path from 0 to n-1, and path[i] is lexicographically smaller than path[i + 1] then path[i] should appear before path[i + 1].
Assume we have two solutions
S1: A1 B1 C1 D1
S2: A2 B2 C2 D2
S1 is lexicographically smaller than S2 iff,
A1 < A2 OR
A1 = A2 AND B1 < B2 OR
A1 = A2 AND B1 = B2 AND C1 < C2 OR
A1 = A2 AND B1 = B2 AND C1 = C2 AND D1 < D2
The following is an example of DAG i.e a directed graph with no cycles in it.

Used Dynamic Programming



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
We have two water jugs, one measures 4 Gallons (4G) while the other measure 9 Gallons (9G). But there is no measuring label mentioned on either of these two jugs i.e. we cannot know the exact amount filled in the jug. Now, assuming there is an infinite amount of water supply, can we measure all 1G, 2G, 3G…….. upto 9G using these unmarked jugs.
Basic HR level questions
Tell me about the basic pillars of OOPs
What has been your greatest failure?
What do you always regret?
How do you respond to change?Standard os concepts were asked but in detail

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?