Tip 1 : Mention 1 project at least in your resume which is done by you . Never mention a project copied from google.
Tip 2 : Prepare for basic of OOPS and Operating System.
Tip 3 : You have to some Knowledge of System design .
Tip 4 : never give wrong answer if you don't know the answer simply say it to interviewr.
Tip 1 : Never add fake information related to project and other stuff.
Tip 2 : Keep resume simple do not add unnecessary info like you ranked 1st in 5th class.



1. Pair (x,y) and Pair(y,x) are considered as the same pair.
2. If there exists no such pair with sum equals to 'TARGET', then return -1.
Let ‘ARR’ = [1 2 3] and ‘TARGET’ = 4. Then, there exists only one pair in ‘ARR’ with a sum of 4 which is (1, 3). (1, 3) and (3, 1) are counted as only one pair.




All the possible root to leaf paths are:
3, 4, -2, 4 with sum 9
5, 3, 4 with sum 12
6, 3, 4 with sum 13
Here, the maximum sum is 13. Thus, the output path will be 6, 3, 4.
There will be only 1 path with max sum.
Write an SQL query to fetch records that are present in one table but not in another table.



Input string “STR” will only consist of lowercase English Alphabets. The string will not contain white space at the beginning and end of the string.



1. Buying a stock and then selling it is called one transaction.
2. You are not allowed to do multiple transactions at the same time. This means you have to sell the stock before buying it again.
Input: ‘n’ = 7, ‘prices’ = [3, 3, 5, 0, 3, 1, 4].
Output: 6
Explanation:
The maximum profit can be earned by:
Transaction 1: Buying the stock on day 4 (price 0) and then selling it on day 5 (price 3).
Transaction 2: Buying the stock on day 6 (price 1) and then selling it on day 6 (price 4).
Total profit earned will be (3 - 0) + ( 4 - 1) = 6.




If S = “34”, then all the possible letters that can be formed from string S are {“dg”, “dh”, “di”, “eg”, “eh”, “ei”, “fg”, “fh”, “fi”}.

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