Tip 1 : Do coding practice (Hackerrank, HackerEarth, leet code)
Tip 2 : Go through all the previous interview experiences
Tip 3 : Do at least 2 good projects
Tip 1 : Have at least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Round 1 contains aptitude, reasoning, verbal, and coding. This round was taken on the Mettle platform. The questions were of medium level. The coding section consists of 6 programs(attempt any 4). To get shortlisted from this coding section you have to solve and get an output for at least 4 questions. Coding was also of medium level.






1) All codes are binary strings.
2) Each code should be able to determine its corresponding character uniquely.
3) The total numbers of bits used to represent the message are minimized.
If there are multiple sets of valid Huffman codes for a message. You can print any of them.
Consider the array ARR = [ 1, 4, 2 ] having 3 elements.
The array containing Huffman Codes for the above array will be [ '10', '0', '11' ]. Other Valid Huffman Codes are [ '01', '1', '00' ], [ '00', '1', '01' ] etc. Codes like [ '1', '0', '01' ], [ '1', '10' , '0' ] are some of the invalid Huffman Codes.



Let S = “abdd” and X = “bd”.
The windows in S which contain all the characters in X are: 'abdd', 'abd', 'bdd', 'bd'.
Out of these, the smallest substring in S which contains all the characters present in X is 'bd'.
All the other substring have a length larger than 'bd'.



It was a virtual interview. This interview lasted for 50 min. The Interview started with a brief introduction from the interviewer, and then he asked me to introduce myself in brief. Then the following questions were asked:
Tell me about your project.
Tell me about your internship and the tech stack you worked on.
Asked me my favorite subjects. I answered OS and DBMS and then he asked me questions related to them.
What is Normalization and forms of normalization?
Keys in DBMS.
He asked me the basics of Stack and queue.
Oops
What is the difference between a list and a set?
Exception Handling



Assume that the Indexing for the linked list always starts from 0.
If the position is greater than or equal to the length of the linked list, you should return the same linked list without any change.
The following images depict how the deletion has been performed.


They asked me to Introduce myself, reallocation, family background, and what Tech stack I was interested in. He even asked me about my internship project and whether I have a PAN card or not. I explained both the project to the interviewer
It was a very friendly Conversation.

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