Tip 1 : Cover modern C++ concepts will preparing for C++. It will really add value
Tip 2 : Do at least 2 projects applying DS, Algo, and programming languages
Tip 1 : Mention a project involving different skills
Tip 2 : At least two programming languages
Two programming questions, each to be solved using a different language.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
The interview was in morning. I was the first person to interview. The interview asked me some basic CPP questions that I have to solve on paper. It was followed by a lot of situation based questions. In the end they discussed projects and my location preferences







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?