Tip 1: Don't learn the question, learn the concept.
Tip 2: First, solve the question by yourself, then refer to others' solutions.
Tip 3: The quality of the question matters more than the quantity. (Try to do the most liked and most asked questions.)
Tip 4: Also, have at least one good project, and you must know all the technologies used in that project.
Tip 1: The resume should not be more than one page.
Tip 2: You must be aware of everything that is written in the resume.
Tip 3: Highlight your job-related achievements and experience.
First, the interviewer asked me to introduce myself, and then he started asking questions related to my project and discussed it for around 15 minutes. After that, he started asking DSA questions and asked me 2 DSA questions.



We have a linked list 1->2->3->4->5->6->7 and so on. You are supposed to swap pairs of a linked list like swap (1,2), (3,4), (5,6), and so on.
1. You may not modify the data in the list’s nodes; only nodes themselves may be changed. Because imagine a case where a node contains many fields, so there will be too much unnecessary swap.
2. If a pair of a node does not exist, then leave the node as it is.



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then (2, -3, 1), (-3, 2, 1) etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
The first interviewer asked me to introduce myself, and then he started asking questions related to my project. We discussed it for around 15 minutes, after which he began asking DSA questions. He asked me 2 DSA questions.



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.





The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL
The timing was around 10 AM. I was alone in the room. The interviewer was very humble and generous.
Tell me about yourself.
Tip 1: Do not ask the interviewer what he wants to know about you. You may be asking genuinely, but it just sounds rude.
Tip 2: Don't panic, because in this situation, you can't impress the HR.
Tip 3: Do not repeat what is already on your resume. The interviewer wants to know what they have not seen on the resume. Also, avoid discussing anything personal.
Tip 4: Introduce yourself by including certain adjectives like problem-solving, innovative, tech-savvy, creative, quick learner, etc., that best describe you in your professional life to boost your chances.
Why do you want to join this company rather than big tech MNCs?
Tip 1: Always show them that you are focused only on learning.
Tip 2: Also, make them feel that you will stay longer with their company.
Why are you interested in this position?
HR pros are likely trying to get you to reiterate your strengths and highlight your passion for both the company and the role. Talk about your past experiences and how they apply to this job, and link what you’re saying back to what they have said and to the job description.

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?