Tip 1 : Practice coding questions on a platform like hackerrank, leetcode, etc.
Tip 2 : Add some good projects to your resume.
Tip 3 : resume should be concise.
Tip 1 : add only those skills in your resume in which you are strong.
Tip 2 : Have some projects on your resume
What is the size of float and double in java?
Tip 1 : 32 and 64
2 coding problem was there.


If arr = {“go”, “pp”, “no”, “op”}, mat = {{‘g’,’p’},
{‘d’,’o’}}.
Here, the two-letter words that can be formed from the matrix “mat” are “gp”, “gd”, “go”, “pg”, “pd”, “po”, “dg”, “dp”, “do”, “og”, “op”, “od”.
So, the words that are present in the array “arr” which can be formed from the matrix “mat” are “go” and “op”.



• The reference to the head of the linked list is not given.
• The node to be deleted is not a tail node.
• The value of each node in the Linked List is unique.
• It is guaranteed that the node to be deleted is present in the linked list.




If string S is equal to “abadaa”.
Then S can be split in the following ways:
X = “a” and Y = “badaa”, string X has 1 unique character and Y has 3 unique characters.
X = “ab” and Y = “adaa”, string X has 2 unique characters and Y has 2 unique characters.[GOOD SPLIT]
X = “aba” and Y = “daa”, string X has 2 unique characters and Y has 2 unique characters.[GOOD SPLIT]
X = “abad” and Y = “aa”, string X has 3 unique characters and Y has 1 unique character.
X = “abada” and Y = “a”, string X has 3 unique characters and Y has 1 unique character.
Therefore we will return value 2 as we are able to find 2 good splits.



1. There may be more than one occurrence of 'P' in 'S'.
2. Some alphabets in the strings may be repeated.






If ‘A’ is 13(1101) and ‘B’ is 7(0111), The number of bits that should be flipped is 2(0111).
Tell me about yourself.
Have you got offer from another organization?
Why do you want to join Walmart?

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?