Tip 1: For Salescode, focus on Java especially.
Tip 2: They ask some aptitude questions as well.
Tip 3: Focus on DSA.
Tip 1: Add Java projects.
Tip 2: Do not put false information on your resume.
There were 45 MCQs and 2 coding problems. MCQs were based on Aptitude, OOPS, OS, Java and DSA.



If the dictionary consists of the following words:-
["caa", "aaa", "aab"], and 'K' is 3.
Then, the order of the alphabet is -
['c', 'a', 'b']
If the language consists of four letters, the four letters should be the starting four letters of the English language.
However, their order might differ in the alien language.
Tip 1: focus on graph
Tip 2: learn to handle edge cases
Tip 3: handle inputs



You can’t sell without buying first.
For the given array [ 2, 100, 150, 120],
The maximum profit can be achieved by buying the stock at minute 0 when its price is Rs. 2 and selling it at minute 2 when its price is Rs. 150.
So, the output will be 148.
Tip 1: typical dp questions
Tip 2: learn array and dp
2 easy DSA questions were asked one was based on recursion and the other was based on bit manipulation.
Print the following series using recursion(my answer would fetch the right output but compromised on readablity)
3 5 11 21 35 53 53 35 21 11 5 3
Tip 1: basic recursion knowledge
Tip 2: series analysis


All the elements in an array are repeating exactly twice except for 1 find the non repeating number.
Tip 1: knowledge of bitwise operators
Tip 2: knowledge of basic bit manipulation

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?