Tip 1 : During preparation speak out loud
Tip 2 : Be Consistent
Tip 3 : Understand you project well and try to figure out what can be asked from it
Tip 1 : Add only those skill which you know
Tip 2 : Add project description in crisp , i think this is what I updated after which I started getting calls
It was from home only. 12+180+75 minutes. I could solve the problems within given time and with all tests passed. I am not able to recall now , but based on OOPS, C# SQL , ADO. net, WPF , Design principle, I forgot the number of MCQs



The input string(STR) will not contain any spaces.
Assume that all characters in STR are lower case letters.
If characters less than 'K' remain, then append them in a sorted way to the new string.
Let the input string be "edcba" with K = 4.
Let the new string to be formed is initially empty, newString = "".
The first set of 4 characters are, ('e', 'd', 'c', 'b')
Out of these 4 characters, the smallest one is 'b' and hence we add it to the newString and it becomes,
newString = "b"
The next set of 4 characters are, ('e', 'd', 'c', 'a')
Out of these 4 characters, the smallest one is 'a' and hence we add it to the newString and it becomes,
newString = "ba"
Now we are left with "edc" and since we can't get a window of size 4, we sort them in the increasing order and append them to the newString.
Hence, newString thus formed will be "bacde".


Given ‘N’ = 4,
'ARR' = { 1, 2, 1, 2}
Then the answer is 2 because 1 and 2 are repeated once therefore we need to remove 2 elements.
OOps, C#, WPF, SQL , Design Principles, etc
Related to DSA , Design Principles, SOLID , OOPs
Tip 1 : Practice Practice and Practice

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?