Tip 1 : Practice At least 50 company specific questions
Tip 2 : Do at least 3 projects
Tip 3 : Do not take much gaps in between your coding days\
Tip 2 : Start preparing from the second year
Tip 1 : Have good projects on resume
Tip 2 : Do not overextend resume
There is an aptitude + coding test conducted on Mettl Secure Browser. The Aptitude section consists of English Grammar, Logical Reasoning, Direction related problems, Permutation and Combination, Relationship type problems in general. The Coding Section consists of 2 coding questions. For these coding questions, if you can run all test cases of one program and at least half of the test cases for another program, you will be sure to clear out the coding phase. But it is equally important to score well for the Aptitude section as it too serves its part in your further progress of yours.



1. X and Y should be greater than 0.
2. (X, Y) and (Y, X) are considered different solutions if X is not equal to Y, i.e. (X, Y) and (Y, X) will not be distinct if X=Y.



List = [3, 0, 2, 1]
We have to make ‘0’ adjacent to ‘1’ and ‘2’ to ‘3’. And, to achieve this we can swap ‘0’ with ‘2’.
New list = [3, 2, 0, 1].
Therefore, the answer (minimum number of swaps) is equal to 1.
There will be only distinct numbers present in the given list.
It was a wait of approximately 1.3 months before we received a link from Superset about our interview slot. Make sure to dress professionally while attending them.
Tip 1 : Study Galvin for OS thoroughly.
Tip 1 : Practice SQL queries
Tip 2 : Also go through the theory part

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?