Tip 1 : Whenever you code at any platform try to express that code verbally.
Tip 2 : Never leave any topic from any chapter / Subject.
Tip 3 : Practice previous interview questions from LeetCode.
Tip 1 : Try to interest your reader visually.
Tip 2 : A clean, professional format with a little style.
The timing is in the afternoon, the environment is also chill as the interviewer is friendly in nature, Interviewer wants to check the mainly problem-solving skills of the candidate, and yeah it was good.



‘num’ does not have leading zeros except when ‘num’ equals zero.
Input: ‘num’ = ‘141’ , ‘k’ = 1.
Output: ‘11’
Explanation: By removing only 1 digit from ‘num’, 3 numbers can be formed: 14, 11, and 41. Out of which 11 is the smallest number.
You don’t have to print anything. It has already been taken care of. Just implement the given function.
1. In any question whenever we need to find the next greater or smaller number to an element, the stack is the go-to data structure.
2. In this question, we remove a digit on the left or when it is greater than the digit on the right. So, using a stack we find the next smaller number to a digit on its right. If it exits, we pop the digit on the left.
So HR is also friendly in nature. He starts with:
1. Tell me about yourself. (You can start with your family history, then go on to your educational qualifications, and finally your professional advancement.)
2. Are you open to relocating to other parts of India?
3. What do you hope to get out of this internship?
OSI Model layers, asked about what i had done in the field of networking, tools i had used ( wireshark, putty etc ) and their purpose, about different protocols, differences between things, pointers in details etc
Tip 1 : Tell the interviewer if you dont know something
Tip 2 : Ask for clarifications if you dont understand the question

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?